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

52 lines
875 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-04-27 15:06:28 +03:00
<main>
<mk-notifications @fetched="onFetched"/>
</main>
2018-02-16 08:52:28 +02:00
</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
Progress.start();
},
methods: {
fn() {
2018-05-20 14:26:38 +03:00
const ok = window.confirm('%i18n:@read-all%');
2018-02-16 08:52:28 +02:00
if (!ok) return;
2018-05-26 10:08:57 +03:00
(this as any).api('notifications/mark_as_read_all');
2018-02-16 08:52:28 +02:00
},
onFetched() {
Progress.done();
}
}
});
</script>
2018-04-27 15:06:28 +03:00
<style lang="stylus" scoped>
@import '~const.styl'
main
width 100%
max-width 680px
margin 0 auto
padding 8px
@media (min-width 500px)
padding 16px
@media (min-width 600px)
padding 32px
</style>