mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-30 11:49:42 +02:00
121 lines
3.8 KiB
Svelte
121 lines
3.8 KiB
Svelte
<!--
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
|
//
|
|
// 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 type { Class, Doc, Ref, Space } from '@hcengineering/core'
|
|
import core, { WithLookup } from '@hcengineering/core'
|
|
import { IntlString } from '@hcengineering/platform'
|
|
import presentation, { createQuery } from '@hcengineering/presentation'
|
|
import {
|
|
AnyComponent,
|
|
Button,
|
|
deviceOptionsStore as deviceInfo,
|
|
IconAdd,
|
|
SearchEdit,
|
|
showPopup,
|
|
TabList
|
|
} from '@hcengineering/ui'
|
|
import { Viewlet, ViewOptions } from '@hcengineering/view'
|
|
import { getActiveViewletId, setActiveViewletId, ViewletSettingButton } from '@hcengineering/view-resources'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import Header from './Header.svelte'
|
|
|
|
export let spaceId: Ref<Space> | undefined
|
|
export let createItemDialog: AnyComponent | undefined
|
|
export let createItemLabel: IntlString = presentation.string.Create
|
|
export let search: string
|
|
export let viewlet: WithLookup<Viewlet> | undefined
|
|
export let viewlets: WithLookup<Viewlet>[] = []
|
|
export let _class: Ref<Class<Doc>> | undefined = undefined
|
|
export let viewOptions: ViewOptions
|
|
|
|
const query = createQuery()
|
|
let space: Space | undefined
|
|
const dispatch = createEventDispatcher()
|
|
|
|
const prevSpaceId = spaceId
|
|
|
|
$: query.query(core.class.Space, { _id: spaceId }, (result) => {
|
|
space = result[0]
|
|
})
|
|
|
|
function showCreateDialog (ev: Event) {
|
|
showPopup(createItemDialog as AnyComponent, { space: spaceId }, 'top')
|
|
}
|
|
|
|
$: updateViewlets(viewlets)
|
|
|
|
$: if (prevSpaceId !== spaceId) {
|
|
search = ''
|
|
dispatch('search', '')
|
|
}
|
|
|
|
function updateViewlets (viewlets: WithLookup<Viewlet>[]) {
|
|
const _id = getActiveViewletId()
|
|
const index = viewlets.findIndex((p) => p._id === (viewlet?._id ?? _id))
|
|
viewlet = index === -1 ? viewlets[0] : viewlets[index]
|
|
setActiveViewletId(viewlet._id)
|
|
}
|
|
$: viewslist = viewlets.map((views) => {
|
|
return {
|
|
id: views._id,
|
|
icon: views.$lookup?.descriptor?.icon,
|
|
tooltip: views.$lookup?.descriptor?.label
|
|
}
|
|
})
|
|
|
|
$: twoRows = $deviceInfo.twoRows
|
|
</script>
|
|
|
|
<div class="ac-header withSettings" class:full={!twoRows} class:mini={twoRows}>
|
|
{#if space}
|
|
<div class:ac-header-full={!twoRows} class:flex-stretch={twoRows}>
|
|
<Header {space} {_class} />
|
|
<SearchEdit
|
|
bind:value={search}
|
|
on:change={() => {
|
|
dispatch('search', search)
|
|
}}
|
|
/>
|
|
</div>
|
|
<div class="ac-header-full" class:secondRow={twoRows}>
|
|
{#if createItemDialog}
|
|
<Button
|
|
icon={IconAdd}
|
|
label={createItemLabel}
|
|
kind={'primary'}
|
|
size={'small'}
|
|
on:click={(ev) => showCreateDialog(ev)}
|
|
/>
|
|
{/if}
|
|
{#if viewlets.length > 1}
|
|
<TabList
|
|
items={viewslist}
|
|
multiselect={false}
|
|
selected={viewlet?._id}
|
|
kind={'secondary'}
|
|
size={'small'}
|
|
on:select={(result) => {
|
|
if (result.detail !== undefined) {
|
|
viewlet = viewlets.find((vl) => vl._id === result.detail.id)
|
|
if (viewlet) setActiveViewletId(viewlet._id)
|
|
}
|
|
}}
|
|
/>
|
|
{/if}
|
|
<ViewletSettingButton bind:viewOptions {viewlet} />
|
|
</div>
|
|
{/if}
|
|
</div>
|