platform/packages/presentation/src/components/AttributeEditor.svelte

72 lines
2.4 KiB
Svelte
Raw Normal View History

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 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 from '@anticrm/core'
import type { Class, Doc, Ref } from '@anticrm/core'
import { getResource } from '@anticrm/platform'
import type { AnySvelteComponent } from '@anticrm/ui'
import view from '@anticrm/view'
import { getAttribute, KeyedAttribute, updateAttribute } from '../attributes'
import { getAttributePresenterClass, getClient } from '../utils'
export let _class: Ref<Class<Doc>>
export let key: KeyedAttribute | string
export let object: any
export let maxWidth: string
export let focus: boolean = false
export let editable = true
export let focusIndex = -1
const client = getClient()
const hierarchy = client.getHierarchy()
$: attribute = typeof key === 'string' ? hierarchy.getAttribute(_class, key) : key.attr
$: attributeKey = typeof key === 'string' ? key : key.key
$: presenterClass = attribute !== undefined ? getAttributePresenterClass(hierarchy, attribute) : undefined
let editor: Promise<AnySvelteComponent> | undefined
$: if (presenterClass !== undefined) {
const typeClass = hierarchy.getClass(presenterClass.attrClass)
const editorMixin = hierarchy.as(typeClass, view.mixin.AttributeEditor)
editor = getResource(editorMixin.inlineEditor)
}
function onChange (value: any) {
if (!editable) return
const doc = object as Doc
updateAttribute(client, doc, _class, { key: attributeKey, attr: attribute }, value)
}
</script>
{#if editor}
{#await editor}
...
{:then instance}
2022-04-29 05:27:17 +00:00
<svelte:component
this={instance}
label={attribute?.label}
placeholder={attribute?.label}
type={attribute?.type}
2022-04-29 05:27:17 +00:00
{maxWidth}
value={getAttribute(client, object, { key: attributeKey, attr: attribute })}
{onChange}
{focus}
{focusIndex}
2022-04-29 05:27:17 +00:00
/>
{/await}
{/if}