mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-11 10:47:24 +00:00
106 lines
3.6 KiB
Svelte
106 lines
3.6 KiB
Svelte
<!--
|
|
// Copyright © 2024 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 { createEventDispatcher } from 'svelte'
|
|
import type { DropdownIntlItem } from '../types'
|
|
import IconCheck from './icons/Check.svelte'
|
|
import Label from './Label.svelte'
|
|
import Scroller from './Scroller.svelte'
|
|
import Icon from './Icon.svelte'
|
|
import { resizeObserver } from '..'
|
|
import { capitalizeFirstLetter, formatKey } from '../utils'
|
|
|
|
export let items: DropdownIntlItem[]
|
|
export let selected: DropdownIntlItem['id'] | undefined = undefined
|
|
export let params: Record<string, any> = {}
|
|
|
|
const dispatch = createEventDispatcher()
|
|
const btns: HTMLButtonElement[] = []
|
|
|
|
const keyDown = (ev: KeyboardEvent, n: number): void => {
|
|
if (ev.key === 'ArrowDown') {
|
|
if (n === btns.length - 1) btns[0].focus()
|
|
else btns[n + 1].focus()
|
|
} else if (ev.key === 'ArrowUp') {
|
|
if (n === 0) btns[btns.length - 1].focus()
|
|
else btns[n - 1].focus()
|
|
}
|
|
}
|
|
$: withIcons = items.some((it) => it.icon !== undefined)
|
|
</script>
|
|
|
|
<div class="hulyPopup-container" use:resizeObserver={() => dispatch('changeContent')}>
|
|
<Scroller padding={'var(--spacing-0_5)'} gap={'flex-gap-0-5'}>
|
|
{#each items as item, i}
|
|
<!-- svelte-ignore a11y-mouse-events-have-key-events -->
|
|
<button
|
|
class="hulyPopup-row"
|
|
class:withKeys={item.keys}
|
|
on:mouseover={(ev) => {
|
|
ev.currentTarget.focus()
|
|
}}
|
|
on:keydown={(ev) => {
|
|
keyDown(ev, i)
|
|
}}
|
|
on:click={() => {
|
|
dispatch('close', item.id)
|
|
}}
|
|
>
|
|
{#if withIcons}
|
|
<div class="hulyPopup-row__icon">
|
|
{#if item.icon}<Icon icon={item.icon} size={'small'} />{/if}
|
|
</div>
|
|
{/if}
|
|
{#if item.description}
|
|
<div class="hulyPopup-row__labels-wrapper">
|
|
<div class="hulyPopup-row__label overflow-label">
|
|
<Label label={item.label} params={item.params ?? params} />
|
|
</div>
|
|
<div class="hulyPopup-row__label small dark">
|
|
<Label label={item.description} params={item.paramsDescription ?? params} />
|
|
</div>
|
|
</div>
|
|
{:else}
|
|
<div class="hulyPopup-row__label"><Label label={item.label} params={item.params ?? params} /></div>
|
|
{/if}
|
|
{#if item.keys}
|
|
<div class="hulyPopup-row__keys">
|
|
{#each item.keys as key, j}
|
|
{#if j !== 0}
|
|
<div class="mr-1 ml-1">/</div>
|
|
{/if}
|
|
{#each formatKey(key) as k, jj}
|
|
<div class="key">
|
|
{#each k as kk, j}
|
|
{#if j !== 0}
|
|
+
|
|
{/if}
|
|
{capitalizeFirstLetter(kk.trim())}
|
|
{/each}
|
|
</div>
|
|
{/each}
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
{#if item.id === selected}
|
|
<div class="hulyPopup-row__icon">
|
|
<IconCheck size={'small'} />
|
|
</div>
|
|
{/if}
|
|
</button>
|
|
{/each}
|
|
</Scroller>
|
|
</div>
|