mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-05 07:19:32 +00:00
196 lines
5.5 KiB
Svelte
196 lines
5.5 KiB
Svelte
<!--
|
|
// Copyright © 2024 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
-->
|
|
<script lang="ts">
|
|
import { Widget, WidgetPreference, WidgetTab } from '@hcengineering/workbench'
|
|
import { Ref } from '@hcengineering/core'
|
|
import {
|
|
Component,
|
|
resizeObserver,
|
|
location as locationStore,
|
|
Location,
|
|
Header,
|
|
Breadcrumbs,
|
|
getCurrentLocation
|
|
} from '@hcengineering/ui'
|
|
import { onDestroy } from 'svelte'
|
|
|
|
import { closeWidgetTab, sidebarStore, SidebarVariant, WidgetState, openWidgetTab, closeWidget } from '../../sidebar'
|
|
import WidgetsBar from './widgets/WidgetsBar.svelte'
|
|
import SidebarTabs from './SidebarTabs.svelte'
|
|
|
|
export let widgets: Widget[] = []
|
|
export let preferences: WidgetPreference[] = []
|
|
|
|
let widgetId: Ref<Widget> | undefined = undefined
|
|
let widget: Widget | undefined = undefined
|
|
let widgetState: WidgetState | undefined = undefined
|
|
|
|
let tabId: string | undefined = undefined
|
|
let tab: WidgetTab | undefined = undefined
|
|
let tabs: WidgetTab[] = []
|
|
|
|
$: widgetId = $sidebarStore.widget
|
|
$: widget = widgetId !== undefined ? widgets.find((it) => it._id === widgetId) : undefined
|
|
$: widgetState = widget !== undefined ? $sidebarStore.widgetsState.get(widget._id) : undefined
|
|
|
|
$: tabId = widgetState?.tab
|
|
$: tabs = getTabs(widget, widgetState)
|
|
$: tab = tabId !== undefined ? tabs.find((it) => it.id === tabId) ?? tabs[0] : tabs[0]
|
|
|
|
$: if ($sidebarStore.widget === undefined) {
|
|
sidebarStore.update((s) => ({ ...s, variant: SidebarVariant.MINI }))
|
|
}
|
|
|
|
function getTabs (widget?: Widget, state?: WidgetState): WidgetTab[] {
|
|
if (widget === undefined || !state?.tabs) return []
|
|
const loc = getCurrentLocation()
|
|
|
|
const result: WidgetTab[] = []
|
|
for (const tab of state.tabs) {
|
|
if (tab.allowedPath !== undefined && !tab.isPinned) {
|
|
const path = loc.path.join('/')
|
|
if (!path.startsWith(tab.allowedPath)) {
|
|
void handleTabClose(tab.id, widget)
|
|
continue
|
|
}
|
|
}
|
|
|
|
result.push(tab)
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
const unsubscribe = locationStore.subscribe((loc: Location) => {
|
|
if (widget === undefined) return
|
|
|
|
for (const tab of tabs) {
|
|
if (tab.allowedPath !== undefined && !tab.isPinned) {
|
|
const path = loc.path.join('/')
|
|
if (!path.startsWith(tab.allowedPath)) {
|
|
void handleTabClose(tab.id, widget)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
onDestroy(() => {
|
|
unsubscribe()
|
|
})
|
|
|
|
async function handleTabClose (tabId: string, widget?: Widget): Promise<void> {
|
|
if (widget === undefined) return
|
|
await closeWidgetTab(widget, tabId)
|
|
}
|
|
|
|
function handleTabOpen (tabId: string, widget?: Widget): void {
|
|
if (widget === undefined) return
|
|
openWidgetTab(widget._id, tabId)
|
|
}
|
|
|
|
let componentHeight = '0px'
|
|
let componentWidth = '0px'
|
|
|
|
function resize (element: Element): void {
|
|
componentHeight = `${element.clientHeight}px`
|
|
componentWidth = `${element.clientWidth}px`
|
|
}
|
|
</script>
|
|
|
|
<div class="root">
|
|
<div class="content">
|
|
{#if widget?.component}
|
|
<div class="component" use:resizeObserver={resize}>
|
|
{#if widget.headerLabel}
|
|
<Header
|
|
allowFullsize={false}
|
|
type="type-aside"
|
|
hideBefore={true}
|
|
hideActions={false}
|
|
hideDescription={true}
|
|
adaptive="disabled"
|
|
closeOnEscape={false}
|
|
on:close={() => {
|
|
if (widget !== undefined) {
|
|
closeWidget(widget._id)
|
|
}
|
|
}}
|
|
>
|
|
<Breadcrumbs items={[{ label: widget.headerLabel }]} currentOnly />
|
|
</Header>
|
|
{/if}
|
|
<Component
|
|
is={widget?.component}
|
|
props={{ tab, widgetState, height: componentHeight, width: componentWidth, widget }}
|
|
on:close={() => {
|
|
if (widget !== undefined) {
|
|
closeWidget(widget._id)
|
|
}
|
|
}}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{#if widget !== undefined && tabs.length > 0}
|
|
<SidebarTabs
|
|
{tabs}
|
|
selected={tab?.id}
|
|
{widget}
|
|
on:close={(e) => {
|
|
void handleTabClose(e.detail, widget)
|
|
}}
|
|
on:open={(e) => {
|
|
handleTabOpen(e.detail, widget)
|
|
}}
|
|
/>
|
|
{/if}
|
|
<WidgetsBar {widgets} {preferences} selected={widgetId} />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.root {
|
|
display: flex;
|
|
flex: 1;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
border-top: 1px solid var(--theme-divider-color);
|
|
overflow: auto;
|
|
|
|
flex: 1;
|
|
width: calc(100% - 3.5rem);
|
|
height: 100%;
|
|
background: var(--theme-panel-color);
|
|
|
|
border-right: 1px solid var(--global-ui-BorderColor);
|
|
border-top-left-radius: var(--small-focus-BorderRadius);
|
|
border-bottom-left-radius: var(--small-focus-BorderRadius);
|
|
}
|
|
|
|
.component {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
</style>
|