2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-04-26 05:10:45 +03:00
|
|
|
<template>
|
2022-06-30 15:38:34 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-29 11:13:12 +03:00
|
|
|
<MkSpacer :contentMax="800" :marginMin="16" :marginMax="32">
|
2023-05-07 21:36:48 +03:00
|
|
|
<FormSuspense :p="init" class="_gaps">
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkInput v-model="title">
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.title }}</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkInput>
|
2022-06-30 15:38:34 +03:00
|
|
|
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkTextarea v-model="description" :max="500">
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.description }}</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkTextarea>
|
2022-06-30 15:38:34 +03:00
|
|
|
|
2023-05-07 21:36:48 +03:00
|
|
|
<div class="_gaps_s">
|
2022-06-30 15:38:34 +03:00
|
|
|
<div v-for="file in files" :key="file.id" class="wqugxsfx" :style="{ backgroundImage: file ? `url(${ file.thumbnailUrl })` : null }">
|
|
|
|
<div class="name">{{ file.name }}</div>
|
2022-12-19 12:01:30 +02:00
|
|
|
<button v-tooltip="i18n.ts.remove" class="remove _button" @click="remove(file)"><i class="ti ti-x"></i></button>
|
2022-06-30 15:38:34 +03:00
|
|
|
</div>
|
2023-01-06 02:41:14 +02:00
|
|
|
<MkButton primary @click="selectFile"><i class="ti ti-plus"></i> {{ i18n.ts.attachFile }}</MkButton>
|
2021-04-26 05:10:45 +03:00
|
|
|
</div>
|
|
|
|
|
2023-01-07 07:59:54 +02:00
|
|
|
<MkSwitch v-model="isSensitive">{{ i18n.ts.markAsSensitive }}</MkSwitch>
|
2021-04-26 05:10:45 +03:00
|
|
|
|
2023-05-07 21:36:48 +03:00
|
|
|
<div class="_buttons">
|
|
|
|
<MkButton v-if="postId" primary @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
|
|
|
|
<MkButton v-else primary @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.publish }}</MkButton>
|
2021-04-26 05:10:45 +03:00
|
|
|
|
2023-05-07 21:36:48 +03:00
|
|
|
<MkButton v-if="postId" danger @click="del"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>
|
|
|
|
</div>
|
2022-06-30 15:38:34 +03:00
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-26 05:10:45 +03:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 07:42:09 +02:00
|
|
|
import { computed, watch, ref } from 'vue';
|
2023-01-06 02:41:14 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2023-01-07 07:59:54 +02:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2022-01-04 15:42:04 +02:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2023-09-19 10:37:43 +03:00
|
|
|
import { selectFiles } from '@/scripts/select-file.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { useRouter } from '@/router.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
postId?: string;
|
|
|
|
}>();
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const init = ref(null);
|
|
|
|
const files = ref([]);
|
|
|
|
const description = ref(null);
|
|
|
|
const title = ref(null);
|
|
|
|
const isSensitive = ref(false);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
function selectFile(evt) {
|
|
|
|
selectFiles(evt.currentTarget ?? evt.target, null).then(selected => {
|
2023-12-07 07:42:09 +02:00
|
|
|
files.value = files.value.concat(selected);
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove(file) {
|
2023-12-07 07:42:09 +02:00
|
|
|
files.value = files.value.filter(f => f.id !== file.id);
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async function save() {
|
|
|
|
if (props.postId) {
|
|
|
|
await os.apiWithDialog('gallery/posts/update', {
|
|
|
|
postId: props.postId,
|
2023-12-07 07:42:09 +02:00
|
|
|
title: title.value,
|
|
|
|
description: description.value,
|
|
|
|
fileIds: files.value.map(file => file.id),
|
|
|
|
isSensitive: isSensitive.value,
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
2022-06-30 15:38:34 +03:00
|
|
|
router.push(`/gallery/${props.postId}`);
|
2022-06-20 11:38:49 +03:00
|
|
|
} else {
|
|
|
|
const created = await os.apiWithDialog('gallery/posts/create', {
|
2023-12-07 07:42:09 +02:00
|
|
|
title: title.value,
|
|
|
|
description: description.value,
|
|
|
|
fileIds: files.value.map(file => file.id),
|
|
|
|
isSensitive: isSensitive.value,
|
2022-06-20 11:38:49 +03:00
|
|
|
});
|
|
|
|
router.push(`/gallery/${created.id}`);
|
2021-04-26 05:10:45 +03:00
|
|
|
}
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
async function del() {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
await os.apiWithDialog('gallery/posts/delete', {
|
|
|
|
postId: props.postId,
|
|
|
|
});
|
2022-06-30 15:38:34 +03:00
|
|
|
router.push('/gallery');
|
2022-06-20 11:38:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
watch(() => props.postId, () => {
|
2023-12-07 07:42:09 +02:00
|
|
|
init.value = () => props.postId ? os.api('gallery/posts/show', {
|
2022-06-20 11:38:49 +03:00
|
|
|
postId: props.postId,
|
|
|
|
}).then(post => {
|
2023-12-07 07:42:09 +02:00
|
|
|
files.value = post.files;
|
|
|
|
title.value = post.title;
|
|
|
|
description.value = post.description;
|
|
|
|
isSensitive.value = post.isSensitive;
|
2022-06-20 11:38:49 +03:00
|
|
|
}) : Promise.resolve(null);
|
|
|
|
}, { immediate: true });
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 11:38:49 +03:00
|
|
|
|
|
|
|
definePageMetadata(computed(() => props.postId ? {
|
|
|
|
title: i18n.ts.edit,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-pencil',
|
2022-06-20 11:38:49 +03:00
|
|
|
} : {
|
|
|
|
title: i18n.ts.postToGallery,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-pencil',
|
2022-06-20 11:38:49 +03:00
|
|
|
}));
|
2021-04-26 05:10:45 +03:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-04-26 05:10:45 +03:00
|
|
|
.wqugxsfx {
|
|
|
|
height: 200px;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
left: 9px;
|
|
|
|
padding: 8px;
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .remove {
|
|
|
|
position: absolute;
|
|
|
|
top: 8px;
|
|
|
|
right: 9px;
|
|
|
|
padding: 8px;
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|