93 lines
2.0 KiB
Vue
93 lines
2.0 KiB
Vue
<template>
|
|
<div class="cdeuzmsthagexbkpofbmatmugjuvogfb">
|
|
<ui-card>
|
|
<div slot="title"><fa icon="broadcast-tower"/> {{ $t('announcements') }}</div>
|
|
<section v-for="(announcement, i) in announcements" class="fit-top">
|
|
<ui-input v-model="announcement.title" @change="save">
|
|
<span>{{ $t('title') }}</span>
|
|
</ui-input>
|
|
<ui-textarea v-model="announcement.text">
|
|
<span>{{ $t('text') }}</span>
|
|
</ui-textarea>
|
|
<ui-horizon-group>
|
|
<ui-button @click="save()"><fa :icon="['far', 'save']"/> {{ $t('save') }}</ui-button>
|
|
<ui-button @click="remove(i)"><fa :icon="['far', 'trash-alt']"/> {{ $t('remove') }}</ui-button>
|
|
</ui-horizon-group>
|
|
</section>
|
|
<section>
|
|
<ui-button @click="add"><fa icon="plus"/> {{ $t('add') }}</ui-button>
|
|
</section>
|
|
</ui-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../i18n';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n('admin/views/announcements.vue'),
|
|
data() {
|
|
return {
|
|
announcements: [],
|
|
};
|
|
},
|
|
|
|
created() {
|
|
this.$root.getMeta().then(meta => {
|
|
this.announcements = meta.broadcasts;
|
|
});
|
|
},
|
|
|
|
methods: {
|
|
add() {
|
|
this.announcements.push({
|
|
title: '',
|
|
text: ''
|
|
});
|
|
},
|
|
|
|
remove(i) {
|
|
this.$root.alert({
|
|
type: 'warning',
|
|
text: this.$t('_remove.are-you-sure').replace('$1', this.announcements.find((_, j) => j == i).title),
|
|
showCancelButton: true
|
|
}).then(res => {
|
|
if (!res) return;
|
|
this.announcements = this.announcements.filter((_, j) => j !== i);
|
|
this.save(true);
|
|
this.$root.alert({
|
|
type: 'success',
|
|
text: this.$t('_remove.removed')
|
|
});
|
|
});
|
|
},
|
|
|
|
save(silent) {
|
|
this.$root.api('admin/update-meta', {
|
|
broadcasts: this.announcements
|
|
}).then(() => {
|
|
if (!silent) {
|
|
this.$root.alert({
|
|
type: 'success',
|
|
text: this.$t('saved')
|
|
});
|
|
}
|
|
}).catch(e => {
|
|
this.$root.alert({
|
|
type: 'error',
|
|
text: e
|
|
});
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.cdeuzmsthagexbkpofbmatmugjuvogfb
|
|
@media (min-width 500px)
|
|
padding 16px
|
|
|
|
</style>
|