rudeshark.net/src/client/app/mobile/views/pages/notifications.vue

52 lines
875 B
Vue
Raw Normal View History

2018-02-16 07:52:28 +01:00
<template>
2018-02-23 18:46:09 +01:00
<mk-ui>
2018-04-14 18:04:40 +02:00
<span slot="header">%fa:R bell%%i18n:@notifications%</span>
2018-02-23 18:46:09 +01:00
<template slot="func"><button @click="fn">%fa:check%</button></template>
2018-04-27 14:06:28 +02:00
<main>
<mk-notifications @fetched="onFetched"/>
</main>
2018-02-16 07:52:28 +01: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 18:04:40 +02:00
document.title = 'Misskey | %i18n:@notifications%';
2018-02-16 07:52:28 +01:00
Progress.start();
},
methods: {
fn() {
2018-05-20 13:26:38 +02:00
const ok = window.confirm('%i18n:@read-all%');
2018-02-16 07:52:28 +01:00
if (!ok) return;
2018-05-26 09:08:57 +02:00
(this as any).api('notifications/mark_as_read_all');
2018-02-16 07:52:28 +01:00
},
onFetched() {
Progress.done();
}
}
});
</script>
2018-04-27 14:06:28 +02: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>