2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-25 12:31:34 +00:00
|
|
|
<template>
|
2023-05-27 02:35:26 +00:00
|
|
|
<div>
|
|
|
|
<div :class="$style.label" @click="focus"><slot name="label"></slot></div>
|
|
|
|
<div :class="{ [$style.disabled]: disabled, [$style.focused]: focused, [$style.tall]: tall, [$style.pre]: pre }" style="position: relative;">
|
2022-07-20 13:24:26 +00:00
|
|
|
<textarea
|
|
|
|
ref="inputEl"
|
2021-09-29 15:50:45 +00:00
|
|
|
v-model="v"
|
2021-12-25 16:42:50 +00:00
|
|
|
v-adaptive-border
|
2023-06-01 08:19:46 +00:00
|
|
|
:class="[$style.textarea, { _monospace: code }]"
|
2021-09-29 15:50:45 +00:00
|
|
|
:disabled="disabled"
|
|
|
|
:required="required"
|
|
|
|
:readonly="readonly"
|
|
|
|
:placeholder="placeholder"
|
|
|
|
:pattern="pattern"
|
|
|
|
:autocomplete="autocomplete"
|
|
|
|
:spellcheck="spellcheck"
|
|
|
|
@focus="focused = true"
|
|
|
|
@blur="focused = false"
|
|
|
|
@keydown="onKeydown($event)"
|
|
|
|
@input="onInput"
|
|
|
|
></textarea>
|
2020-11-25 12:31:34 +00:00
|
|
|
</div>
|
2023-05-27 02:35:26 +00:00
|
|
|
<div :class="$style.caption"><slot name="caption"></slot></div>
|
2021-02-13 03:28:26 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkButton v-if="manualSave && changed" primary :class="$style.save" @click="updated"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
|
2021-09-29 15:50:45 +00:00
|
|
|
</div>
|
2020-11-25 12:31:34 +00:00
|
|
|
</template>
|
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, nextTick, ref, watch, computed, toRefs, shallowRef } from 'vue';
|
2021-09-29 15:50:45 +00:00
|
|
|
import { debounce } from 'throttle-debounce';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-05-14 02:43:56 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
modelValue: string | null;
|
|
|
|
required?: boolean;
|
|
|
|
readonly?: boolean;
|
|
|
|
disabled?: boolean;
|
|
|
|
pattern?: string;
|
|
|
|
placeholder?: string;
|
|
|
|
autofocus?: boolean;
|
|
|
|
autocomplete?: string;
|
|
|
|
spellcheck?: boolean;
|
|
|
|
debounce?: boolean;
|
|
|
|
manualSave?: boolean;
|
|
|
|
code?: boolean;
|
|
|
|
tall?: boolean;
|
|
|
|
pre?: boolean;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'change', _ev: KeyboardEvent): void;
|
|
|
|
(ev: 'keydown', _ev: KeyboardEvent): void;
|
|
|
|
(ev: 'enter'): void;
|
|
|
|
(ev: 'update:modelValue', value: string): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const { modelValue, autofocus } = toRefs(props);
|
|
|
|
const v = ref<string>(modelValue.value ?? '');
|
|
|
|
const focused = ref(false);
|
|
|
|
const changed = ref(false);
|
|
|
|
const invalid = ref(false);
|
|
|
|
const filled = computed(() => v.value !== '' && v.value != null);
|
|
|
|
const inputEl = shallowRef<HTMLTextAreaElement>();
|
|
|
|
|
|
|
|
const focus = () => inputEl.value.focus();
|
|
|
|
const onInput = (ev) => {
|
|
|
|
changed.value = true;
|
|
|
|
emit('change', ev);
|
|
|
|
};
|
|
|
|
const onKeydown = (ev: KeyboardEvent) => {
|
|
|
|
if (ev.isComposing || ev.key === 'Process' || ev.keyCode === 229) return;
|
|
|
|
|
|
|
|
emit('keydown', ev);
|
|
|
|
|
|
|
|
if (ev.code === 'Enter') {
|
|
|
|
emit('enter');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const updated = () => {
|
|
|
|
changed.value = false;
|
|
|
|
emit('update:modelValue', v.value ?? '');
|
|
|
|
};
|
|
|
|
|
|
|
|
const debouncedUpdated = debounce(1000, updated);
|
|
|
|
|
|
|
|
watch(modelValue, newValue => {
|
|
|
|
v.value = newValue;
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(v, newValue => {
|
|
|
|
if (!props.manualSave) {
|
|
|
|
if (props.debounce) {
|
|
|
|
debouncedUpdated();
|
|
|
|
} else {
|
|
|
|
updated();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
invalid.value = inputEl.value.validity.badInput;
|
|
|
|
});
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
nextTick(() => {
|
|
|
|
if (autofocus.value) {
|
|
|
|
focus();
|
|
|
|
}
|
|
|
|
});
|
2020-11-25 12:31:34 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.label {
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 0 0 8px 0;
|
|
|
|
user-select: none;
|
2021-09-29 15:50:45 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
2021-09-29 15:50:45 +00:00
|
|
|
}
|
2023-05-27 02:35:26 +00:00
|
|
|
}
|
2021-09-29 15:50:45 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.caption {
|
|
|
|
font-size: 0.85em;
|
|
|
|
padding: 8px 0 0 0;
|
|
|
|
color: var(--fgTransparentWeak);
|
2021-09-29 15:50:45 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
2021-09-29 15:50:45 +00:00
|
|
|
}
|
2023-05-27 02:35:26 +00:00
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.textarea {
|
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
min-height: 130px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 12px;
|
|
|
|
font: inherit;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1em;
|
|
|
|
color: var(--fg);
|
|
|
|
background: var(--panel);
|
|
|
|
border: solid 1px var(--panel);
|
|
|
|
border-radius: 6px;
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
box-sizing: border-box;
|
|
|
|
transition: border-color 0.1s ease-out;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-color: var(--inputBorderHover) !important;
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.focused {
|
|
|
|
> .textarea {
|
|
|
|
border-color: var(--accent) !important;
|
|
|
|
}
|
|
|
|
}
|
2021-09-29 15:50:45 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.disabled {
|
|
|
|
opacity: 0.7;
|
|
|
|
cursor: not-allowed !important;
|
2021-09-29 15:50:45 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
> .textarea {
|
|
|
|
cursor: not-allowed !important;
|
|
|
|
}
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.tall {
|
|
|
|
> .textarea {
|
|
|
|
min-height: 200px;
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2023-05-27 02:35:26 +00:00
|
|
|
}
|
2021-11-28 11:07:37 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
.pre {
|
|
|
|
> .textarea {
|
|
|
|
white-space: pre;
|
2021-11-28 11:07:37 +00:00
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
}
|
2023-05-27 02:35:26 +00:00
|
|
|
|
|
|
|
.save {
|
|
|
|
margin: 8px 0 0 0;
|
|
|
|
}
|
2020-11-25 12:31:34 +00:00
|
|
|
</style>
|