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

54 lines
999 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>
<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 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 i18n from '../../../i18n';
2018-02-16 07:52:28 +01:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('mobile/views/pages/notifications.vue'),
2018-02-16 07:52:28 +01:00
mounted() {
document.title = this.$t('notifications');
2018-02-16 07:52:28 +01:00
Progress.start();
},
methods: {
fn() {
const ok = window.confirm(this.$t('read-all'));
2018-02-16 07:52:28 +01:00
if (!ok) return;
2018-11-09 00:13:34 +01:00
this.$root.api('notifications/mark_all_as_read');
2018-02-16 07:52:28 +01:00
},
onFetched() {
Progress.done();
}
}
});
</script>
2018-04-27 14:06:28 +02:00
<style lang="stylus" scoped>
2018-09-26 13:19:35 +02:00
2018-04-27 14:06:28 +02:00
main
width 100%
max-width 680px
margin 0 auto
padding 8px
@media (min-width 500px)
padding 16px
@media (min-width 600px)
padding 32px
</style>