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

270 lines
5.8 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>
2018-10-14 04:16:02 +03:00
<div class="placeholder" v-if="fetching">
<template v-for="i in 10">
<mk-note-skeleton :key="i"/>
</template>
</div>
2018-06-05 15:36:21 +03:00
<div v-if="!fetching && requestInitPromise != null">
<p>%i18n:@error%</p>
<button @click="resolveInitPromise">%i18n:@retry%</button>
</div>
<!-- トランジションを有効にするとなぜかメモリリークする -->
<!--<transition-group name="mk-notes" class="transition" ref="notes">-->
<div class="notes" ref="notes">
2018-06-05 15:36:21 +03:00
<template v-for="(note, i) in _notes">
<x-note
:note="note"
:key="note.id"
@update:note="onNoteUpdated(i, $event)"
:media-view="mediaView"
:mini="true"
@parentFocus="parentFocus"/>
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 '../../components/note.vue';
2018-06-05 15:36:21 +03:00
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.$refs.notes as any).children[0].focus ? (this.$refs.notes as any).children[0].focus() : (this.$refs.notes as any).$el.children[0].focus();
2018-06-05 15:36:21 +03:00
},
parentFocus(direction) {
this.$emit('parentFocus', direction);
},
2018-06-05 15:36:21 +03:00
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
2018-10-19 08:34:51 +03:00
// タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
if (document.hidden || !this.isScrollTop()) {
this.$store.commit('pushBehindNote', note);
}
2018-06-05 15:36:21 +03:00
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>
2018-09-28 09:34:34 +03:00
.eamppglmnmimdhrlzhplwpvyeaqmmhxu
2018-06-05 15:36:21 +03:00
.transition
.mk-notes-enter
.mk-notes-leave-to
opacity 0
transform translateY(-30px)
> *
transition transform .3s ease, opacity .3s ease
2018-10-14 04:16:02 +03:00
> .placeholder
padding 16px
opacity 0.3
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 12px
2018-06-05 15:36:21 +03:00
text-align center
2018-09-27 10:49:18 +03:00
color var(--dateDividerFg)
background var(--dateDividerBg)
2018-09-26 18:54:37 +03:00
border-bottom solid 1px var(--faceDivider)
2018-06-05 15:36:21 +03:00
span
margin 0 16px
[data-fa]
margin-right 8px
> footer
> button
display block
margin 0
padding 16px
width 100%
text-align center
color #ccc
2018-09-26 14:28:13 +03:00
background var(--face)
2018-09-26 18:54:37 +03:00
border-top solid 1px var(--faceDivider)
2018-06-05 15:36:21 +03:00
border-bottom-left-radius 6px
border-bottom-right-radius 6px
&:hover
2018-09-28 09:34:34 +03:00
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05)
2018-06-05 15:36:21 +03:00
&:active
2018-09-28 09:34:34 +03:00
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1)
2018-06-05 15:36:21 +03:00
</style>