platform/plugins/workbench-resources/src/components/Navigator.svelte

156 lines
4.9 KiB
Svelte
Raw Normal View History

<!--
// Copyright © 2022 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 core, { Doc, Ref, SortingOrder, Space, getCurrentAccount } from '@anticrm/core'
import { getResource } from '@anticrm/platform'
import { createQuery, getClient } from '@anticrm/presentation'
import { Scroller } from '@anticrm/ui'
import type { NavigatorModel, SpecialNavModel } from '@anticrm/workbench'
import { createEventDispatcher } from 'svelte'
import preferece, { SpacePreference } from '@anticrm/preference'
import { getSpecialSpaceClass } from '../utils'
import preference from '@anticrm/preference'
import SpacesNav from './navigator/SpacesNav.svelte'
import SpecialElement from './navigator/SpecialElement.svelte'
import StarredNav from './navigator/StarredNav.svelte'
import TreeSeparator from './navigator/TreeSeparator.svelte'
export let model: NavigatorModel | undefined
export let currentSpace: Ref<Space> | undefined
export let currentSpecial: string | undefined
const client = getClient()
const hierarchy = client.getHierarchy()
const query = createQuery()
const myAccId = getCurrentAccount()._id
let spaces: Space[] = []
let starred: Space[] = []
let shownSpaces: Space[] = []
$: if (model) {
query.query(
core.class.Space,
{
_class: { $in: getSpecialSpaceClass(model) }
// temp disabled, need way for default spaces
// members: getCurrentAccount()._id
},
(result) => {
spaces = result
},
{ sort: { name: SortingOrder.Ascending } }
)
}
let specials: SpecialNavModel[] = []
let preferences: Map<Ref<Doc>, SpacePreference> = new Map<Ref<Doc>, SpacePreference>()
const preferenceQuery = createQuery()
preferenceQuery.query(preferece.class.SpacePreference, {}, (res) => {
preferences = new Map(
res.map((r) => {
return [r.attachedTo, r]
})
)
})
2022-04-29 05:27:17 +00:00
async function update (model: NavigatorModel, spaces: Space[], preferences: Map<Ref<Doc>, SpacePreference>) {
if (model.specials !== undefined) {
const sp = await updateSpecials(model.specials, spaces)
const topSpecials = sp.get('top') ?? []
const bottomSpecials = sp.get('bottom') ?? []
sp.delete('top')
sp.delete('bottom')
const result = [...topSpecials]
for (const k of Array.from(sp.keys()).sort()) {
result.push(...(sp.get(k) ?? []))
}
result.push(...bottomSpecials)
specials = result
} else {
specials = []
}
2022-04-29 05:27:17 +00:00
shownSpaces = spaces.filter(
(sp) => !sp.archived && !preferences.has(sp._id) && (!sp.members.length || sp.members.includes(myAccId))
)
starred = spaces.filter((sp) => preferences.has(sp._id))
}
$: if (model) update(model, spaces, preferences)
async function updateSpecials (specials: SpecialNavModel[], spaces: Space[]): Promise<Map<string, SpecialNavModel[]>> {
const result = new Map<string, SpecialNavModel[]>()
for (const sp of specials) {
const pos = sp.position ?? 'top'
let visible = true
if (sp.visibleIf !== undefined) {
const f = await getResource(sp.visibleIf)
visible = f(spaces)
}
if (visible) {
const list = result.get(pos) ?? []
list.push(sp)
result.set(pos, list)
}
}
return result
}
const dispatch = createEventDispatcher()
</script>
{#if model}
<Scroller>
{#if model.specials}
{#each specials as special, row}
{#if row > 0 && specials[row].position !== specials[row - 1].position}
<TreeSeparator />
{/if}
<SpecialElement
label={special.label}
icon={special.icon}
on:click={() => dispatch('special', special.id)}
selected={special.id === currentSpecial}
indent={'ml-2'}
/>
{/each}
{/if}
{#if specials.length > 0}<TreeSeparator />{/if}
{#if starred.length}
<StarredNav label={preference.string.Starred} spaces={starred} on:space {currentSpace} />
{/if}
{#each model.spaces as m (m.label)}
<SpacesNav
spaces={shownSpaces.filter((it) => hierarchy.isDerived(it._class, m.spaceClass))}
{currentSpace}
hasSpaceBrowser={model.specials?.find((p) => p.id === 'spaceBrowser') !== undefined}
model={m}
on:space
on:open
{currentSpecial}
/>
{/each}
<div class="antiNav-space" />
</Scroller>
{/if}