mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-02 22:13:38 +00:00
64 lines
1.8 KiB
Svelte
64 lines
1.8 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, { EnumOf } from '@hcengineering/core'
|
|
import { getEmbeddedLabel } from '@hcengineering/platform'
|
|
import { createQuery } from '@hcengineering/presentation'
|
|
import { DropdownLabels, DropdownTextItem, tooltip } from '@hcengineering/ui'
|
|
import StringPresenter from './StringPresenter.svelte'
|
|
|
|
export let value: string
|
|
export let type: EnumOf | undefined = undefined
|
|
export let onChange: ((value: string) => void) | undefined = undefined
|
|
|
|
let items: DropdownTextItem[] = []
|
|
|
|
const query = createQuery()
|
|
|
|
$: type &&
|
|
query.query(
|
|
core.class.Enum,
|
|
{
|
|
_id: type.of
|
|
},
|
|
(res) => {
|
|
items = res[0]?.enumValues?.map((p) => {
|
|
return { id: p, label: p }
|
|
})
|
|
},
|
|
{ limit: 1 }
|
|
)
|
|
</script>
|
|
|
|
{#if onChange !== undefined && type !== undefined}
|
|
<span use:tooltip={value ? { label: getEmbeddedLabel(value) } : undefined}>
|
|
<DropdownLabels
|
|
bind:selected={value}
|
|
{items}
|
|
useFlexGrow={true}
|
|
justify={'left'}
|
|
size={'large'}
|
|
kind={'link'}
|
|
width={'100%'}
|
|
autoSelect={false}
|
|
on:selected={(e) => {
|
|
onChange?.(e.detail)
|
|
}}
|
|
/>
|
|
</span>
|
|
{:else}
|
|
<StringPresenter {value} />
|
|
{/if}
|