2018-09-03 17:23:50 +03:00
|
|
|
<template>
|
2018-11-04 08:16:05 +02:00
|
|
|
<div class="cdeuzmsthagexbkpofbmatmugjuvogfb">
|
2018-11-02 16:05:53 +02:00
|
|
|
<ui-card>
|
2018-11-03 16:57:14 +02:00
|
|
|
<div slot="title">%fa:broadcast-tower% %i18n:@announcements%</div>
|
|
|
|
<section v-for="(announcement, i) in announcements" class="fit-top">
|
|
|
|
<ui-input v-model="announcement.title" @change="save">
|
|
|
|
<span>%i18n:@title%</span>
|
|
|
|
</ui-input>
|
|
|
|
<ui-textarea v-model="announcement.text">
|
|
|
|
<span>%i18n:@text%</span>
|
|
|
|
</ui-textarea>
|
2018-11-04 07:23:28 +02:00
|
|
|
<ui-horizon-group>
|
|
|
|
<ui-button @click="save">%fa:save R% %i18n:@save%</ui-button>
|
|
|
|
<ui-button @click="remove(i)">%fa:trash-alt R% %i18n:@remove%</ui-button>
|
|
|
|
</ui-horizon-group>
|
2018-11-03 16:57:14 +02:00
|
|
|
</section>
|
2018-11-02 16:05:53 +02:00
|
|
|
<section>
|
2018-11-03 16:57:14 +02:00
|
|
|
<ui-button @click="add">%fa:plus% %i18n:@add%</ui-button>
|
2018-11-02 16:05:53 +02:00
|
|
|
</section>
|
|
|
|
</ui-card>
|
2018-09-03 17:23:50 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from "vue";
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
2018-11-03 16:57:14 +02:00
|
|
|
announcements: [],
|
2018-09-03 17:23:50 +03:00
|
|
|
};
|
|
|
|
},
|
2018-11-03 16:57:14 +02:00
|
|
|
|
2018-09-03 17:23:50 +03:00
|
|
|
created() {
|
|
|
|
(this as any).os.getMeta().then(meta => {
|
2018-11-03 16:57:14 +02:00
|
|
|
this.announcements = meta.broadcasts;
|
2018-09-03 17:23:50 +03:00
|
|
|
});
|
|
|
|
},
|
2018-11-03 16:57:14 +02:00
|
|
|
|
2018-09-03 17:23:50 +03:00
|
|
|
methods: {
|
2018-11-03 16:57:14 +02:00
|
|
|
add() {
|
|
|
|
this.announcements.push({
|
|
|
|
title: '',
|
|
|
|
text: ''
|
|
|
|
});
|
|
|
|
},
|
2018-10-02 17:42:46 +03:00
|
|
|
|
2018-11-03 16:57:14 +02:00
|
|
|
remove(i) {
|
|
|
|
this.announcements = this.announcements.filter((_, j) => j !== i);
|
|
|
|
this.save();
|
|
|
|
},
|
2018-10-02 17:42:46 +03:00
|
|
|
|
2018-11-03 16:57:14 +02:00
|
|
|
save() {
|
2018-09-03 17:23:50 +03:00
|
|
|
(this as any).api('admin/update-meta', {
|
2018-11-03 16:57:14 +02:00
|
|
|
broadcasts: this.announcements
|
2018-10-02 17:42:46 +03:00
|
|
|
}).then(() => {
|
2018-11-05 03:32:45 +02:00
|
|
|
this.$swal({
|
|
|
|
type: 'success',
|
|
|
|
text: '%i18n:@saved%'
|
|
|
|
});
|
2018-11-03 16:57:14 +02:00
|
|
|
}).catch(e => {
|
2018-11-05 03:32:45 +02:00
|
|
|
this.$swal({
|
|
|
|
type: 'error',
|
|
|
|
text: e
|
|
|
|
});
|
2018-09-03 17:23:50 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2018-11-04 08:16:05 +02:00
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
|
|
|
.cdeuzmsthagexbkpofbmatmugjuvogfb
|
|
|
|
@media (min-width 500px)
|
|
|
|
padding 16px
|
|
|
|
|
|
|
|
</style>
|