platform/packages/ui/src/components/EditWithIcon.svelte
Alexander Platov d474bbf8a7
Updated Clock widget ()
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-11-08 13:00:24 +07:00

114 lines
3.3 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 '@hcengineering/platform'
import { translate } from '@hcengineering/platform'
import { createEventDispatcher, ComponentType } from 'svelte'
import plugin from '../plugin'
import type { AnySvelteComponent } from '../types'
import Icon from './Icon.svelte'
import Button from './Button.svelte'
import IconClose from './icons/Close.svelte'
import Spinner from './Spinner.svelte'
export let icon: Asset | AnySvelteComponent | ComponentType
export let width: string | undefined = undefined
export let value: string | undefined = undefined
export let placeholder: IntlString = plugin.string.EditBoxPlaceholder
export let placeholderParam: any | undefined = undefined
export let autoFocus: boolean = false
export let size: 'small' | 'medium' | 'large' = 'medium'
export let loading = false
const dispatch = createEventDispatcher()
let textHTML: HTMLInputElement
let phTraslate: string = ''
export function focus () {
textHTML.focus()
autoFocus = false
}
$: translate(placeholder, placeholderParam ?? {}).then((res) => {
phTraslate = res
})
$: if (textHTML !== undefined) {
if (autoFocus) focus()
}
</script>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div class="flex-between editbox {size}" style={width ? 'width: ' + width : ''} on:click={() => textHTML.focus()}>
<div class="mr-2 content-dark-color"><Icon {icon} size={'small'} /></div>
<input bind:this={textHTML} type="text" bind:value placeholder={phTraslate} on:change on:input on:keydown />
<slot name="extra" />
<div class="flex-row-center flex-no-shrink">
{#if value}
<div class="ml-2 flex-no-shrink">
<Button
icon={IconClose}
kind={'ghost'}
size={'small'}
noFocus
on:click={() => {
value = ''
dispatch('change', '')
textHTML.focus()
}}
/>
</div>
{/if}
{#if loading}
<div class="ml-1 mr-2">
<Spinner size={'medium'} />
</div>
{/if}
</div>
</div>
<style lang="scss">
.editbox {
padding: 0 0.25rem 0 0.5rem;
min-width: 8rem;
color: var(--theme-caption-color);
border-radius: 0.25rem;
&.small {
height: 1.5rem;
}
&.medium {
height: 2rem;
}
&.large {
height: 2.25rem;
}
&:focus-within {
background-color: var(--theme-editbox-focus-color);
box-shadow: 0 0 0 1px var(--theme-editbox-focus-border);
}
input {
width: 100%;
caret-color: var(--theme-caret-color);
border: none;
border-radius: 0.25rem;
&::placeholder {
color: var(--theme-dark-color);
}
}
}
</style>