ea1818284b
* デスクトップとモバイルで統一 * いくつかの設定を廃止
87 lines
1.7 KiB
Vue
87 lines
1.7 KiB
Vue
<template>
|
|
<mk-ui>
|
|
<template #header><span style="margin-right:4px;"><fa icon="star"/></span>{{ $t('@.favorites') }}</template>
|
|
|
|
<main>
|
|
<sequential-entrance animation="entranceFromTop" delay="25">
|
|
<template v-for="favorite in favorites">
|
|
<mk-note-detail class="post" :note="favorite.note" :key="favorite.note.id"/>
|
|
</template>
|
|
</sequential-entrance>
|
|
<ui-button v-if="existMore" @click="more">{{ $t('@.load-more') }}</ui-button>
|
|
</main>
|
|
</mk-ui>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../../i18n';
|
|
import Progress from '../../../common/scripts/loading';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n(),
|
|
data() {
|
|
return {
|
|
fetching: true,
|
|
favorites: [],
|
|
existMore: false,
|
|
moreFetching: false
|
|
};
|
|
},
|
|
created() {
|
|
this.fetch();
|
|
},
|
|
mounted() {
|
|
document.title = `${this.$root.instanceName} | %i18n:@notifications%`;
|
|
},
|
|
methods: {
|
|
fetch() {
|
|
Progress.start();
|
|
this.fetching = true;
|
|
|
|
this.$root.api('i/favorites', {
|
|
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;
|
|
this.$root.api('i/favorites', {
|
|
limit: 11,
|
|
untilId: this.favorites[this.favorites.length - 1].id
|
|
}).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
|
|
> * > .post
|
|
margin-bottom 8px
|
|
|
|
@media (min-width 500px)
|
|
> * > .post
|
|
margin-bottom 16px
|
|
|
|
</style>
|