Sharkey/src/client/app/mobile/views/pages/user/home.notes.vue

61 lines
1.1 KiB
Vue
Raw Normal View History

2018-02-15 09:33:34 +00:00
<template>
2018-04-07 17:30:37 +00:00
<div class="root notes">
2018-11-13 13:45:28 +00:00
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p>
2018-04-07 17:30:37 +00:00
<div v-if="!fetching && notes.length > 0">
<mk-note-card v-for="note in notes" :key="note.id" :note="note"/>
2018-02-15 09:33:34 +00:00
</div>
<p class="empty" v-if="!fetching && notes.length == 0">{{ $t('no-notes') }}</p>
2018-02-15 09:33:34 +00:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../../i18n';
2018-02-15 09:33:34 +00:00
export default Vue.extend({
i18n: i18n('mobile/views/pages/user/home.notes.vue'),
2018-02-15 09:33:34 +00:00
props: ['user'],
data() {
return {
fetching: true,
2018-04-07 17:30:37 +00:00
notes: []
2018-02-15 09:33:34 +00:00
};
},
mounted() {
2018-11-08 23:13:34 +00:00
this.$root.api('users/notes', {
2018-11-12 16:17:59 +00:00
userId: this.user.id,
untilDate: new Date().getTime() + 1000 * 86400 * 365
2018-04-07 17:30:37 +00:00
}).then(notes => {
this.notes = notes;
2018-02-19 14:37:09 +00:00
this.fetching = false;
2018-02-15 09:33:34 +00:00
});
}
});
</script>
<style lang="stylus" scoped>
2018-04-07 17:30:37 +00:00
.root.notes
2018-02-15 09:33:34 +00:00
> div
overflow-x scroll
-webkit-overflow-scrolling touch
white-space nowrap
padding 8px
> *
vertical-align top
&:not(:last-child)
margin-right 8px
2018-02-22 08:32:58 +00:00
> .fetching
2018-02-15 09:33:34 +00:00
> .empty
margin 0
padding 16px
text-align center
color #aaa
> i
margin-right 4px
</style>