Sharkey/src/client/app/desktop/views/pages/note.vue

65 lines
1 KiB
Vue
Raw Normal View History

2018-02-15 22:32:21 +02:00
<template>
<mk-ui>
<main v-if="!fetching">
2018-04-07 20:30:37 +03:00
<mk-note-detail :note="note"/>
2018-05-08 01:08:02 +03:00
<footer>
<router-link v-if="note.next" :to="note.next"><fa icon="angle-left"/> %i18n:@next%</router-link>
<router-link v-if="note.prev" :to="note.prev">%i18n:@prev% <fa icon="angle-right"/></router-link>
2018-05-08 01:08:02 +03:00
</footer>
2018-02-15 22:32:21 +02:00
</main>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
data() {
return {
fetching: true,
2018-04-07 20:30:37 +03:00
note: null
2018-02-15 22:32:21 +02:00
};
},
2018-02-22 14:23:10 +02:00
watch: {
$route: 'fetch'
},
created() {
this.fetch();
},
methods: {
fetch() {
Progress.start();
this.fetching = true;
2018-02-21 19:41:29 +02:00
2018-04-07 20:30:37 +03:00
(this as any).api('notes/show', {
noteId: this.$route.params.note
}).then(note => {
this.note = note;
2018-02-22 14:23:10 +02:00
this.fetching = false;
2018-02-15 22:32:21 +02:00
2018-02-22 14:23:10 +02:00
Progress.done();
});
}
2018-02-15 22:32:21 +02:00
}
});
</script>
<style lang="stylus" scoped>
main
padding 16px
text-align center
2018-05-08 01:08:02 +03:00
> footer
margin-top 16px
2018-02-15 22:32:21 +02:00
2018-05-08 01:08:02 +03:00
> a
display inline-block
margin 0 16px
2018-02-15 22:32:21 +02:00
2018-04-07 20:30:37 +03:00
> .mk-note-detail
2018-02-15 22:32:21 +02:00
margin 0 auto
width 640px
</style>