rudeshark.net/src/client/app/mobile/views/pages/favorites.vue

95 lines
1.8 KiB
Vue
Raw Normal View History

2018-05-29 07:42:29 +02:00
<template>
<mk-ui>
<span slot="header"><span style="margin-right:4px;"><fa icon="star"/></span>{{ $t('title') }}</span>
2018-05-29 07:42:29 +02:00
<main>
<template v-for="favorite in favorites">
<mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
</template>
2018-11-11 17:20:26 +01:00
<ui-button v-if="existMore" @click="more">{{ $t('@.load-more') }}</ui-button>
2018-05-29 07:42:29 +02:00
</main>
</mk-ui>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
2018-05-29 07:42:29 +02:00
import Progress from '../../../common/scripts/loading';
export default Vue.extend({
i18n: i18n('mobile/views/pages/favorites.vue'),
2018-05-29 07:42:29 +02:00
data() {
return {
fetching: true,
favorites: [],
existMore: false,
moreFetching: false
};
},
created() {
this.fetch();
},
mounted() {
2018-11-09 00:26:32 +01:00
document.title = `${this.$root.instanceName} | %i18n:@notifications%`;
2018-05-29 07:42:29 +02:00
},
methods: {
fetch() {
Progress.start();
this.fetching = true;
2018-11-09 00:13:34 +01:00
this.$root.api('i/favorites', {
2018-05-29 07:42:29 +02: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 00:13:34 +01:00
this.$root.api('i/favorites', {
2018-05-29 07:42:29 +02:00
limit: 11,
2018-07-30 07:46:11 +02:00
untilId: this.favorites[this.favorites.length - 1].id
2018-05-29 07:42:29 +02: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
width 100%
max-width 680px
margin 0 auto
padding 8px
> .post
margin-bottom 8px
@media (min-width 500px)
padding 16px
> .post
margin-bottom 16px
@media (min-width 600px)
padding 32px
</style>