2018-02-13 21:24:49 -06:00
|
|
|
<template>
|
2018-04-07 12:30:37 -05:00
|
|
|
<div class="mk-notes">
|
2018-02-13 21:24:49 -06:00
|
|
|
<slot name="head"></slot>
|
2018-04-25 21:46:42 -05:00
|
|
|
|
|
|
|
<slot name="empty" v-if="notes.length == 0 && !fetching && requestInitPromise == null"></slot>
|
|
|
|
|
|
|
|
<div class="init" v-if="fetching">
|
|
|
|
%fa:spinner .pulse%%i18n:common.loading%
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-if="!fetching && requestInitPromise != null">
|
2018-05-27 07:51:57 -05:00
|
|
|
<p>%i18n:@failed%</p>
|
|
|
|
<button @click="resolveInitPromise">%i18n:@retry%</button>
|
2018-04-25 21:46:42 -05:00
|
|
|
</div>
|
|
|
|
|
2018-06-22 04:03:08 -05:00
|
|
|
<!-- トランジションを有効にするとなぜかメモリリークする -->
|
2018-09-16 07:40:48 -05:00
|
|
|
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notes" class="transition" tag="div">
|
2018-04-21 02:01:12 -05:00
|
|
|
<template v-for="(note, i) in _notes">
|
|
|
|
<mk-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>
|
2018-09-15 13:46:53 -05:00
|
|
|
</component>
|
2018-04-25 21:46:42 -05: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>
|
2018-02-22 02:37:40 -06:00
|
|
|
</footer>
|
2018-02-13 21:24:49 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-07-07 05:19:00 -05:00
|
|
|
import getNoteSummary from '../../../../../misc/get-note-summary';
|
2018-02-21 14:30:37 -06:00
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
const displayLimit = 30;
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
export default Vue.extend({
|
|
|
|
props: {
|
2018-04-25 21:46:42 -05:00
|
|
|
more: {
|
|
|
|
type: Function,
|
|
|
|
required: false
|
2018-02-13 21:24:49 -06:00
|
|
|
}
|
|
|
|
},
|
2018-04-25 21:46:42 -05:00
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
requestInitPromise: null as () => Promise<any[]>,
|
|
|
|
notes: [],
|
|
|
|
queue: [],
|
2018-04-26 00:38:37 -05:00
|
|
|
unreadCount: 0,
|
2018-04-25 21:46:42 -05:00
|
|
|
fetching: true,
|
|
|
|
moreFetching: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-02-13 21:24:49 -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-13 21:24:49 -06:00
|
|
|
});
|
|
|
|
}
|
2018-02-22 07:03:44 -06:00
|
|
|
},
|
2018-04-25 21:46:42 -05:00
|
|
|
|
2018-05-17 09:53:55 -05:00
|
|
|
watch: {
|
|
|
|
queue(x) {
|
|
|
|
if (x.length > 0) {
|
|
|
|
this.$store.commit('indicate', true);
|
|
|
|
} else {
|
|
|
|
this.$store.commit('indicate', false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
mounted() {
|
2018-04-26 00:38:37 -05:00
|
|
|
document.addEventListener('visibilitychange', this.onVisibilitychange, false);
|
2018-06-06 11:52:03 -05:00
|
|
|
window.addEventListener('scroll', this.onScroll, { passive: true });
|
2018-04-25 21:46:42 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
2018-04-26 00:38:37 -05:00
|
|
|
document.removeEventListener('visibilitychange', this.onVisibilitychange);
|
2018-04-25 21:46:42 -05:00
|
|
|
window.removeEventListener('scroll', this.onScroll);
|
|
|
|
},
|
|
|
|
|
2018-02-22 07:03:44 -06:00
|
|
|
methods: {
|
2018-04-25 21:46:42 -05:00
|
|
|
isScrollTop() {
|
|
|
|
return window.scrollY <= 8;
|
|
|
|
},
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
onNoteUpdated(i, note) {
|
|
|
|
Vue.set((this as any).notes, i, note);
|
2018-04-25 21:46:42 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
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 弾く
|
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-25 21:46:42 -05:00
|
|
|
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.state.settings.showMyRenotes === false) {
|
2018-04-25 21:46:42 -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-25 21:46:42 -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-25 21:46:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2018-04-26 00:38:37 -05:00
|
|
|
// 投稿が自分のものではないかつ、タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
|
2018-05-26 23:49:09 -05:00
|
|
|
if ((document.hidden || !this.isScrollTop()) && note.userId !== this.$store.state.i.id) {
|
2018-04-26 00:38:37 -05:00
|
|
|
this.unreadCount++;
|
|
|
|
document.title = `(${this.unreadCount}) ${getNoteSummary(note)}`;
|
|
|
|
}
|
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
if (this.isScrollTop()) {
|
|
|
|
// Prepend the note
|
|
|
|
this.notes.unshift(note);
|
|
|
|
|
|
|
|
// オーバーフローしたら古い投稿は捨てる
|
|
|
|
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-25 21:46:42 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
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-04-26 00:38:37 -05:00
|
|
|
clearNotification() {
|
|
|
|
this.unreadCount = 0;
|
2018-08-19 07:07:18 -05:00
|
|
|
document.title = (this as any).os.instanceName;
|
2018-04-26 00:38:37 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
onVisibilitychange() {
|
|
|
|
if (!document.hidden) {
|
|
|
|
this.clearNotification();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
onScroll() {
|
|
|
|
if (this.isScrollTop()) {
|
|
|
|
this.releaseQueue();
|
2018-04-26 00:38:37 -05:00
|
|
|
this.clearNotification();
|
2018-04-25 21:46:42 -05:00
|
|
|
}
|
|
|
|
|
2018-05-26 23:49:09 -05:00
|
|
|
if (this.$store.state.settings.fetchOnScroll !== false) {
|
2018-05-07 02:53:56 -05:00
|
|
|
// 親要素が display none だったら弾く
|
|
|
|
// https://github.com/syuilo/misskey/issues/1569
|
|
|
|
// http://d.hatena.ne.jp/favril/20091105/1257403319
|
|
|
|
if (this.$el.offsetHeight == 0) return;
|
|
|
|
|
2018-04-25 21:46:42 -05:00
|
|
|
const current = window.scrollY + window.innerHeight;
|
|
|
|
if (current > document.body.offsetHeight - 8) this.loadMore();
|
|
|
|
}
|
2018-02-22 07:03:44 -06:00
|
|
|
}
|
2018-02-13 21:24:49 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-26 06:19:35 -05:00
|
|
|
|
2018-03-02 22:47:55 -06:00
|
|
|
|
2018-04-27 07:06:28 -05:00
|
|
|
root(isDark)
|
2018-04-27 20:27:43 -05:00
|
|
|
overflow hidden
|
2018-04-27 07:06:28 -05:00
|
|
|
background isDark ? #282C37 : #fff
|
2018-02-13 21:24:49 -06:00
|
|
|
border-radius 8px
|
2018-04-27 12:29:17 -05:00
|
|
|
box-shadow 0 0 2px rgba(#000, 0.1)
|
2018-04-27 07:06:28 -05:00
|
|
|
|
|
|
|
@media (min-width 500px)
|
2018-04-27 12:29:17 -05:00
|
|
|
box-shadow 0 8px 32px rgba(#000, 0.1)
|
2018-02-13 21:24:49 -06:00
|
|
|
|
2018-04-21 02:01:12 -05:00
|
|
|
.transition
|
|
|
|
.mk-notes-enter
|
|
|
|
.mk-notes-leave-to
|
|
|
|
opacity 0
|
|
|
|
transform translateY(-30px)
|
|
|
|
|
|
|
|
> *
|
|
|
|
transition transform .3s ease, opacity .3s ease
|
|
|
|
|
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
line-height 32px
|
|
|
|
text-align center
|
|
|
|
font-size 0.9em
|
2018-04-27 12:29:17 -05:00
|
|
|
color isDark ? #666b79 : #aaa
|
|
|
|
background isDark ? #242731 : #fdfdfd
|
|
|
|
border-bottom solid 1px isDark ? #1c2023 : #eaeaea
|
2018-04-21 02:01:12 -05:00
|
|
|
|
|
|
|
span
|
|
|
|
margin 0 16px
|
|
|
|
|
|
|
|
[data-fa]
|
|
|
|
margin-right 8px
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
> .init
|
|
|
|
padding 64px 0
|
|
|
|
text-align center
|
|
|
|
color #999
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> .empty
|
|
|
|
margin 0 auto
|
|
|
|
padding 32px
|
|
|
|
max-width 400px
|
|
|
|
text-align center
|
|
|
|
color #999
|
|
|
|
|
|
|
|
> [data-fa]
|
|
|
|
display block
|
|
|
|
margin-bottom 16px
|
|
|
|
font-size 3em
|
|
|
|
color #ccc
|
|
|
|
|
|
|
|
> footer
|
|
|
|
text-align center
|
2018-04-27 22:04:31 -05:00
|
|
|
border-top solid 1px isDark ? #1c2023 : #eaeaea
|
2018-02-13 21:24:49 -06:00
|
|
|
|
2018-02-22 02:51:08 -06:00
|
|
|
&:empty
|
|
|
|
display none
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
> button
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
width 100%
|
2018-04-27 22:04:31 -05:00
|
|
|
color #ccc
|
2018-02-13 21:24:49 -06:00
|
|
|
|
2018-04-27 07:06:28 -05:00
|
|
|
@media (min-width 500px)
|
|
|
|
padding 20px
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
&:disabled
|
|
|
|
opacity 0.7
|
|
|
|
|
2018-04-27 07:06:28 -05:00
|
|
|
.mk-notes[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-notes:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-13 21:24:49 -06:00
|
|
|
</style>
|