mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 04:03:08 +02:00
167 lines
4.2 KiB
Vue
167 lines
4.2 KiB
Vue
<template>
|
|
<FormBase>
|
|
<FormSuspense :p="init">
|
|
<FormInput v-model="title">
|
|
<span>{{ $ts.title }}</span>
|
|
</FormInput>
|
|
|
|
<FormTextarea v-model="description" :max="500">
|
|
<span>{{ $ts.description }}</span>
|
|
</FormTextarea>
|
|
|
|
<FormGroup>
|
|
<div v-for="file in files" :key="file.id" class="_debobigegoItem _debobigegoPanel wqugxsfx" :style="{ backgroundImage: file ? `url(${ file.thumbnailUrl })` : null }">
|
|
<div class="name">{{ file.name }}</div>
|
|
<button v-tooltip="$ts.remove" class="remove _button" @click="remove(file)"><i class="fas fa-times"></i></button>
|
|
</div>
|
|
<FormButton primary @click="selectFile"><i class="fas fa-plus"></i> {{ $ts.attachFile }}</FormButton>
|
|
</FormGroup>
|
|
|
|
<FormSwitch v-model="isSensitive">{{ $ts.markAsSensitive }}</FormSwitch>
|
|
|
|
<FormButton v-if="postId" primary @click="save"><i class="fas fa-save"></i> {{ $ts.save }}</FormButton>
|
|
<FormButton v-else primary @click="save"><i class="fas fa-save"></i> {{ $ts.publish }}</FormButton>
|
|
|
|
<FormButton v-if="postId" danger @click="del"><i class="fas fa-trash-alt"></i> {{ $ts.delete }}</FormButton>
|
|
</FormSuspense>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from 'vue';
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
import FormInput from '@/components/debobigego/input.vue';
|
|
import FormTextarea from '@/components/debobigego/textarea.vue';
|
|
import FormSwitch from '@/components/debobigego/switch.vue';
|
|
import FormTuple from '@/components/debobigego/tuple.vue';
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
import FormSuspense from '@/components/debobigego/suspense.vue';
|
|
import { selectFile } from '@/scripts/select-file';
|
|
import * as os from '@/os';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormButton,
|
|
FormInput,
|
|
FormTextarea,
|
|
FormSwitch,
|
|
FormBase,
|
|
FormGroup,
|
|
FormSuspense,
|
|
},
|
|
|
|
props: {
|
|
postId: {
|
|
type: String,
|
|
required: false,
|
|
default: null,
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: computed(() => this.postId ? {
|
|
title: this.$ts.edit,
|
|
icon: 'fas fa-pencil-alt'
|
|
} : {
|
|
title: this.$ts.postToGallery,
|
|
icon: 'fas fa-pencil-alt'
|
|
}),
|
|
init: null,
|
|
files: [],
|
|
description: null,
|
|
title: null,
|
|
isSensitive: false,
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
postId: {
|
|
handler() {
|
|
this.init = () => this.postId ? os.api('gallery/posts/show', {
|
|
postId: this.postId
|
|
}).then(post => {
|
|
this.files = post.files;
|
|
this.title = post.title;
|
|
this.description = post.description;
|
|
this.isSensitive = post.isSensitive;
|
|
}) : Promise.resolve(null);
|
|
},
|
|
immediate: true,
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
selectFile(e) {
|
|
selectFile(e.currentTarget || e.target, null, true).then(files => {
|
|
this.files = this.files.concat(files);
|
|
});
|
|
},
|
|
|
|
remove(file) {
|
|
this.files = this.files.filter(f => f.id !== file.id);
|
|
},
|
|
|
|
async save() {
|
|
if (this.postId) {
|
|
await os.apiWithDialog('gallery/posts/update', {
|
|
postId: this.postId,
|
|
title: this.title,
|
|
description: this.description,
|
|
fileIds: this.files.map(file => file.id),
|
|
isSensitive: this.isSensitive,
|
|
});
|
|
this.$router.push(`/gallery/${this.postId}`);
|
|
} else {
|
|
const post = await os.apiWithDialog('gallery/posts/create', {
|
|
title: this.title,
|
|
description: this.description,
|
|
fileIds: this.files.map(file => file.id),
|
|
isSensitive: this.isSensitive,
|
|
});
|
|
this.$router.push(`/gallery/${post.id}`);
|
|
}
|
|
},
|
|
|
|
async del() {
|
|
const { canceled } = await os.confirm({
|
|
type: 'warning',
|
|
text: this.$ts.deleteConfirm,
|
|
});
|
|
if (canceled) return;
|
|
await os.apiWithDialog('gallery/posts/delete', {
|
|
postId: this.postId,
|
|
});
|
|
this.$router.push(`/gallery`);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.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>
|