<!--
// 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 } from 'svelte'
  import plugin from '../plugin'
  import type { AnySvelteComponent } from '../types'
  import Icon from './Icon.svelte'
  import IconClose from './icons/Close.svelte'

  export let icon: Asset | AnySvelteComponent
  export let width: string | undefined = undefined
  export let value: string | undefined = undefined
  export let placeholder: IntlString = plugin.string.EditBoxPlaceholder
  export let focus: boolean = false
  export let size: 'small' | 'medium' = 'medium'

  const dispatch = createEventDispatcher()
  let textHTML: HTMLInputElement
  let phTraslate: string = ''

  $: translate(placeholder, {}).then((res) => {
    phTraslate = res
  })
  $: if (textHTML !== undefined) {
    if (focus) {
      textHTML.focus()
      focus = false
    }
  }
</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 icon"><Icon {icon} size={'small'} /></div>
  <input bind:this={textHTML} type="text" bind:value placeholder={phTraslate} on:change on:input on:keydown />
  <slot name="extra" />
  {#if value}
    <div
      class="ml-2 btn"
      on:click={() => {
        value = ''
        dispatch('change', '')
      }}
    >
      <Icon icon={IconClose} size={'x-small'} />
    </div>
  {/if}
</div>

<style lang="scss">
  .editbox {
    padding: 0 0.5rem 0 0.5rem;
    min-width: 10rem;
    color: var(--caption-color);
    background-color: var(--body-color);
    border: 1px solid var(--button-border-color);
    border-radius: 0.25rem;

    &.small {
      height: 1.5rem;
    }
    &.medium {
      height: 2rem;
    }
    &:focus-within {
      border-color: var(--primary-edit-border-color);
      .icon {
        color: var(--menu-icon-hover);
      }
    }

    input {
      width: 100%;
      border: none;
      border-radius: 0.25rem;

      &::placeholder {
        color: var(--content-color);
      }
    }

    .btn {
      color: var(--content-color);
      cursor: pointer;
      &:hover {
        color: var(--caption-color);
      }
    }
    .icon {
      color: var(--content-color);
    }
  }
</style>