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

86 lines
1.6 KiB
Vue
Raw Normal View History

2018-04-20 07:31:43 +03:00
<template>
<mk-ui>
<main v-if="!fetching">
<template v-for="favorite in favorites">
2018-05-29 08:22:15 +03:00
<mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
2018-04-20 07:31:43 +03:00
</template>
2018-11-11 18:20:26 +02:00
<div class="more" v-if="existMore">
<ui-button inline @click="more">{{ $t('@.load-more') }}</ui-button>
</div>
2018-04-20 07:31:43 +03:00
</main>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-04-20 07:31:43 +03:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('.vue'),
2018-04-20 07:31:43 +03:00
data() {
return {
fetching: true,
favorites: [],
existMore: false,
moreFetching: false
};
},
created() {
this.fetch();
},
methods: {
fetch() {
Progress.start();
this.fetching = true;
2018-11-09 01:13:34 +02:00
this.$root.api('i/favorites', {
2018-04-20 07:31:43 +03:00
limit: 11
}).then(favorites => {
if (favorites.length == 11) {
this.existMore = true;
favorites.pop();
}
this.favorites = favorites;
this.fetching = false;
Progress.done();
});
},
more() {
this.moreFetching = true;
2018-11-09 01:13:34 +02:00
this.$root.api('i/favorites', {
2018-04-20 07:31:43 +03:00
limit: 11,
2018-07-30 08:46:11 +03:00
untilId: this.favorites[this.favorites.length - 1].id
2018-04-20 07:31:43 +03:00
}).then(favorites => {
if (favorites.length == 11) {
this.existMore = true;
favorites.pop();
} else {
this.existMore = false;
}
this.favorites = this.favorites.concat(favorites);
this.moreFetching = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
main
margin 0 auto
padding 16px
max-width 700px
2018-05-29 08:22:15 +03:00
> .post
margin-bottom 16px
2018-11-11 18:20:26 +02:00
> .more
margin 32px 16px 16px 16px
text-align center
2018-04-20 07:31:43 +03:00
</style>