egirlskey/packages/frontend/src/components/MkSelect.vue

295 lines
6.0 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-05-09 09:47:06 +00:00
<div>
<div :class="$style.label" @click="focus"><slot name="label"></slot></div>
<div ref="container" :class="[$style.input, { [$style.inline]: inline, [$style.disabled]: disabled, [$style.focused]: focused }]" @mousedown.prevent="show">
<div ref="prefixEl" :class="$style.prefix"><slot name="prefix"></slot></div>
<select
ref="inputEl"
2021-12-25 16:42:50 +00:00
v-model="v"
v-adaptive-border
2023-05-09 09:47:06 +00:00
:class="$style.inputCore"
:disabled="disabled"
2021-09-29 15:50:45 +00:00
:required="required"
:readonly="readonly"
:placeholder="placeholder"
@focus="focused = true"
@blur="focused = false"
2021-09-29 15:50:45 +00:00
@input="onInput"
>
<slot></slot>
</select>
2023-09-30 19:53:52 +00:00
<div ref="suffixEl" :class="$style.suffix"><i class="ph-caret-down ph-bold ph-lg" :class="[$style.chevron, { [$style.chevronOpening]: opening }]"></i></div>
</div>
2023-05-09 09:47:06 +00:00
<div :class="$style.caption"><slot name="caption"></slot></div>
2021-09-29 15:50:45 +00:00
<MkButton v-if="manualSave && changed" primary @click="updated"><i class="ph-floppy-disk ph-bold ph-lg"></i> {{ i18n.ts.save }}</MkButton>
</div>
</template>
<script lang="ts" setup>
import { onMounted, nextTick, ref, watch, computed, toRefs, VNode, useSlots } from 'vue';
import MkButton from '@/components/MkButton.vue';
2023-09-19 07:37:43 +00:00
import * as os from '@/os.js';
import { useInterval } from '@/scripts/use-interval.js';
import { i18n } from '@/i18n.js';
const props = defineProps<{
modelValue: string | null;
required?: boolean;
readonly?: boolean;
disabled?: boolean;
placeholder?: string;
autofocus?: boolean;
inline?: boolean;
manualSave?: boolean;
small?: boolean;
large?: boolean;
}>();
const emit = defineEmits<{
(ev: 'change', _ev: KeyboardEvent): void;
(ev: 'update:modelValue', value: string | null): void;
}>();
const slots = useSlots();
const { modelValue, autofocus } = toRefs(props);
const v = ref(modelValue.value);
const focused = ref(false);
2023-01-06 01:11:47 +00:00
const opening = ref(false);
const changed = ref(false);
const invalid = ref(false);
const filled = computed(() => v.value !== '' && v.value != null);
const inputEl = ref(null);
const prefixEl = ref(null);
const suffixEl = ref(null);
const container = ref(null);
const height =
2023-01-15 05:18:45 +00:00
props.small ? 33 :
props.large ? 39 :
36;
const focus = () => inputEl.value.focus();
const onInput = (ev) => {
changed.value = true;
emit('change', ev);
};
const updated = () => {
changed.value = false;
emit('update:modelValue', v.value);
};
watch(modelValue, newValue => {
v.value = newValue;
});
2021-09-29 15:50:45 +00:00
watch(v, newValue => {
if (!props.manualSave) {
updated();
}
2021-09-29 15:50:45 +00:00
invalid.value = inputEl.value.validity.badInput;
});
2021-09-29 15:50:45 +00:00
// このコンポーネントが作成された時、非表示状態である場合がある
// 非表示状態だと要素の幅などは0になってしまうので、定期的に計算する
useInterval(() => {
if (prefixEl.value) {
if (prefixEl.value.offsetWidth) {
inputEl.value.style.paddingLeft = prefixEl.value.offsetWidth + 'px';
}
}
if (suffixEl.value) {
if (suffixEl.value.offsetWidth) {
inputEl.value.style.paddingRight = suffixEl.value.offsetWidth + 'px';
}
}
}, 100, {
immediate: true,
afterMounted: true,
});
onMounted(() => {
nextTick(() => {
if (autofocus.value) {
focus();
}
});
});
2023-01-08 01:24:30 +00:00
function show(ev: MouseEvent) {
focused.value = true;
2023-01-06 01:11:47 +00:00
opening.value = true;
2021-09-29 15:50:45 +00:00
const menu = [];
let options = slots.default!();
2021-10-21 21:23:23 +00:00
const pushOption = (option: VNode) => {
menu.push({
text: option.children,
active: computed(() => v.value === option.props.value),
action: () => {
v.value = option.props.value;
},
});
};
2021-10-21 21:23:23 +00:00
const scanOptions = (options: VNode[]) => {
for (const vnode of options) {
if (vnode.type === 'optgroup') {
const optgroup = vnode;
menu.push({
type: 'label',
text: optgroup.props.label,
});
scanOptions(optgroup.children);
} else if (Array.isArray(vnode.children)) { // 何故かフラグメントになってくることがある
const fragment = vnode;
scanOptions(fragment.children);
} else if (vnode.props == null) { // v-if で条件が false のときにこうなる
// nop?
} else {
const option = vnode;
pushOption(option);
}
}
};
scanOptions(options);
os.popupMenu(menu, container.value, {
width: container.value.offsetWidth,
2023-01-06 01:11:47 +00:00
onClosing: () => {
opening.value = false;
},
}).then(() => {
focused.value = false;
});
2023-01-08 01:24:30 +00:00
}
</script>
2023-05-09 09:47:06 +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-09 09:47:06 +00:00
&:empty {
display: none;
2021-09-29 15:50:45 +00:00
}
2023-05-09 09:47:06 +00:00
}
2021-09-29 15:50:45 +00:00
2023-05-09 09:47:06 +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-09 09:47:06 +00:00
&:empty {
display: none;
}
2023-05-09 09:47:06 +00:00
}
2023-05-09 09:47:06 +00:00
.input {
position: relative;
cursor: pointer;
2023-05-09 09:47:06 +00:00
&.inline {
display: inline-block;
margin: 0;
}
2021-10-21 21:23:23 +00:00
2023-05-09 09:47:06 +00:00
&.focused {
> .inputCore {
border-color: var(--accent) !important;
//box-shadow: 0 0 0 4px var(--focus);
}
2023-05-09 09:47:06 +00:00
}
2023-05-09 09:47:06 +00:00
&.disabled {
opacity: 0.7;
2023-05-09 09:47:06 +00:00
&,
> .inputCore {
cursor: not-allowed !important;
}
2023-05-09 09:47:06 +00:00
}
2023-05-09 09:47:06 +00:00
&:hover {
> .inputCore {
border-color: var(--inputBorderHover) !important;
2021-09-29 15:50:45 +00:00
}
2023-05-09 09:47:06 +00:00
}
}
2021-09-29 15:50:45 +00:00
2023-05-09 09:47:06 +00:00
.inputCore {
appearance: none;
-webkit-appearance: none;
display: block;
height: v-bind("height + 'px'");
width: 100%;
margin: 0;
padding: 0 12px;
font: inherit;
font-weight: normal;
font-size: 1em;
color: var(--fg);
background: var(--panel);
border: solid 1px var(--panel);
border-radius: var(--radius-sm);
2023-05-09 09:47:06 +00:00
outline: none;
box-shadow: none;
box-sizing: border-box;
transition: border-color 0.1s ease-out;
cursor: pointer;
pointer-events: none;
user-select: none;
}
2021-09-29 15:50:45 +00:00
2023-05-09 09:47:06 +00:00
.prefix,
.suffix {
display: flex;
align-items: center;
position: absolute;
z-index: 1;
top: 0;
padding: 0 12px;
font-size: 1em;
height: v-bind("height + 'px'");
min-width: 16px;
max-width: 150px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
box-sizing: border-box;
pointer-events: none;
&:empty {
display: none;
}
}
2021-09-29 15:50:45 +00:00
2023-05-09 09:47:06 +00:00
.prefix {
left: 0;
padding-right: 6px;
}
2021-09-29 15:50:45 +00:00
2023-05-09 09:47:06 +00:00
.suffix {
right: 0;
padding-left: 6px;
}
2023-01-06 01:11:47 +00:00
.chevron {
2023-01-08 01:24:30 +00:00
transition: transform 0.1s ease-out;
2023-01-06 01:11:47 +00:00
}
.chevronOpening {
transform: rotateX(180deg);
}
</style>