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

58 lines
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">
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:mobile.tags.mk-user-overview-notes.loading%<mk-ellipsis/></p>
<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>
2018-04-07 17:30:37 +00:00
<p class="empty" v-if="!fetching && notes.length == 0">%i18n:mobile.tags.mk-user-overview-notes.no-notes%</p>
2018-02-15 09:33:34 +00:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
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-04-07 17:30:37 +00:00
(this as any).api('users/notes', {
2018-03-29 05:48:47 +00:00
userId: this.user.id
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>