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

57 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-16 06:52:28 +00:00
<template>
2018-02-23 17:46:09 +00: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 12:06:28 +00:00
<main>
<mk-notifications @fetched="onFetched"/>
</main>
2018-02-16 06:52:28 +00:00
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-02-16 06:52:28 +00:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('mobile/views/pages/notifications.vue'),
2018-02-16 06:52:28 +00:00
mounted() {
document.title = this.$t('notifications');
2018-02-16 06:52:28 +00:00
Progress.start();
},
methods: {
fn() {
2018-12-02 06:28:52 +00:00
this.$root.dialog({
2018-11-14 11:36:15 +00:00
type: 'warning',
text: this.$t('read-all'),
showCancelButton: true
2018-12-02 11:10:53 +00:00
}).then(({ canceled }) => {
if (canceled) return;
2018-11-14 11:36:15 +00:00
this.$root.api('notifications/mark_all_as_read');
});
2018-02-16 06:52:28 +00:00
},
onFetched() {
Progress.done();
}
}
});
</script>
2018-04-27 12:06:28 +00: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>