Sharkey/src/client/app/desktop/views/components/notes.vue

273 lines
6.2 KiB
Vue
Raw Normal View History

2018-02-13 02:12:54 +02:00
<template>
2018-04-07 20:30:37 +03:00
<div class="mk-notes">
2018-04-25 13:53:16 +03: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>
<div v-if="!fetching && requestInitPromise != null">
<p>読み込みに失敗しました</p>
<button @click="resolveInitPromise">リトライ</button>
</div>
<transition-group name="mk-notes" class="transition">
<template v-for="(note, i) in _notes">
<x-note :note="note" :key="note.id" @update:note="onNoteUpdated(i, $event)"/>
<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>
</transition-group>
2018-04-25 13:53:16 +03:00
<footer v-if="more">
2018-04-25 06:36:54 +03: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-13 02:12:54 +02:00
</footer>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
2018-04-25 07:48:02 +03:00
import { url } from '../../../config';
2018-04-26 08:38:37 +03:00
import getNoteSummary from '../../../../../renderers/get-note-summary';
2018-04-25 07:48:02 +03:00
2018-04-07 20:30:37 +03:00
import XNote from './notes.note.vue';
2018-02-13 02:12:54 +02:00
2018-04-25 06:36:54 +03:00
const displayLimit = 30;
2018-02-13 02:12:54 +02:00
export default Vue.extend({
2018-02-20 16:02:24 +02:00
components: {
2018-04-07 20:30:37 +03:00
XNote
2018-02-20 16:02:24 +02:00
},
2018-04-25 06:36:54 +03:00
2018-02-13 02:12:54 +02:00
props: {
2018-04-25 06:36:54 +03:00
more: {
type: Function,
required: false
2018-02-13 02:12:54 +02:00
}
},
2018-04-25 06:36:54 +03:00
data() {
return {
2018-04-25 13:53:16 +03:00
requestInitPromise: null as () => Promise<any[]>,
2018-04-25 06:36:54 +03:00
notes: [],
queue: [],
2018-04-26 08:38:37 +03:00
unreadCount: 0,
2018-04-25 13:53:16 +03:00
fetching: true,
2018-04-25 06:36:54 +03:00
moreFetching: false
};
},
2018-02-13 02:12:54 +02:00
computed: {
2018-04-07 20:30:37 +03: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;
note._datetext = `${month}${date}`;
return note;
2018-02-13 02:12:54 +02:00
});
}
},
2018-04-25 06:36:54 +03:00
mounted() {
2018-04-26 08:38:37 +03:00
document.addEventListener('visibilitychange', this.onVisibilitychange, false);
2018-04-25 06:36:54 +03:00
window.addEventListener('scroll', this.onScroll);
},
beforeDestroy() {
2018-04-26 08:38:37 +03:00
document.removeEventListener('visibilitychange', this.onVisibilitychange);
2018-04-25 06:36:54 +03:00
window.removeEventListener('scroll', this.onScroll);
},
2018-02-13 02:12:54 +02:00
methods: {
2018-04-25 06:36:54 +03:00
isScrollTop() {
return window.scrollY <= 8;
},
2018-02-13 02:12:54 +02:00
focus() {
(this.$el as any).children[0].focus();
2018-02-22 15:03:44 +02:00
},
2018-04-25 06:36:54 +03:00
2018-04-07 20:30:37 +03:00
onNoteUpdated(i, note) {
Vue.set((this as any).notes, i, note);
2018-04-25 06:36:54 +03:00
},
2018-04-25 13:53:16 +03:00
init(promiseGenerator: () => Promise<any[]>) {
this.requestInitPromise = promiseGenerator;
this.resolveInitPromise();
},
resolveInitPromise() {
2018-04-25 06:36:54 +03:00
this.queue = [];
2018-04-25 13:53:16 +03: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-25 06:36:54 +03:00
},
2018-04-25 07:48:02 +03:00
prepend(note, silent = false) {
//#region 弾く
const isMyNote = note.userId == (this as any).os.i.id;
const isPureRenote = note.renoteId != null && note.text == null && note.mediaIds.length == 0 && note.poll == null;
if ((this as any).os.i.clientSettings.showMyRenotes === false) {
if (isMyNote && isPureRenote) {
return;
}
}
if ((this as any).os.i.clientSettings.showRenotedMyNotes === false) {
if (isPureRenote && (note.renote.userId == (this as any).os.i.id)) {
return;
}
}
//#endregion
2018-04-26 08:38:37 +03:00
// 投稿が自分のものではないかつ、タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
if ((document.hidden || !this.isScrollTop()) && note.userId !== (this as any).os.i.id) {
this.unreadCount++;
document.title = `(${this.unreadCount}) ${getNoteSummary(note)}`;
}
2018-04-25 06:36:54 +03:00
if (this.isScrollTop()) {
2018-04-25 07:48:02 +03:00
// Prepend the note
2018-04-25 06:36:54 +03:00
this.notes.unshift(note);
2018-04-25 07:48:02 +03:00
// サウンドを再生する
if ((this as any).os.isEnableSounds && !silent) {
const sound = new Audio(`${url}/assets/post.mp3`);
sound.volume = localStorage.getItem('soundVolume') ? parseInt(localStorage.getItem('soundVolume'), 10) / 100 : 0.5;
sound.play();
}
2018-04-25 06:36:54 +03:00
// オーバーフローしたら古い投稿は捨てる
if (this.notes.length >= displayLimit) {
this.notes = this.notes.slice(0, displayLimit);
}
} else {
this.queue.unshift(note);
}
},
append(note) {
this.notes.push(note);
},
tail() {
return this.notes[this.notes.length - 1];
},
releaseQueue() {
2018-04-25 07:48:02 +03:00
this.queue.forEach(n => this.prepend(n, true));
2018-04-25 06:36:54 +03:00
this.queue = [];
},
async loadMore() {
2018-04-25 13:53:16 +03:00
if (this.more == null) return;
if (this.moreFetching) return;
2018-04-25 06:36:54 +03:00
this.moreFetching = true;
await this.more();
this.moreFetching = false;
},
2018-04-26 08:38:37 +03:00
clearNotification() {
this.unreadCount = 0;
document.title = 'Misskey';
},
onVisibilitychange() {
if (!document.hidden) {
this.clearNotification();
}
},
2018-04-25 06:36:54 +03:00
onScroll() {
if (this.isScrollTop()) {
this.releaseQueue();
2018-04-26 08:38:37 +03:00
this.clearNotification();
2018-04-25 06:36:54 +03:00
}
if ((this as any).os.i.clientSettings.fetchOnScroll !== false) {
const current = window.scrollY + window.innerHeight;
if (current > document.body.offsetHeight - 8) this.loadMore();
}
2018-02-13 02:12:54 +02:00
}
}
});
</script>
<style lang="stylus" scoped>
2018-04-25 13:53:16 +03:00
@import '~const.styl'
2018-04-19 21:41:24 +03:00
root(isDark)
.transition
.mk-notes-enter
.mk-notes-leave-to
opacity 0
transform translateY(-30px)
2018-02-13 02:12:54 +02:00
> *
transition transform .3s ease, opacity .3s ease
> .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
2018-02-13 02:12:54 +02:00
[data-fa]
margin-right 8px
2018-02-13 02:12:54 +02:00
2018-04-25 13:53:16 +03:00
> .newer-indicator
position -webkit-sticky
position sticky
z-index 100
height 3px
background $theme-color
2018-02-13 02:12:54 +02:00
> footer
2018-04-25 16:37:08 +03:00
> button
2018-03-05 13:09:26 +02:00
display block
margin 0
padding 16px
width 100%
text-align center
color #ccc
2018-04-25 16:37:08 +03:00
background isDark ? #282C37 : #fff
2018-04-25 13:53:16 +03:00
border-top solid 1px isDark ? #1c2023 : #eaeaea
2018-04-25 16:37:08 +03:00
border-bottom-left-radius 6px
border-bottom-right-radius 6px
2018-03-05 13:09:26 +02:00
&:hover
2018-04-25 13:53:16 +03:00
background isDark ? #2e3440 : #f5f5f5
2018-02-13 02:12:54 +02:00
2018-03-05 13:09:26 +02:00
&:active
2018-04-25 13:53:16 +03:00
background isDark ? #21242b : #eee
2018-04-19 21:41:24 +03:00
.mk-notes[data-darkmode]
root(true)
.mk-notes:not([data-darkmode])
root(false)
2018-02-13 02:12:54 +02:00
</style>