11349561d6
* wip * wip * wip * wip * wip * wip * wip * wip * wip * Update yarn.lock * wip * wip
45 lines
846 B
Vue
45 lines
846 B
Vue
<template>
|
|
<div class="_root">
|
|
<XNotifications class="_content" @before="before" @after="after" page/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import Progress from '@client/scripts/loading';
|
|
import XNotifications from '@client/components/notifications.vue';
|
|
import * as os from '@client/os';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XNotifications
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.notifications,
|
|
icon: 'fas fa-bell',
|
|
actions: [{
|
|
text: this.$ts.markAllAsRead,
|
|
icon: 'fas fa-check',
|
|
handler: () => {
|
|
os.apiWithDialog('notifications/mark-all-as-read');
|
|
}
|
|
}]
|
|
},
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
before() {
|
|
Progress.start();
|
|
},
|
|
|
|
after() {
|
|
Progress.done();
|
|
}
|
|
}
|
|
});
|
|
</script>
|