Sharkey/src/client/app/mobile/views/pages/notifications.vue

33 lines
703 B
Vue
Raw Normal View History

2018-02-16 08:52:28 +02:00
<template>
2018-02-23 19:46:09 +02:00
<mk-ui>
2018-04-14 19:04:40 +03:00
<span slot="header">%fa:R bell%%i18n:@notifications%</span>
2018-02-23 19:46:09 +02:00
<template slot="func"><button @click="fn">%fa:check%</button></template>
2018-02-16 08:52:28 +02:00
<mk-notifications @fetched="onFetched"/>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
mounted() {
2018-04-14 19:04:40 +03:00
document.title = 'Misskey | %i18n:@notifications%';
2018-02-16 08:52:28 +02:00
document.documentElement.style.background = '#313a42';
Progress.start();
},
methods: {
fn() {
2018-04-16 01:07:32 +03:00
const ok = window.confirm('%i18n:!@read-all%');
2018-02-16 08:52:28 +02:00
if (!ok) return;
2018-03-29 08:48:47 +03:00
(this as any).api('notifications/markAsRead_all');
2018-02-16 08:52:28 +02:00
},
onFetched() {
Progress.done();
}
}
});
</script>