wip tag input
This commit is contained in:
parent
0b8c8ea31d
commit
418848bae8
@ -17,9 +17,7 @@
|
|||||||
<div class="settings-side__subtitle">What hashtags are fetched</div>
|
<div class="settings-side__subtitle">What hashtags are fetched</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="settings-main">
|
<div class="settings-main">
|
||||||
<Tags
|
<TagInput on:change={e => a = e.detail} value={a}/>
|
||||||
allowPaste={true}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="settings-line">
|
<div class="settings-line">
|
||||||
@ -48,7 +46,10 @@
|
|||||||
<script>
|
<script>
|
||||||
import Portal from 'svelte-portal'
|
import Portal from 'svelte-portal'
|
||||||
import ContextPage from '/components/ContextPage'
|
import ContextPage from '/components/ContextPage'
|
||||||
import Tags from "svelte-tags-input";
|
import TagInput from '/components/TagInput'
|
||||||
|
|
||||||
|
let a = ['I', 'love', 'u']
|
||||||
|
$: console.log(a)
|
||||||
|
|
||||||
let open = false
|
let open = false
|
||||||
|
|
||||||
|
50
src/components/TagInput.svelte
Normal file
50
src/components/TagInput.svelte
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<div class="">
|
||||||
|
{#each tags as tag, index}
|
||||||
|
<span>{tag} <span class="" on:click={() => remove(index)}>×</span></span>
|
||||||
|
{/each}
|
||||||
|
|
||||||
|
<input type="text" on:keydown={onKeyDown} />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { createEventDispatcher } from 'svelte'
|
||||||
|
|
||||||
|
export let value = []
|
||||||
|
|
||||||
|
const dispatch = createEventDispatcher()
|
||||||
|
|
||||||
|
$: tags = value
|
||||||
|
|
||||||
|
const add = tag => {
|
||||||
|
tags = [...tags, tag]
|
||||||
|
dispatch('change', tags)
|
||||||
|
}
|
||||||
|
|
||||||
|
const remove = index => {
|
||||||
|
tags = [...tags.slice(0, index), ...tags.slice(index + 1)]
|
||||||
|
dispatch('change', tags)
|
||||||
|
}
|
||||||
|
|
||||||
|
const onKeyDown = event => {
|
||||||
|
const { keyCode, target: { value } } = event
|
||||||
|
|
||||||
|
switch (keyCode) {
|
||||||
|
case 13:
|
||||||
|
event.preventDefault()
|
||||||
|
|
||||||
|
if (value !== '' && tags.indexOf(value) === -1) {
|
||||||
|
add(value)
|
||||||
|
}
|
||||||
|
|
||||||
|
event.target.value = ''
|
||||||
|
break
|
||||||
|
|
||||||
|
case 8:
|
||||||
|
if (tags.length > 0 && value === '') {
|
||||||
|
remove(tags.length - 1)
|
||||||
|
}
|
||||||
|
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
x
Reference in New Issue
Block a user