1
0
mirror of https://github.com/MisskeyIO/misskey synced 2025-01-05 09:23:30 +09:00
MisskeyIO/src/client/app/mobile/views/pages/notifications.vue

42 lines
903 B
Vue
Raw Normal View History

2018-02-16 15:52:28 +09:00
<template>
2018-02-24 02:46:09 +09:00
<mk-ui>
2019-02-18 11:13:56 +09:00
<template #header><span style="margin-right:4px;"><fa :icon="['far', 'bell']"/></span>{{ $t('notifications') }}</template>
<template #func><button @click="fn"><fa icon="check"/></button></template>
2018-04-27 21:06:28 +09:00
<main>
<mk-notifications @fetched="onFetched"/>
</main>
2018-02-16 15:52:28 +09:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-16 15:52:28 +09:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('mobile/views/pages/notifications.vue'),
2018-02-16 15:52:28 +09:00
mounted() {
document.title = this.$t('notifications');
2018-02-16 15:52:28 +09:00
Progress.start();
},
methods: {
fn() {
2018-12-02 15:28:52 +09:00
this.$root.dialog({
2018-11-14 20:36:15 +09:00
type: 'warning',
text: this.$t('read-all'),
showCancelButton: true
2018-12-02 20:10:53 +09:00
}).then(({ canceled }) => {
if (canceled) return;
2018-11-14 20:36:15 +09:00
this.$root.api('notifications/mark_all_as_read');
});
2018-02-16 15:52:28 +09:00
},
onFetched() {
Progress.done();
}
}
});
</script>