51 lines
1.2 KiB
Vue
51 lines
1.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkButton rounded full small @click="toggle"><b>{{ modelValue ? i18n.ts._cw.hide : i18n.ts._cw.show }}</b><span v-if="!modelValue" :class="$style.label">{{ label }}</span></MkButton>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import { concat } from '@/scripts/array.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
const props = defineProps<{
|
|
modelValue: boolean;
|
|
note: Misskey.entities.Note;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'update:modelValue', v: boolean): void;
|
|
}>();
|
|
|
|
const label = computed(() => {
|
|
return concat([
|
|
props.note.text ? [i18n.t('_cw.chars', { count: props.note.text.length })] : [],
|
|
props.note.files && props.note.files.length !== 0 ? [i18n.t('_cw.files', { count: props.note.files.length })] : [],
|
|
props.note.poll != null ? [i18n.ts.poll] : [],
|
|
] as string[][]).join(' / ');
|
|
});
|
|
|
|
function toggle() {
|
|
emit('update:modelValue', !props.modelValue);
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.label {
|
|
margin-left: 4px;
|
|
|
|
&:before {
|
|
content: '(';
|
|
}
|
|
|
|
&:after {
|
|
content: ')';
|
|
}
|
|
}
|
|
</style>
|