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

78 lines
1.3 KiB
Vue
Raw Normal View History

2018-02-15 22:50:30 +02:00
<template>
<mk-ui>
2018-09-19 08:18:34 +03:00
<span slot="header"><span style="margin-right:4px;">%fa:R sticky-note%</span>%i18n:@title%</span>
2018-02-15 22:50:30 +02:00
<main v-if="!fetching">
<div>
2018-04-07 20:30:37 +03:00
<mk-note-detail :note="note"/>
2018-02-15 22:50:30 +02:00
</div>
<footer>
2018-05-08 01:08:02 +03:00
<router-link v-if="note.prev" :to="note.prev">%fa:angle-left% %i18n:@prev%</router-link>
<router-link v-if="note.next" :to="note.next">%i18n:@next% %fa:angle-right%</router-link>
</footer>
2018-02-15 22:50:30 +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:50:30 +02:00
};
},
2018-02-22 14:23:10 +02:00
watch: {
$route: 'fetch'
},
created() {
this.fetch();
},
2018-02-15 22:50:30 +02:00
mounted() {
2018-08-19 15:07:18 +03:00
document.title = (this as any).os.instanceName;
2018-02-22 14:23:10 +02:00
},
methods: {
fetch() {
Progress.start();
this.fetching = true;
2018-02-15 22:50:30 +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:50:30 +02:00
2018-02-22 14:23:10 +02:00
Progress.done();
});
}
2018-02-15 22:50:30 +02:00
}
});
</script>
<style lang="stylus" scoped>
main
text-align center
padding 8px
2018-02-15 22:50:30 +02:00
@media (min-width 500px)
padding 16px
2018-02-15 22:50:30 +02:00
@media (min-width 600px)
padding 32px
2018-02-15 22:50:30 +02:00
> div
margin 0 auto
padding 0
max-width 600px
2018-02-15 22:50:30 +02:00
> footer
margin-top 16px
2018-02-15 22:50:30 +02:00
> a
display inline-block
margin 0 16px
2018-02-15 22:50:30 +02:00
</style>