mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-02 14:06:45 +00:00
149 lines
4.5 KiB
Svelte
149 lines
4.5 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 { IntlString } from '@hcengineering/platform'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { deviceOptionsStore, resizeObserver } from '..'
|
|
import plugin from '../plugin'
|
|
import type { DropdownTextItem } from '../types'
|
|
import IconCheck from './icons/Check.svelte'
|
|
import IconSearch from './icons/Search.svelte'
|
|
import ListView from './ListView.svelte'
|
|
import Icon from './Icon.svelte'
|
|
import EditWithIcon from './EditWithIcon.svelte'
|
|
|
|
export let placeholder: IntlString = plugin.string.SearchDots
|
|
export let placeholderParam: any | undefined = undefined
|
|
export let items: DropdownTextItem[]
|
|
export let selected: DropdownTextItem['id'] | Array<DropdownTextItem['id']> | undefined = undefined
|
|
export let multiselect: boolean = false
|
|
export let enableSearch = true
|
|
|
|
let search: string = ''
|
|
const dispatch = createEventDispatcher()
|
|
|
|
let selection = 0
|
|
let list: ListView
|
|
|
|
$: objects = items.filter((x) => x.label.toLowerCase().includes(search.toLowerCase()))
|
|
|
|
async function handleSelection (evt: Event | undefined, selection: number): Promise<void> {
|
|
const item = objects[selection]
|
|
if (item == null) {
|
|
return
|
|
}
|
|
if (multiselect && Array.isArray(selected)) {
|
|
const index = selected.indexOf(item.id)
|
|
if (index !== -1) {
|
|
selected.splice(index, 1)
|
|
selected = selected
|
|
} else {
|
|
selected = selected === undefined ? [item.id] : [...selected, item.id]
|
|
}
|
|
dispatch('update', selected)
|
|
} else {
|
|
dispatch('close', item.id)
|
|
}
|
|
}
|
|
|
|
function onKeydown (key: KeyboardEvent): void {
|
|
if (key.code === 'ArrowUp') {
|
|
key.stopPropagation()
|
|
key.preventDefault()
|
|
list.select(selection - 1)
|
|
}
|
|
if (key.code === 'ArrowDown') {
|
|
key.stopPropagation()
|
|
key.preventDefault()
|
|
list.select(selection + 1)
|
|
}
|
|
if (key.code === 'Enter') {
|
|
key.preventDefault()
|
|
key.stopPropagation()
|
|
handleSelection(key, selection)
|
|
}
|
|
}
|
|
|
|
function isSelected (
|
|
selected: DropdownTextItem['id'] | Array<DropdownTextItem['id']> | undefined,
|
|
item: DropdownTextItem
|
|
): boolean {
|
|
if (Array.isArray(selected)) {
|
|
return selected.includes(item.id)
|
|
} else {
|
|
return item.id === selected
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
<div
|
|
class="selectPopup"
|
|
on:keydown={onKeydown}
|
|
use:resizeObserver={() => {
|
|
dispatch('changeContent')
|
|
}}
|
|
>
|
|
{#if enableSearch}
|
|
<div class="header">
|
|
<EditWithIcon
|
|
icon={IconSearch}
|
|
size={'large'}
|
|
width={'100%'}
|
|
autoFocus={!$deviceOptionsStore.isMobile}
|
|
bind:value={search}
|
|
{placeholder}
|
|
{placeholderParam}
|
|
on:change
|
|
/>
|
|
</div>
|
|
{/if}
|
|
<div class="scroll" class:mt-2={!enableSearch}>
|
|
<div class="box">
|
|
<ListView bind:this={list} count={objects.length} bind:selection>
|
|
<svelte:fragment slot="item" let:item={idx}>
|
|
{@const item = objects[idx]}
|
|
|
|
<button
|
|
class="menu-item withList w-full"
|
|
on:click={() => {
|
|
if (multiselect && Array.isArray(selected)) {
|
|
const index = selected.indexOf(item.id)
|
|
if (index !== -1) {
|
|
selected.splice(index, 1)
|
|
selected = selected
|
|
} else {
|
|
selected = selected === undefined ? [item.id] : [...selected, item.id]
|
|
}
|
|
dispatch('update', selected)
|
|
} else {
|
|
dispatch('close', item.id)
|
|
}
|
|
}}
|
|
>
|
|
<div class="label overflow-label flex-grow">{item.label}</div>
|
|
<div class="check">
|
|
{#if isSelected(selected, item)}
|
|
<Icon icon={IconCheck} size={'small'} />
|
|
{/if}
|
|
</div>
|
|
</button>
|
|
</svelte:fragment>
|
|
</ListView>
|
|
</div>
|
|
</div>
|
|
<div class="menu-space" />
|
|
</div>
|