Sharkey/src/client/app/desktop/views/pages/deck/deck.notes.vue

253 lines
5.3 KiB
Vue
Raw Normal View History

2018-06-05 15:36:21 +03:00
<template>
<div class="eamppglmnmimdhrlzhplwpvyeaqmmhxu">
<slot name="empty" v-if="notes.length == 0 && !fetching && requestInitPromise == null"></slot>
<div v-if="!fetching && requestInitPromise != null">
<p>%i18n:@error%</p>
<button @click="resolveInitPromise">%i18n:@retry%</button>
</div>
<!-- トランジションを有効にするとなぜかメモリリークする -->
<!--<transition-group name="mk-notes" class="transition">-->
2018-06-21 05:37:18 +03:00
<div class="notes">
2018-06-05 15:36:21 +03:00
<template v-for="(note, i) in _notes">
2018-06-09 19:01:28 +03:00
<x-note :note="note" :key="note.id" @update:note="onNoteUpdated(i, $event)" :media-view="mediaView"/>
2018-06-05 15:36:21 +03:00
<p class="date" :key="note.id + '_date'" v-if="i != notes.length - 1 && note._date != _notes[i + 1]._date">
<span>%fa:angle-up%{{ note._datetext }}</span>
<span>%fa:angle-down%{{ _notes[i + 1]._datetext }}</span>
</p>
</template>
2018-06-21 05:37:18 +03:00
</div>
<!--</transition-group>-->
2018-06-05 15:36:21 +03:00
<footer v-if="more">
<button @click="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">%i18n:@load-more%</template>
<template v-if="moreFetching">%fa:spinner .pulse .fw%</template>
</button>
</footer>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import XNote from './deck.note.vue';
2018-06-08 15:37:20 +03:00
const displayLimit = 20;
2018-06-05 15:36:21 +03:00
export default Vue.extend({
components: {
XNote
},
2018-06-07 23:04:21 +03:00
inject: ['column', 'isScrollTop', 'count'],
2018-06-05 19:54:24 +03:00
2018-06-05 15:36:21 +03:00
props: {
more: {
type: Function,
required: false
2018-06-09 19:01:28 +03:00
},
mediaView: {
type: Boolean,
required: false,
default: false
2018-06-05 15:36:21 +03:00
}
},
data() {
return {
rootEl: null,
requestInitPromise: null as () => Promise<any[]>,
notes: [],
queue: [],
fetching: true,
moreFetching: false
};
},
computed: {
_notes(): any[] {
return (this.notes as any).map(note => {
const date = new Date(note.createdAt).getDate();
const month = new Date(note.createdAt).getMonth() + 1;
note._date = date;
2018-08-07 07:25:50 +03:00
note._datetext = '%i18n:common.month-and-day%'.replace('{month}', month.toString()).replace('{day}', date.toString());
2018-06-05 15:36:21 +03:00
return note;
});
}
},
2018-06-07 23:04:21 +03:00
watch: {
queue(q) {
this.count(q.length);
}
},
2018-06-05 16:54:03 +03:00
created() {
2018-06-05 19:54:24 +03:00
this.column.$on('top', this.onTop);
this.column.$on('bottom', this.onBottom);
2018-06-05 16:54:03 +03:00
},
2018-06-05 15:36:21 +03:00
beforeDestroy() {
2018-06-05 19:54:24 +03:00
this.column.$off('top', this.onTop);
this.column.$off('bottom', this.onBottom);
2018-06-05 15:36:21 +03:00
},
methods: {
focus() {
(this.$el as any).children[0].focus();
},
onNoteUpdated(i, note) {
Vue.set((this as any).notes, i, note);
},
init(promiseGenerator: () => Promise<any[]>) {
this.requestInitPromise = promiseGenerator;
this.resolveInitPromise();
},
resolveInitPromise() {
this.queue = [];
this.notes = [];
this.fetching = true;
const promise = this.requestInitPromise();
promise.then(notes => {
this.notes = notes;
this.requestInitPromise = null;
this.fetching = false;
}, e => {
this.fetching = false;
});
},
prepend(note, silent = false) {
//#region 弾く
const isMyNote = note.userId == this.$store.state.i.id;
2018-09-05 13:32:46 +03:00
const isPureRenote = note.renoteId != null && note.text == null && note.fileIds.length == 0 && note.poll == null;
2018-06-05 15:36:21 +03:00
if (this.$store.state.settings.showMyRenotes === false) {
if (isMyNote && isPureRenote) {
return;
}
}
if (this.$store.state.settings.showRenotedMyNotes === false) {
if (isPureRenote && (note.renote.userId == this.$store.state.i.id)) {
return;
}
}
2018-08-16 17:59:22 +03:00
if (this.$store.state.settings.showLocalRenotes === false) {
if (isPureRenote && (note.renote.user.host == null)) {
return;
}
}
2018-06-05 15:36:21 +03:00
//#endregion
if (this.isScrollTop()) {
// Prepend the note
this.notes.unshift(note);
// オーバーフローしたら古い投稿は捨てる
if (this.notes.length >= displayLimit) {
this.notes = this.notes.slice(0, displayLimit);
}
} else {
this.queue.push(note);
}
},
append(note) {
this.notes.push(note);
},
tail() {
return this.notes[this.notes.length - 1];
},
releaseQueue() {
this.queue.forEach(n => this.prepend(n, true));
this.queue = [];
},
async loadMore() {
if (this.more == null) return;
if (this.moreFetching) return;
this.moreFetching = true;
await this.more();
this.moreFetching = false;
},
2018-06-05 19:54:24 +03:00
onTop() {
this.releaseQueue();
},
2018-06-05 15:36:21 +03:00
2018-06-05 19:54:24 +03:00
onBottom() {
this.loadMore();
2018-06-05 15:36:21 +03:00
}
}
});
</script>
<style lang="stylus" scoped>
@import '~const.styl'
root(isDark)
.transition
.mk-notes-enter
.mk-notes-leave-to
opacity 0
transform translateY(-30px)
> *
transition transform .3s ease, opacity .3s ease
2018-06-21 05:37:18 +03:00
> .notes
2018-06-05 15:36:21 +03:00
> .date
display block
margin 0
line-height 32px
font-size 14px
text-align center
color isDark ? #666b79 : #aaa
background isDark ? #242731 : #fdfdfd
border-bottom solid 1px isDark ? #1c2023 : #eaeaea
span
margin 0 16px
[data-fa]
margin-right 8px
> footer
> button
display block
margin 0
padding 16px
width 100%
text-align center
color #ccc
background isDark ? #282C37 : #fff
border-top solid 1px isDark ? #1c2023 : #eaeaea
border-bottom-left-radius 6px
border-bottom-right-radius 6px
&:hover
background isDark ? #2e3440 : #f5f5f5
&:active
background isDark ? #21242b : #eee
.eamppglmnmimdhrlzhplwpvyeaqmmhxu[data-darkmode]
root(true)
.eamppglmnmimdhrlzhplwpvyeaqmmhxu:not([data-darkmode])
root(false)
</style>