2020-08-18 15:44:21 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<div class="_section">
|
2020-08-18 15:44:21 +02:00
|
|
|
<div class="_content">
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkInput v-model="name">
|
|
|
|
<template #label>{{ $ts.name }}</template>
|
|
|
|
</MkInput>
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2021-08-06 15:29:19 +02:00
|
|
|
<MkTextarea v-model="description">
|
|
|
|
<template #label>{{ $ts.description }}</template>
|
|
|
|
</MkTextarea>
|
2020-08-18 15:44:21 +02:00
|
|
|
|
|
|
|
<div class="banner">
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton v-if="bannerId == null" @click="setBannerImage"><i class="fas fa-plus"></i> {{ $ts._channel.setBanner }}</MkButton>
|
2020-08-18 15:44:21 +02:00
|
|
|
<div v-else-if="bannerUrl">
|
|
|
|
<img :src="bannerUrl" style="width: 100%;"/>
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton @click="removeBannerImage()"><i class="fas fa-trash-alt"></i> {{ $ts._channel.removeBanner }}</MkButton>
|
2020-08-18 15:44:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="_footer">
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton @click="save()" primary><i class="fas fa-save"></i> {{ channelId ? $ts.save : $ts.create }}</MkButton>
|
2020-08-18 15:44:21 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkTextarea from '@/components/form/textarea.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import { selectFile } from '@/scripts/select-file';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2020-08-18 15:44:21 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-08-18 15:44:21 +02:00
|
|
|
components: {
|
|
|
|
MkTextarea, MkButton, MkInput,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
channelId: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: computed(() => this.channelId ? {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts._channel.edit,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-satellite-dish',
|
2020-10-17 13:12:00 +02:00
|
|
|
} : {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts._channel.create,
|
2021-04-20 16:22:59 +02:00
|
|
|
icon: 'fas fa-satellite-dish',
|
2020-10-17 13:12:00 +02:00
|
|
|
}),
|
2020-08-18 15:44:21 +02:00
|
|
|
channel: null,
|
|
|
|
name: null,
|
|
|
|
description: null,
|
|
|
|
bannerUrl: null,
|
|
|
|
bannerId: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
async bannerId() {
|
|
|
|
if (this.bannerId == null) {
|
|
|
|
this.bannerUrl = null;
|
|
|
|
} else {
|
2020-10-17 13:12:00 +02:00
|
|
|
this.bannerUrl = (await os.api('drive/files/show', {
|
2020-08-18 15:44:21 +02:00
|
|
|
fileId: this.bannerId,
|
|
|
|
})).url;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
async created() {
|
|
|
|
if (this.channelId) {
|
2020-10-17 13:12:00 +02:00
|
|
|
this.channel = await os.api('channels/show', {
|
2020-08-18 15:44:21 +02:00
|
|
|
channelId: this.channelId,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.name = this.channel.name;
|
|
|
|
this.description = this.channel.description;
|
|
|
|
this.bannerId = this.channel.bannerId;
|
|
|
|
this.bannerUrl = this.channel.bannerUrl;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
save() {
|
|
|
|
const params = {
|
|
|
|
name: this.name,
|
|
|
|
description: this.description,
|
|
|
|
bannerId: this.bannerId,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (this.channelId) {
|
|
|
|
params.channelId = this.channelId;
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('channels/update', params)
|
2020-08-18 15:44:21 +02:00
|
|
|
.then(channel => {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.success();
|
2020-08-18 15:44:21 +02:00
|
|
|
});
|
|
|
|
} else {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('channels/create', params)
|
2020-08-18 15:44:21 +02:00
|
|
|
.then(channel => {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.success();
|
2020-08-18 15:44:21 +02:00
|
|
|
this.$router.push(`/channels/${channel.id}`);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
setBannerImage(e) {
|
2020-10-17 13:12:00 +02:00
|
|
|
selectFile(e.currentTarget || e.target, null, false).then(file => {
|
2020-08-18 15:44:21 +02:00
|
|
|
this.bannerId = file.id;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
removeBannerImage() {
|
|
|
|
this.bannerId = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|