48 lines
1,006 B
Vue
48 lines
1,006 B
Vue
|
<script>
|
||
|
import Store from '../../stores/sidebar_store';
|
||
|
import eventHub from '../../event_hub';
|
||
|
import Flash from '../../../flash';
|
||
|
import { __ } from '../../../locale';
|
||
|
import subscriptions from './subscriptions.vue';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
subscriptions,
|
||
|
},
|
||
|
props: {
|
||
|
mediator: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
store: new Store(),
|
||
|
};
|
||
|
},
|
||
|
created() {
|
||
|
eventHub.$on('toggleSubscription', this.onToggleSubscription);
|
||
|
},
|
||
|
beforeDestroy() {
|
||
|
eventHub.$off('toggleSubscription', this.onToggleSubscription);
|
||
|
},
|
||
|
methods: {
|
||
|
onToggleSubscription() {
|
||
|
this.mediator.toggleSubscription()
|
||
|
.catch(() => {
|
||
|
Flash(__('Error occurred when toggling the notification subscription'));
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="block subscriptions">
|
||
|
<subscriptions
|
||
|
:loading="store.isFetching.subscriptions"
|
||
|
:subscribed="store.subscribed"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|