2018-02-16 07:52:28 +01:00
|
|
|
<template>
|
2018-02-23 18:46:09 +01:00
|
|
|
<mk-ui>
|
2018-11-08 19:44:35 +01:00
|
|
|
<span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'bell']"/></span>{{ $t('notifications') }}</span>
|
2018-11-05 17:40:11 +01:00
|
|
|
<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';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-02-16 07:52:28 +01:00
|
|
|
import Progress from '../../../common/scripts/loading';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('mobile/views/pages/notifications.vue'),
|
2018-02-16 07:52:28 +01:00
|
|
|
mounted() {
|
2018-11-08 19:44:35 +01:00
|
|
|
document.title = this.$t('notifications');
|
2018-02-16 07:52:28 +01:00
|
|
|
|
|
|
|
Progress.start();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fn() {
|
2018-11-08 19:44:35 +01:00
|
|
|
const ok = window.confirm(this.$t('read-all'));
|
2018-02-16 07:52:28 +01:00
|
|
|
if (!ok) return;
|
|
|
|
|
2018-07-20 07:16:02 +02:00
|
|
|
(this as any).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>
|