yumechi-no-kuni/src/client/app/desktop/views/components/notes.vue

263 lines
6.1 KiB
Vue
Raw Normal View History

2018-02-12 18:12:54 -06:00
<template>
2018-04-07 12:30:37 -05:00
<div class="mk-notes">
2018-04-25 05:53:16 -05:00
<div class="newer-indicator" :style="{ top: $store.state.uiHeaderHeight + 'px' }" v-show="queue.length > 0"></div>
<slot name="empty" v-if="notes.length == 0 && !fetching && requestInitPromise == null"></slot>
2018-10-29 19:36:20 -05:00
<mk-error v-if="!fetching && requestInitPromise != null" @retry="resolveInitPromise"/>
2018-04-25 05:53:16 -05:00
2018-10-13 20:16:02 -05:00
<div class="placeholder" v-if="fetching">
2018-10-13 19:47:38 -05:00
<template v-for="i in 10">
<mk-note-skeleton :key="i"/>
</template>
</div>
<!-- トランジションを有効にするとなぜかメモリリークする -->
2018-09-18 00:35:46 -05:00
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notes" class="notes transition" tag="div" ref="notes">
<template v-for="(note, i) in _notes">
<x-note :note="note" :key="note.id" @update:note="onNoteUpdated(i, $event)" ref="note"/>
<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>
</component>
2018-04-25 05:53:16 -05:00
<footer v-if="more">
2018-04-24 22:36:54 -05:00
<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>
2018-02-12 18:12:54 -06:00
</footer>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-08-06 23:25:50 -05:00
import * as config from '../../../config';
2018-04-24 23:48:02 -05:00
import XNote from './note.vue';
2018-02-12 18:12:54 -06:00
2018-04-24 22:36:54 -05:00
const displayLimit = 30;
2018-02-12 18:12:54 -06:00
export default Vue.extend({
2018-02-20 08:02:24 -06:00
components: {
2018-04-07 12:30:37 -05:00
XNote
2018-02-20 08:02:24 -06:00
},
2018-04-24 22:36:54 -05:00
2018-02-12 18:12:54 -06:00
props: {
2018-04-24 22:36:54 -05:00
more: {
type: Function,
required: false
2018-02-12 18:12:54 -06:00
}
},
2018-04-24 22:36:54 -05:00
data() {
return {
2018-04-25 05:53:16 -05:00
requestInitPromise: null as () => Promise<any[]>,
2018-04-24 22:36:54 -05:00
notes: [],
queue: [],
2018-04-25 05:53:16 -05:00
fetching: true,
2018-04-24 22:36:54 -05:00
moreFetching: false
};
},
2018-02-12 18:12:54 -06:00
computed: {
2018-04-07 12:30:37 -05:00
_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-06 23:25:50 -05:00
note._datetext = '%i18n:common.month-and-day%'.replace('{month}', month.toString()).replace('{day}', date.toString());
2018-04-07 12:30:37 -05:00
return note;
2018-02-12 18:12:54 -06:00
});
}
},
2018-04-24 22:36:54 -05:00
mounted() {
2018-06-06 11:52:03 -05:00
window.addEventListener('scroll', this.onScroll, { passive: true });
2018-04-24 22:36:54 -05:00
},
beforeDestroy() {
window.removeEventListener('scroll', this.onScroll);
},
2018-02-12 18:12:54 -06:00
methods: {
2018-04-24 22:36:54 -05:00
isScrollTop() {
return window.scrollY <= 8;
},
2018-02-12 18:12:54 -06:00
focus() {
2018-09-18 00:35:46 -05:00
(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-02-22 07:03:44 -06:00
},
2018-04-24 22:36:54 -05:00
2018-04-07 12:30:37 -05:00
onNoteUpdated(i, note) {
Vue.set((this as any).notes, i, note);
2018-04-24 22:36:54 -05:00
},
2018-04-25 05:53:16 -05:00
init(promiseGenerator: () => Promise<any[]>) {
this.requestInitPromise = promiseGenerator;
this.resolveInitPromise();
},
resolveInitPromise() {
2018-04-24 22:36:54 -05:00
this.queue = [];
2018-04-25 05:53:16 -05:00
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;
});
2018-04-24 22:36:54 -05:00
},
2018-04-24 23:48:02 -05:00
prepend(note, silent = false) {
//#region 弾く
2018-05-26 23:49:09 -05:00
const isMyNote = note.userId == this.$store.state.i.id;
2018-09-05 05:32:46 -05:00
const isPureRenote = note.renoteId != null && note.text == null && note.fileIds.length == 0 && note.poll == null;
2018-04-24 23:48:02 -05:00
2018-05-26 23:49:09 -05:00
if (this.$store.state.settings.showMyRenotes === false) {
2018-04-24 23:48:02 -05:00
if (isMyNote && isPureRenote) {
return;
}
}
2018-05-26 23:49:09 -05:00
if (this.$store.state.settings.showRenotedMyNotes === false) {
if (isPureRenote && (note.renote.userId == this.$store.state.i.id)) {
2018-04-24 23:48:02 -05:00
return;
}
}
2018-08-16 09:59:22 -05:00
if (this.$store.state.settings.showLocalRenotes === false) {
if (isPureRenote && (note.renote.user.host == null)) {
return;
}
}
2018-04-24 23:48:02 -05:00
//#endregion
2018-10-19 00:34:51 -05:00
// タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
if (document.hidden || !this.isScrollTop()) {
this.$store.commit('pushBehindNote', note);
2018-04-26 00:38:37 -05:00
}
2018-04-24 22:36:54 -05:00
if (this.isScrollTop()) {
2018-04-24 23:48:02 -05:00
// Prepend the note
2018-04-24 22:36:54 -05:00
this.notes.unshift(note);
2018-04-24 23:48:02 -05:00
// サウンドを再生する
2018-05-20 12:13:39 -05:00
if (this.$store.state.device.enableSounds && !silent) {
2018-08-06 23:25:50 -05:00
const sound = new Audio(`${config.url}/assets/post.mp3`);
2018-05-20 12:13:39 -05:00
sound.volume = this.$store.state.device.soundVolume;
2018-04-24 23:48:02 -05:00
sound.play();
}
2018-04-24 22:36:54 -05:00
// オーバーフローしたら古い投稿は捨てる
if (this.notes.length >= displayLimit) {
this.notes = this.notes.slice(0, displayLimit);
}
} else {
2018-04-27 20:27:53 -05:00
this.queue.push(note);
2018-04-24 22:36:54 -05:00
}
},
append(note) {
this.notes.push(note);
},
tail() {
return this.notes[this.notes.length - 1];
},
releaseQueue() {
2018-04-24 23:48:02 -05:00
this.queue.forEach(n => this.prepend(n, true));
2018-04-24 22:36:54 -05:00
this.queue = [];
},
async loadMore() {
2018-04-25 05:53:16 -05:00
if (this.more == null) return;
if (this.moreFetching) return;
2018-04-24 22:36:54 -05:00
this.moreFetching = true;
await this.more();
this.moreFetching = false;
},
onScroll() {
if (this.isScrollTop()) {
this.releaseQueue();
}
2018-05-26 23:49:09 -05:00
if (this.$store.state.settings.fetchOnScroll !== false) {
2018-04-24 22:36:54 -05:00
const current = window.scrollY + window.innerHeight;
if (current > document.body.offsetHeight - 8) this.loadMore();
}
2018-02-12 18:12:54 -06:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-09-26 12:35:13 -05:00
.mk-notes
.transition
.mk-notes-enter
.mk-notes-leave-to
opacity 0
transform translateY(-30px)
2018-02-12 18:12:54 -06:00
> *
transition transform .3s ease, opacity .3s ease
2018-10-13 20:16:02 -05:00
> .placeholder
2018-10-13 19:47:38 -05:00
padding 32px
opacity 0.3
2018-06-20 21:37:18 -05:00
> .notes
> .date
display block
margin 0
line-height 32px
font-size 14px
text-align center
2018-09-26 12:35:13 -05:00
color var(--dateDividerFg)
background var(--dateDividerBg)
2018-09-26 10:54:37 -05:00
border-bottom solid 1px var(--faceDivider)
span
margin 0 16px
2018-02-12 18:12:54 -06:00
[data-fa]
margin-right 8px
2018-02-12 18:12:54 -06:00
2018-04-25 05:53:16 -05:00
> .newer-indicator
position -webkit-sticky
position sticky
z-index 100
height 3px
2018-09-26 06:19:35 -05:00
background var(--primary)
2018-04-25 05:53:16 -05:00
2018-02-12 18:12:54 -06:00
> footer
2018-04-25 08:37:08 -05:00
> button
2018-03-05 05:09:26 -06:00
display block
margin 0
padding 16px
width 100%
text-align center
color #ccc
2018-09-26 06:28:13 -05:00
background var(--face)
2018-09-26 10:54:37 -05:00
border-top solid 1px var(--faceDivider)
2018-04-25 08:37:08 -05:00
border-bottom-left-radius 6px
border-bottom-right-radius 6px
2018-03-05 05:09:26 -06:00
&:hover
2018-09-26 23:54:53 -05:00
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05)
2018-02-12 18:12:54 -06:00
2018-03-05 05:09:26 -06:00
&:active
2018-09-26 23:54:53 -05:00
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1)
2018-04-19 13:41:24 -05:00
2018-02-12 18:12:54 -06:00
</style>