Sharkey/src/client/app/mobile/views/pages/notifications.vue
2018-07-20 14:16:02 +09:00

52 lines
875 B
Vue

<template>
<mk-ui>
<span slot="header">%fa:R bell%%i18n:@notifications%</span>
<template slot="func"><button @click="fn">%fa:check%</button></template>
<main>
<mk-notifications @fetched="onFetched"/>
</main>
</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:@notifications%';
Progress.start();
},
methods: {
fn() {
const ok = window.confirm('%i18n:@read-all%');
if (!ok) return;
(this as any).api('notifications/mark_all_as_read');
},
onFetched() {
Progress.done();
}
}
});
</script>
<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>