2018-02-13 01:12:54 +01:00
|
|
|
<template>
|
2018-04-07 19:30:37 +02:00
|
|
|
<div class="mk-notes">
|
2018-04-21 09:01:12 +02:00
|
|
|
<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 05:36:54 +02:00
|
|
|
<footer v-if="loadMore">
|
|
|
|
<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 01:12:54 +01:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2018-04-07 19:30:37 +02:00
|
|
|
import XNote from './notes.note.vue';
|
2018-02-13 01:12:54 +01:00
|
|
|
|
2018-04-25 05:36:54 +02:00
|
|
|
const displayLimit = 30;
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
export default Vue.extend({
|
2018-02-20 15:02:24 +01:00
|
|
|
components: {
|
2018-04-07 19:30:37 +02:00
|
|
|
XNote
|
2018-02-20 15:02:24 +01:00
|
|
|
},
|
2018-04-25 05:36:54 +02:00
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
props: {
|
2018-04-25 05:36:54 +02:00
|
|
|
more: {
|
|
|
|
type: Function,
|
|
|
|
required: false
|
2018-02-13 01:12:54 +01:00
|
|
|
}
|
|
|
|
},
|
2018-04-25 05:36:54 +02:00
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
notes: [],
|
|
|
|
queue: [],
|
|
|
|
fetching: false,
|
|
|
|
moreFetching: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
computed: {
|
2018-04-07 19:30:37 +02: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 01:12:54 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2018-04-25 05:36:54 +02:00
|
|
|
|
|
|
|
mounted() {
|
|
|
|
window.addEventListener('scroll', this.onScroll);
|
|
|
|
},
|
|
|
|
|
|
|
|
beforeDestroy() {
|
|
|
|
window.removeEventListener('scroll', this.onScroll);
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
methods: {
|
2018-04-25 05:36:54 +02:00
|
|
|
isScrollTop() {
|
|
|
|
return window.scrollY <= 8;
|
|
|
|
},
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
focus() {
|
|
|
|
(this.$el as any).children[0].focus();
|
2018-02-22 14:03:44 +01:00
|
|
|
},
|
2018-04-25 05:36:54 +02:00
|
|
|
|
2018-04-07 19:30:37 +02:00
|
|
|
onNoteUpdated(i, note) {
|
|
|
|
Vue.set((this as any).notes, i, note);
|
2018-04-25 05:36:54 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
init(notes) {
|
|
|
|
this.queue = [];
|
|
|
|
this.notes = notes;
|
|
|
|
},
|
|
|
|
|
|
|
|
prepend(note) {
|
|
|
|
if (this.isScrollTop()) {
|
|
|
|
this.notes.unshift(note);
|
|
|
|
|
|
|
|
// オーバーフローしたら古い投稿は捨てる
|
|
|
|
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() {
|
|
|
|
this.queue.forEach(n => this.prepend(n));
|
|
|
|
this.queue = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
async loadMore() {
|
|
|
|
this.moreFetching = true;
|
|
|
|
await this.more();
|
|
|
|
this.moreFetching = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
onScroll() {
|
|
|
|
if (this.isScrollTop()) {
|
|
|
|
this.releaseQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
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 01:12:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-04-19 20:41:24 +02:00
|
|
|
root(isDark)
|
2018-04-21 09:01:12 +02:00
|
|
|
.transition
|
|
|
|
.mk-notes-enter
|
|
|
|
.mk-notes-leave-to
|
|
|
|
opacity 0
|
|
|
|
transform translateY(-30px)
|
2018-02-13 01:12:54 +01:00
|
|
|
|
2018-04-21 09:01:12 +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 01:12:54 +01:00
|
|
|
|
2018-04-21 09:01:12 +02:00
|
|
|
[data-fa]
|
|
|
|
margin-right 8px
|
2018-02-13 01:12:54 +01:00
|
|
|
|
|
|
|
> footer
|
2018-03-05 12:09:26 +01:00
|
|
|
> *
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
width 100%
|
|
|
|
text-align center
|
|
|
|
color #ccc
|
|
|
|
border-top solid 1px #eaeaea
|
|
|
|
border-bottom-left-radius 4px
|
|
|
|
border-bottom-right-radius 4px
|
|
|
|
|
|
|
|
> button
|
|
|
|
&:hover
|
|
|
|
background #f5f5f5
|
2018-02-13 01:12:54 +01:00
|
|
|
|
2018-03-05 12:09:26 +01:00
|
|
|
&:active
|
|
|
|
background #eee
|
2018-04-19 20:41:24 +02:00
|
|
|
|
|
|
|
.mk-notes[data-darkmode]
|
|
|
|
root(true)
|
|
|
|
|
|
|
|
.mk-notes:not([data-darkmode])
|
|
|
|
root(false)
|
|
|
|
|
2018-02-13 01:12:54 +01:00
|
|
|
</style>
|