mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-02 17:02:29 +00:00
ab9b9bed31
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
66 lines
2.1 KiB
Svelte
66 lines
2.1 KiB
Svelte
<!--
|
|
// 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, { Class, Doc, Ref } from '@anticrm/core'
|
|
import { getClient } from '@anticrm/presentation'
|
|
import { getCurrentLocation, Icon, Label, navigate } from '@anticrm/ui'
|
|
import setting from '../plugin'
|
|
import ClassAttributes from './ClassAttributes.svelte'
|
|
import ClassHierarchy from './ClassHierarchy.svelte'
|
|
|
|
const loc = getCurrentLocation()
|
|
const client = getClient()
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
let _class: Ref<Class<Doc>> | undefined = loc.query?._class as Ref<Class<Doc>> | undefined
|
|
|
|
$: if (_class !== undefined) {
|
|
const loc = getCurrentLocation()
|
|
loc.query = undefined
|
|
navigate(loc)
|
|
}
|
|
|
|
const classes = hierarchy
|
|
.getDescendants(core.class.Doc)
|
|
.map((p) => hierarchy.getClass(p))
|
|
.filter((p) => hierarchy.hasMixin(p, setting.mixin.Editable))
|
|
.map((p) => p._id)
|
|
</script>
|
|
|
|
<div class="antiComponent">
|
|
<div class="ac-header short divide">
|
|
<div class="ac-header__icon"><Icon icon={setting.icon.Clazz} size={'medium'} /></div>
|
|
<div class="ac-header__title"><Label label={setting.string.ClassSetting} /></div>
|
|
</div>
|
|
<div class="ac-body columns hScroll">
|
|
<div class="ac-column">
|
|
<div class="overflow-y-auto">
|
|
<ClassHierarchy
|
|
{classes}
|
|
{_class}
|
|
on:select={(e) => {
|
|
_class = e.detail
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="ac-column max">
|
|
{#if _class !== undefined}
|
|
<ClassAttributes {_class} />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|