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