2018-06-05 14:36:21 +02:00
|
|
|
<template>
|
|
|
|
<div class="eamppglmnmimdhrlzhplwpvyeaqmmhxu">
|
2019-05-20 20:07:11 +02:00
|
|
|
<div class="empty" v-if="empty">{{ $t('@.no-notes') }}</div>
|
2019-02-18 01:17:55 +01:00
|
|
|
|
2019-05-20 20:07:11 +02:00
|
|
|
<mk-error v-if="error" @retry="init()"/>
|
2018-06-05 14:36:21 +02:00
|
|
|
|
2018-10-14 03:16:02 +02:00
|
|
|
<div class="placeholder" v-if="fetching">
|
|
|
|
<template v-for="i in 10">
|
|
|
|
<mk-note-skeleton :key="i"/>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
|
2018-06-20 15:28:08 +02:00
|
|
|
<!-- トランジションを有効にするとなぜかメモリリークする -->
|
2018-12-19 03:23:46 +01:00
|
|
|
<component :is="!$store.state.device.reduceMotion ? 'transition-group' : 'div'" name="mk-notes" class="transition notes" ref="notes" tag="div">
|
2018-06-05 14:36:21 +02:00
|
|
|
<template v-for="(note, i) in _notes">
|
2019-02-25 11:45:00 +01:00
|
|
|
<mk-note
|
2018-10-19 19:40:37 +02:00
|
|
|
:note="note"
|
|
|
|
:key="note.id"
|
2019-01-06 04:56:13 +01:00
|
|
|
:compact="true"
|
2019-02-25 11:45:00 +01:00
|
|
|
/>
|
2018-06-05 14:36:21 +02:00
|
|
|
<p class="date" :key="note.id + '_date'" v-if="i != notes.length - 1 && note._date != _notes[i + 1]._date">
|
2018-11-05 17:40:11 +01:00
|
|
|
<span><fa icon="angle-up"/>{{ note._datetext }}</span>
|
|
|
|
<span><fa icon="angle-down"/>{{ _notes[i + 1]._datetext }}</span>
|
2018-06-05 14:36:21 +02:00
|
|
|
</p>
|
|
|
|
</template>
|
2018-12-19 03:23:46 +01:00
|
|
|
</component>
|
2018-06-05 14:36:21 +02:00
|
|
|
|
2019-04-08 07:17:44 +02:00
|
|
|
<footer v-if="more">
|
2019-04-08 07:41:23 +02:00
|
|
|
<button @click="fetchMore()" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
|
2018-11-08 19:44:35 +01:00
|
|
|
<template v-if="!moreFetching">{{ $t('@.load-more') }}</template>
|
2018-11-13 14:45:28 +01:00
|
|
|
<template v-if="moreFetching"><fa icon="spinner" pulse fixed-width/></template>
|
2018-06-05 14:36:21 +02:00
|
|
|
</button>
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-02-14 21:08:59 +01:00
|
|
|
import i18n from '../../../i18n';
|
|
|
|
import shouldMuteNote from '../../../common/scripts/should-mute-note';
|
2019-05-20 20:07:11 +02:00
|
|
|
import paging from '../../../common/scripts/paging';
|
2018-06-05 14:36:21 +02:00
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n(),
|
2019-02-18 01:17:55 +01:00
|
|
|
|
2018-06-07 22:04:21 +02:00
|
|
|
inject: ['column', 'isScrollTop', 'count'],
|
2018-06-05 18:54:24 +02:00
|
|
|
|
2019-05-20 20:07:11 +02:00
|
|
|
mixins: [
|
|
|
|
paging({
|
2019-05-21 01:19:23 +02:00
|
|
|
limit: 20,
|
2019-05-20 20:07:11 +02:00
|
|
|
|
|
|
|
onQueueChanged: (self, q) => {
|
|
|
|
self.count(q.length);
|
|
|
|
},
|
|
|
|
|
|
|
|
onPrepend: (self, note, silent) => {
|
|
|
|
// 弾く
|
|
|
|
if (shouldMuteNote(self.$store.state.i, self.$store.state.settings, note)) return false;
|
|
|
|
|
|
|
|
// タブが非表示またはスクロール位置が最上部ではないならタイトルで通知
|
|
|
|
if (document.hidden || !self.isScrollTop()) {
|
|
|
|
self.$store.commit('pushBehindNote', note);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
|
2018-06-05 14:36:21 +02:00
|
|
|
props: {
|
2019-05-20 20:07:11 +02:00
|
|
|
pagination: {
|
2019-02-18 01:17:55 +01:00
|
|
|
required: true
|
2019-05-20 20:07:11 +02:00
|
|
|
},
|
|
|
|
extract: {
|
|
|
|
required: false
|
2018-06-05 14:36:21 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
2019-05-20 20:07:11 +02:00
|
|
|
notes() {
|
|
|
|
return this.extract ? this.extract(this.items) : this.items;
|
|
|
|
},
|
|
|
|
|
2018-06-05 14:36:21 +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;
|
2018-11-08 19:44:35 +01:00
|
|
|
note._datetext = this.$t('@.month-and-day').replace('{month}', month.toString()).replace('{day}', date.toString());
|
2018-06-05 14:36:21 +02:00
|
|
|
return note;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-06-05 15:54:03 +02:00
|
|
|
created() {
|
2018-06-05 18:54:24 +02:00
|
|
|
this.column.$on('top', this.onTop);
|
|
|
|
this.column.$on('bottom', this.onBottom);
|
2019-02-18 01:17:55 +01:00
|
|
|
this.init();
|
2018-06-05 15:54:03 +02:00
|
|
|
},
|
|
|
|
|
2018-06-05 14:36:21 +02:00
|
|
|
beforeDestroy() {
|
2018-06-05 18:54:24 +02:00
|
|
|
this.column.$off('top', this.onTop);
|
|
|
|
this.column.$off('bottom', this.onBottom);
|
2018-06-05 14:36:21 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
focus() {
|
2018-10-19 08:03:23 +02: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-06-05 14:36:21 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 08:34:34 +02:00
|
|
|
.eamppglmnmimdhrlzhplwpvyeaqmmhxu
|
2018-06-05 14:36:21 +02:00
|
|
|
.transition
|
|
|
|
.mk-notes-enter
|
|
|
|
.mk-notes-leave-to
|
|
|
|
opacity 0
|
|
|
|
transform translateY(-30px)
|
|
|
|
|
|
|
|
> *
|
|
|
|
transition transform .3s ease, opacity .3s ease
|
|
|
|
|
2019-02-20 16:30:53 +01:00
|
|
|
> .empty
|
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color var(--text)
|
|
|
|
|
2018-10-14 03:16:02 +02:00
|
|
|
> .placeholder
|
|
|
|
padding 16px
|
|
|
|
opacity 0.3
|
|
|
|
|
2018-06-21 04:37:18 +02:00
|
|
|
> .notes
|
2018-06-05 14:36:21 +02:00
|
|
|
> .date
|
|
|
|
display block
|
|
|
|
margin 0
|
2018-10-23 02:41:28 +02:00
|
|
|
line-height 28px
|
2018-10-18 23:18:33 +02:00
|
|
|
font-size 12px
|
2018-06-05 14:36:21 +02:00
|
|
|
text-align center
|
2018-09-27 09:49:18 +02:00
|
|
|
color var(--dateDividerFg)
|
|
|
|
background var(--dateDividerBg)
|
2018-12-30 06:00:57 +01:00
|
|
|
border-bottom solid var(--lineWidth) var(--faceDivider)
|
2018-06-05 14:36:21 +02:00
|
|
|
|
|
|
|
span
|
|
|
|
margin 0 16px
|
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
[data-icon]
|
2018-06-05 14:36:21 +02:00
|
|
|
margin-right 8px
|
|
|
|
|
|
|
|
> footer
|
|
|
|
> button
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 16px
|
|
|
|
width 100%
|
|
|
|
text-align center
|
|
|
|
color #ccc
|
2018-09-26 13:28:13 +02:00
|
|
|
background var(--face)
|
2018-12-30 06:00:57 +01:00
|
|
|
border-top solid var(--lineWidth) var(--faceDivider)
|
2018-06-05 14:36:21 +02:00
|
|
|
border-bottom-left-radius 6px
|
|
|
|
border-bottom-right-radius 6px
|
|
|
|
|
|
|
|
&:hover
|
2018-09-28 08:34:34 +02:00
|
|
|
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.05)
|
2018-06-05 14:36:21 +02:00
|
|
|
|
|
|
|
&:active
|
2018-09-28 08:34:34 +02:00
|
|
|
box-shadow 0 0 0 100px inset rgba(0, 0, 0, 0.1)
|
2018-06-05 14:36:21 +02:00
|
|
|
|
|
|
|
</style>
|