platform/packages/ui/src/components/DropdownPopup.svelte
2022-05-16 18:41:22 +07:00

142 lines
3.9 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 { Asset, IntlString } from '@anticrm/platform'
import { translate } from '@anticrm/platform'
import { createEventDispatcher, onMount } from 'svelte'
import type { AnySvelteComponent, ListItem } from '../types'
import plugin from '../plugin'
import Icon from './Icon.svelte'
import ListView from './ListView.svelte'
export let icon: Asset | AnySvelteComponent
export let placeholder: IntlString = plugin.string.SearchDots
export let items: ListItem[]
let search: string = ''
let phTraslate: string = ''
$: if (placeholder) {
translate(placeholder, {}).then((res) => {
phTraslate = res
})
}
const dispatch = createEventDispatcher()
let searchInput: HTMLInputElement
onMount(() => {
if (searchInput) searchInput.focus()
})
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.isSelectable ?? true) {
dispatch('close', item)
}
}
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)
}
if (key.code === 'Escape') {
key.preventDefault()
key.stopPropagation()
dispatch('close')
}
}
</script>
<div class="selectPopup" on:keydown={onKeydown}>
<div class="header">
<input
bind:this={searchInput}
type="text"
bind:value={search}
placeholder={phTraslate}
on:input={(ev) => {}}
on:change
/>
</div>
<div class="scroll">
<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="flex-between menu-item w-full"
disabled={item.isSelectable === false}
on:click={(evt) => {
handleSelection(evt, idx)
}}
>
{#if item.image || icon}
<div class="flex-center img" class:image={item.image}>
{#if item.image}
<img src={item.image} alt={item.label} />
{:else if typeof icon === 'string'}
<Icon {icon} size={'small'} />
{:else}
<svelte:component this={icon} size={'small'} />
{/if}
</div>
{/if}
<div class="flex-grow caption-color font-{item.fontWeight} pl-{item.paddingLeft}">{item.label}</div>
</button>
</svelte:fragment>
</ListView>
</div>
</div>
</div>
<style lang="scss">
.img {
margin-right: 0.75rem;
flex-shrink: 0;
width: 1.5rem;
height: 1.5rem;
color: var(--caption-color);
background-color: var(--popup-bg-hover);
border-radius: 50%;
outline: none;
overflow: hidden;
}
.image {
border-color: transparent;
img {
max-width: fit-content;
}
}
</style>