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

259 lines
5.6 KiB
Vue
Raw Normal View History

2018-02-14 05:24:49 +02:00
<template>
2018-04-07 20:30:37 +03:00
<div class="mk-notes">
2018-02-14 05:24:49 +02:00
<slot name="head"></slot>
2018-04-26 05:46:42 +03:00
<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">
2018-10-14 03:47:38 +03:00
<template v-for="i in 10">
<mk-note-skeleton :key="i"/>
</template>
2018-04-26 05:46:42 +03:00
</div>
<mk-error v-if="!fetching && requestInitPromise != null" @retry="resolveInitPromise"/>
2018-04-26 05:46:42 +03:00
2018-06-22 12:03:08 +03:00
<!-- トランジションを有効にするとなぜかメモリリークする -->
2018-09-16 15:40:48 +03:00
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notes" class="transition" tag="div">
<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 icon="angle-up"/>{{ note._datetext }}</span>
<span><fa icon="angle-down"/>{{ _notes[i + 1]._datetext }}</span>
</p>
</template>
</component>
2018-04-26 05:46:42 +03:00
<footer v-if="more">
<button @click="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $t('@.load-more') }}</template>
2018-11-13 15:45:28 +02:00
<template v-if="moreFetching"><fa icon="spinner" pulse fixed-width/></template>
2018-04-26 05:46:42 +03:00
</button>
2018-02-22 10:37:40 +02:00
</footer>
2018-02-14 05:24:49 +02:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';
import shouldMuteNote from '../../../common/scripts/should-mute-note';
2018-02-21 22:30:37 +02:00
2018-04-26 05:46:42 +03:00
const displayLimit = 30;
2018-02-14 05:24:49 +02:00
export default Vue.extend({
i18n: i18n(),
2018-02-14 05:24:49 +02:00
props: {
2018-04-26 05:46:42 +03:00
more: {
type: Function,
required: false
2018-02-14 05:24:49 +02:00
}
},
2018-04-26 05:46:42 +03:00
data() {
return {
requestInitPromise: null as () => Promise<any[]>,
notes: [],
queue: [],
fetching: true,
moreFetching: false
};
},
2018-02-14 05:24:49 +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 = this.$t('@.month-and-day').replace('{month}', month.toString()).replace('{day}', date.toString());
2018-04-07 20:30:37 +03:00
return note;
2018-02-14 05:24:49 +02:00
});
}
2018-02-22 15:03:44 +02:00
},
2018-04-26 05:46:42 +03:00
2018-05-17 17:53:55 +03:00
watch: {
queue(x) {
if (x.length > 0) {
this.$store.commit('indicate', true);
} else {
this.$store.commit('indicate', false);
}
}
},
2018-04-26 05:46:42 +03:00
mounted() {
2018-06-06 19:52:03 +03:00
window.addEventListener('scroll', this.onScroll, { passive: true });
2018-04-26 05:46:42 +03:00
},
beforeDestroy() {
window.removeEventListener('scroll', this.onScroll);
},
2018-02-22 15:03:44 +02:00
methods: {
2018-04-26 05:46:42 +03:00
isScrollTop() {
return window.scrollY <= 8;
},
2018-04-07 20:30:37 +03:00
onNoteUpdated(i, note) {
Vue.set((this as any).notes, i, note);
2018-04-26 05:46:42 +03: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) {
// 弾く
if (shouldMuteNote(this.$store.state.i, this.$store.state.settings, note)) return;
2018-04-26 05:46:42 +03:00
2018-10-19 08:34:51 +03:00
// タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
if (document.hidden || !this.isScrollTop()) {
this.$store.commit('pushBehindNote', note);
2018-04-26 08:38:37 +03:00
}
2018-04-26 05:46:42 +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 {
2018-04-28 04:27:53 +03:00
this.queue.push(note);
2018-04-26 05:46:42 +03: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;
},
onScroll() {
if (this.isScrollTop()) {
this.releaseQueue();
}
2018-05-27 07:49:09 +03:00
if (this.$store.state.settings.fetchOnScroll !== false) {
2018-05-07 10:53:56 +03: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-26 05:46:42 +03:00
const current = window.scrollY + window.innerHeight;
if (current > document.body.offsetHeight - 8) this.loadMore();
}
2018-02-22 15:03:44 +02:00
}
2018-02-14 05:24:49 +02:00
}
});
</script>
<style lang="stylus" scoped>
2018-09-28 13:59:19 +03:00
.mk-notes
2018-04-28 04:27:43 +03:00
overflow hidden
2018-09-26 14:28:13 +03:00
background var(--face)
2018-02-14 05:24:49 +02:00
border-radius 8px
2018-12-03 02:14:17 +02:00
box-shadow 0 4px 16px rgba(#000, 0.1)
2018-04-27 15:06:28 +03:00
@media (min-width 500px)
box-shadow 0 8px 32px rgba(#000, 0.1)
2018-02-14 05:24:49 +02: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-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)
span
margin 0 16px
[data-icon]
margin-right 8px
2018-10-14 04:16:02 +03:00
> .placeholder
2018-10-14 03:47:38 +03:00
padding 16px
opacity 0.3
2018-02-14 05:24:49 +02:00
2018-10-14 03:47:38 +03:00
@media (min-width 500px)
padding 32px
2018-02-14 05:24:49 +02:00
> .empty
margin 0 auto
padding 32px
max-width 400px
text-align center
color #999
> [data-icon]
2018-02-14 05:24:49 +02:00
display block
margin-bottom 16px
font-size 3em
color #ccc
> footer
text-align center
2018-09-26 18:54:37 +03:00
border-top solid 1px var(--faceDivider)
2018-02-14 05:24:49 +02:00
2018-02-22 10:51:08 +02:00
&:empty
display none
2018-02-14 05:24:49 +02:00
> button
margin 0
padding 16px
width 100%
2018-04-28 06:04:31 +03:00
color #ccc
2018-02-14 05:24:49 +02:00
2018-04-27 15:06:28 +03:00
@media (min-width 500px)
padding 20px
2018-02-14 05:24:49 +02:00
&:disabled
opacity 0.7
</style>