1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 10:38:54 +08:00

add DelimiterSelector component

This commit is contained in:
lana-k
2021-03-21 21:47:59 +01:00
parent 4b67fb268b
commit e60a28ca23
5 changed files with 363 additions and 0 deletions

View File

@@ -0,0 +1,171 @@
<template>
<div>
<div class="text-field-label">Delimiter</div>
<div
class="delimiter-selector-container"
:style="{ width: width }"
@click="onContainerClick"
>
<div class="value">
<input
ref="delimiterInput"
type="text"
:value="value"
@click.stop
@keypress="onKeyPress"
@input.prevent="onInput($event)"
/>
<div class="name">{{ getSymbolName(value) }}</div>
</div>
<div class="controls" @click.stop>
<clear-icon @click.native="$emit('input', '')"/>
<drop-down-chevron @click.native="showOptions = !showOptions"/>
</div>
</div>
<div v-show="showOptions" class="options" :style="{ width: width }">
<div
v-for="(option, index) in options"
:key="index"
@click="chooseOption(option)"
class="option"
>
<span>{{option}}</span><div>{{ getSymbolName(option) }}</div>
</div>
</div>
</div>
</template>
<script>
import ascii from '@/ascii'
import DropDownChevron from '@/components/svg/dropDownChevron'
import ClearIcon from '@/components/svg/clear'
export default {
name: 'DelimiterSelector',
props: ['label', 'value', 'width'],
components: { DropDownChevron, ClearIcon },
data () {
return {
showOptions: false,
options: [',', '\t', '|', ';', '\u001F', '\u001E']
}
},
methods: {
getSymbolName (str) {
if (!str) {
return ''
}
return ascii[str.charCodeAt(0).toString()].name
},
onKeyPress (event) {
if (event.target.value.length >= 1) {
event.preventDefault()
}
},
onInput (event) {
const value = event.target.value
if (value.length > 1) {
event.target.value = value[0]
}
this.$emit('input', event.target.value)
},
chooseOption (option) {
this.$emit('input', option)
this.showOptions = false
},
onContainerClick (event) {
this.$refs.delimiterInput.focus()
}
}
}
</script>
<style scoped>
.delimiter-selector-container {
background: var(--color-white);
border: 1px solid var(--color-border);
color: var(--color-text-light-2);
border-radius: var(--border-radius-medium-2);
height: 36px;
padding: 0 8px;
font-size: 12px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
}
.value {
display: flex;
align-items: center;
}
.value .name {
cursor: default;
}
.controls {
display: flex;
align-items: center;
}
.options {
background: var(--color-white);
border: 1px solid var(--color-border);
border-width: 0 1px 1px 1px;
color: var(--color-text-base);
border-radius: var(--border-radius-medium-2);
font-size: 12px;
box-sizing: border-box;
position: absolute;
z-index: 2;
}
.option {
display: flex;
align-items: center;
white-space: pre;
height: 24px;
padding: 0 6px;
}
.option:hover {
background-color: var(--color-bg-light);
color: var(--color-text-active);
cursor: pointer;
}
.option span {
background-color: var(--color-bg-warning);
line-height: 16px;
letter-spacing: 6px;
margin-right: 6px;
}
input {
background: var(--color-white);
border: none;
color: var(--color-text-base);
height: 34px;
font-size: 12px;
box-sizing: border-box;
width: 20px;
letter-spacing: 6px;
line-height: 37px;
}
input::first-line {
background-color: var(--color-bg-warning);
}
input:focus {
outline: none;
}
.text-field-label {
font-size: 12px;
color: var(--color-text-base);
padding-left: 8px;
margin-bottom: 2px;
}
</style>