1
0
mirror of https://github.com/MisskeyIO/misskey synced 2024-12-29 05:58:15 +09:00
MisskeyIO/src/client/app/mobile/views/pages/notifications.vue

57 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-16 15:52:28 +09:00
<template>
2018-02-24 02:46:09 +09:00
<mk-ui>
<span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'bell']"/></span>{{ $t('notifications') }}</span>
<template slot="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>
2018-04-27 21:06:28 +09:00
<style lang="stylus" scoped>
main
width 100%
max-width 680px
margin 0 auto
padding 8px
@media (min-width 500px)
padding 16px
@media (min-width 600px)
padding 32px
</style>