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

33 lines
781 B
Vue
Raw Normal View History

2018-02-16 08:52:28 +02:00
<template>
2018-02-22 10:57:14 +02:00
<mk-ui :func="fn">
2018-02-16 08:52:28 +02:00
<span slot="header">%fa:R bell%%i18n:mobile.tags.mk-notifications-page.notifications%</span>
2018-02-22 10:57:14 +02:00
<span slot="funcIcon">%fa:check%</span>
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() {
document.title = 'Misskey | %i18n:mobile.tags.mk-notifications-page.notifications%';
document.documentElement.style.background = '#313a42';
Progress.start();
},
methods: {
fn() {
const ok = window.confirm('%i18n:mobile.tags.mk-notifications-page.read-all%');
if (!ok) return;
2018-02-18 05:35:18 +02:00
(this as any).api('notifications/mark_as_read_all');
2018-02-16 08:52:28 +02:00
},
onFetched() {
Progress.done();
}
}
});
</script>