2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-10-10 09:08:54 +00:00
|
|
|
<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>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 04:26:12 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { concat } from '@/scripts/array.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2023-10-10 09:08:54 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-01-07 04:26:12 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
modelValue: boolean;
|
2023-11-30 04:49:31 +00:00
|
|
|
text: string | null;
|
|
|
|
files: Misskey.entities.DriveFile[];
|
|
|
|
poll?: {
|
|
|
|
expiresAt: string | null;
|
|
|
|
multiple: boolean;
|
|
|
|
choices: {
|
|
|
|
isVoted: boolean;
|
|
|
|
text: string;
|
|
|
|
votes: number;
|
|
|
|
}[];
|
|
|
|
} | {
|
|
|
|
choices: string[];
|
|
|
|
multiple: boolean;
|
|
|
|
expiresAt: string | null;
|
|
|
|
expiredAfter: string | null;
|
|
|
|
};
|
2022-01-07 04:26:12 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2022-05-26 13:53:09 +00:00
|
|
|
(ev: 'update:modelValue', v: boolean): void;
|
2022-01-07 04:26:12 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const label = computed(() => {
|
|
|
|
return concat([
|
2023-11-30 04:49:31 +00:00
|
|
|
props.text ? [i18n.t('_cw.chars', { count: props.text.length })] : [],
|
|
|
|
props.files.length !== 0 ? [i18n.t('_cw.files', { count: props.files.length })] : [],
|
|
|
|
props.poll != null ? [i18n.ts.poll] : [],
|
2022-01-07 04:26:12 +00:00
|
|
|
] as string[][]).join(' / ');
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-07 04:26:12 +00:00
|
|
|
|
2023-10-10 09:08:54 +00:00
|
|
|
function toggle() {
|
2022-01-07 04:26:12 +00:00
|
|
|
emit('update:modelValue', !props.modelValue);
|
2023-10-10 09:08:54 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-01-14 02:46:22 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.label {
|
|
|
|
margin-left: 4px;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:46:22 +00:00
|
|
|
&:before {
|
|
|
|
content: '(';
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:46:22 +00:00
|
|
|
&:after {
|
|
|
|
content: ')';
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|