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

80 lines
1.4 KiB
Vue
Raw Normal View History

2018-02-15 22:50:30 +02:00
<template>
<mk-ui>
<span slot="header"><span style="margin-right:4px;"><fa :icon="['far', 'sticky-note']"/></span>{{ $t('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>
<router-link v-if="note.prev" :to="note.prev"><fa icon="angle-left"/> {{ $t('prev') }}</router-link>
<router-link v-if="note.next" :to="note.next">{{ $t('next') }} <fa icon="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 i18n from '../../../i18n';
2018-02-15 22:50:30 +02:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('mobile/views/pages/note.vue'),
2018-02-15 22:50:30 +02:00
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-11-09 01:13:34 +02:00
document.title = this.$root.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-11-09 01:13:34 +02:00
this.$root.api('notes/show', {
2018-04-07 20:30:37 +03:00
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>