Whalebird-desktop-client-ma.../src/renderer/components/TimelineSpace/Contents/Lists/Show.vue

421 lines
12 KiB
Vue
Raw Normal View History

<template>
2022-04-18 15:41:52 +02:00
<div
name="list"
class="list-timeline"
v-shortkey="shortcutEnabled ? { next: ['j'] } : {}"
@shortkey="handleKey"
>
<div
v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }"
@shortkey="reload()"
></div>
<DynamicScroller
:items="timeline"
:min-item-size="86"
id="scroller"
class="scroller"
ref="scroller"
>
<template v-slot="{ item, index, active }">
2022-04-18 15:41:52 +02:00
<DynamicScrollerItem
:item="item"
:active="active"
:size-dependencies="[item.uri]"
:data-index="index"
:watchData="true"
>
<toot
:message="item"
:focused="item.uri + item.id === focusedId"
:overlaid="modalOpened"
:filters="[]"
v-on:update="updateToot"
v-on:delete="deleteToot"
@focusNext="focusNext"
@focusPrev="focusPrev"
@focusRight="focusSidebar"
@selectToot="focusToot(item)"
@sizeChanged="sizeChanged"
>
</toot>
</DynamicScrollerItem>
</template>
</DynamicScroller>
2022-04-18 15:41:52 +02:00
<div
:class="openSideBar ? 'upper-with-side-bar' : 'upper'"
v-show="!heading"
>
<el-button type="primary" :icon="ElIconArrowUp" @click="upper" circle>
</el-button>
</div>
</div>
</template>
<script>
2022-04-18 15:41:52 +02:00
import { ArrowUp as ElIconArrowUp } from '@element-plus/icons'
import { mapState, mapGetters } from 'vuex'
import moment from 'moment'
import Toot from '~/src/renderer/components/organisms/Toot'
2018-11-04 06:33:47 +01:00
import reloadable from '~/src/renderer/components/mixins/reloadable'
import { Event } from '~/src/renderer/components/event'
import { ScrollPosition } from '~/src/renderer/components/utils/scroll'
2018-04-09 14:10:25 +02:00
export default {
data() {
return {
focusedId: null,
scrollPosition: null,
observer: null,
scrollTime: null,
2022-04-18 15:41:52 +02:00
resizeTime: null,
ElIconArrowUp,
}
},
2022-04-18 15:41:52 +02:00
name: 'list',
props: ['list_id'],
components: { Toot },
mixins: [reloadable],
2018-04-09 14:10:25 +02:00
computed: {
...mapState({
2022-04-18 15:41:52 +02:00
openSideBar: (state) => state.TimelineSpace.Contents.SideBar.openSideBar,
backgroundColor: (state) => state.App.theme.background_color,
startReload: (state) => state.TimelineSpace.HeaderMenu.reload,
timeline: (state) => state.TimelineSpace.Contents.Lists.Show.timeline,
lazyLoading: (state) =>
state.TimelineSpace.Contents.Lists.Show.lazyLoading,
heading: (state) => state.TimelineSpace.Contents.Lists.Show.heading,
scrolling: (state) => state.TimelineSpace.Contents.Lists.Show.scrolling,
}),
...mapGetters('TimelineSpace/Modals', ['modalOpened']),
2020-08-20 15:38:30 +02:00
shortcutEnabled: function () {
if (this.modalOpened) {
return false
}
if (!this.focusedId) {
return true
}
// Sometimes toots are deleted, so perhaps focused toot don't exist.
2022-04-18 15:41:52 +02:00
const currentIndex = this.timeline.findIndex(
(toot) => this.focusedId === toot.uri + toot.id
)
return currentIndex === -1
2022-04-18 15:41:52 +02:00
},
2018-04-09 14:10:25 +02:00
},
created() {
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
this.load().finally(() => {
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
})
2018-04-09 14:10:25 +02:00
},
mounted() {
2022-04-18 15:41:52 +02:00
document
.getElementById('scroller')
.addEventListener('scroll', this.onScroll)
Event.$on('focus-timeline', () => {
// If focusedId does not change, we have to refresh focusedId because Toot component watch change events.
const previousFocusedId = this.focusedId
this.focusedId = 0
2020-08-20 15:38:30 +02:00
this.$nextTick(function () {
this.focusedId = previousFocusedId
})
})
const el = document.getElementById('scroller')
this.scrollPosition = new ScrollPosition(el)
this.scrollPosition.prepare()
this.observer = new ResizeObserver(() => {
2022-04-18 15:41:52 +02:00
if (
this.scrollPosition &&
!this.heading &&
!this.lazyLoading &&
!this.scrolling
) {
this.resizeTime = moment()
this.scrollPosition.restore()
}
})
2022-04-18 15:41:52 +02:00
const scrollWrapper = el.getElementsByClassName(
'vue-recycle-scroller__item-wrapper'
)[0]
this.observer.observe(scrollWrapper)
},
beforeUpdate() {
if (this.scrollPosition) {
this.scrollPosition.prepare()
}
},
2018-04-09 14:10:25 +02:00
watch: {
2020-08-20 15:38:30 +02:00
list_id: function () {
this.$store.commit('TimelineSpace/Contents/changeLoading', true)
this.load().finally(() => {
this.$store.commit('TimelineSpace/Contents/changeLoading', false)
})
},
2020-08-20 15:38:30 +02:00
startReload: function (newState, oldState) {
if (!oldState && newState) {
this.reload().finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
}
},
2020-08-20 15:38:30 +02:00
focusedId: function (newState, _oldState) {
2018-08-22 05:57:39 +02:00
if (newState && this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeHeading',
false
)
} else if (newState === null && !this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeHeading',
true
)
}
2022-04-18 15:41:52 +02:00
},
2018-04-09 14:10:25 +02:00
},
beforeDestroy() {
2018-06-16 08:33:52 +02:00
this.$store.dispatch('TimelineSpace/Contents/Lists/Show/stopStreaming')
this.observer.disconnect()
},
destroyed() {
2018-06-16 08:33:52 +02:00
this.$store.commit('TimelineSpace/Contents/Lists/Show/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Lists/Show/archiveTimeline')
this.$store.commit('TimelineSpace/Contents/Lists/Show/clearTimeline')
2022-04-18 15:41:52 +02:00
if (
document.getElementById('scroller') !== undefined &&
document.getElementById('scroller') !== null
) {
document
.getElementById('scroller')
.removeEventListener('scroll', this.onScroll)
document.getElementById('scroller').scrollTop = 0
}
},
2018-04-09 14:10:25 +02:00
methods: {
async load() {
2022-04-18 15:41:52 +02:00
await this.$store.dispatch(
'TimelineSpace/Contents/Lists/Show/stopStreaming'
)
try {
2022-04-18 15:41:52 +02:00
await this.$store.dispatch(
'TimelineSpace/Contents/Lists/Show/fetchTimeline',
this.list_id
)
} catch (err) {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.timeline_fetch_error'),
2022-04-18 15:41:52 +02:00
type: 'error',
2018-04-09 14:10:25 +02:00
})
}
2022-04-18 15:41:52 +02:00
this.$store
.dispatch(
'TimelineSpace/Contents/Lists/Show/startStreaming',
this.list_id
)
.catch(() => {
this.$message({
message: this.$t('message.start_streaming_error'),
type: 'error',
})
2018-04-09 14:10:25 +02:00
})
return 'started'
},
updateToot(message) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/updateToot',
message
)
},
deleteToot(message) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/deleteToot',
message.id
)
},
onScroll(event) {
if (moment().diff(this.resizeTime) < 500) {
return
}
this.scrollTime = moment()
if (!this.scrolling) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
true
)
}
if (
2022-04-18 15:41:52 +02:00
event.target.clientHeight + event.target.scrollTop >=
document.getElementById('scroller').scrollHeight - 10 &&
!this.lazyloading
) {
this.$store
.dispatch('TimelineSpace/Contents/Lists/Show/lazyFetchTimeline', {
list_id: this.list_id,
2022-04-18 15:41:52 +02:00
status: this.timeline[this.timeline.length - 1],
})
2022-04-18 15:41:52 +02:00
.then((statuses) => {
if (statuses === null) {
return
}
if (statuses.length > 0) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
true
)
setTimeout(() => {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
false
)
}, 500)
}
})
.catch(() => {
this.$message({
message: this.$t('message.timeline_fetch_error'),
2022-04-18 15:41:52 +02:00
type: 'error',
})
})
}
if (event.target.scrollTop > 10 && this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeHeading',
false
)
} else if (event.target.scrollTop <= 10 && !this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeHeading',
true
)
}
setTimeout(() => {
const now = moment()
if (now.diff(this.scrollTime) >= 150) {
this.scrollTime = null
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
false
)
}
}, 150)
},
async reload() {
this.$store.commit('TimelineSpace/changeLoading', true)
try {
2018-11-04 06:33:47 +01:00
await this.reloadable()
2022-04-18 15:41:52 +02:00
await this.$store.dispatch(
'TimelineSpace/Contents/Lists/Show/stopStreaming'
)
await this.$store
.dispatch(
'TimelineSpace/Contents/Lists/Show/fetchTimeline',
this.list_id
)
.catch(() => {
this.$message({
message: this.$t('message.timeline_fetch_error'),
type: 'error',
})
})
2022-04-18 15:41:52 +02:00
this.$store
.dispatch(
'TimelineSpace/Contents/Lists/Show/startStreaming',
this.list_id
)
.catch(() => {
this.$message({
message: this.$t('message.start_streaming_error'),
type: 'error',
})
})
} finally {
this.$store.commit('TimelineSpace/changeLoading', false)
}
},
upper() {
this.$refs.scroller.scrollToItem(0)
2018-08-22 05:57:39 +02:00
this.focusedId = null
},
focusNext() {
2022-04-18 15:41:52 +02:00
const currentIndex = this.timeline.findIndex(
(toot) => this.focusedId === toot.uri + toot.id
)
2018-08-22 05:57:39 +02:00
if (currentIndex === -1) {
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[0].uri + this.timeline[0].id
2018-08-22 05:57:39 +02:00
} else if (currentIndex < this.timeline.length) {
2022-04-18 15:41:52 +02:00
this.focusedId =
this.timeline[currentIndex + 1].uri +
this.timeline[currentIndex + 1].id
}
},
focusPrev() {
2022-04-18 15:41:52 +02:00
const currentIndex = this.timeline.findIndex(
(toot) => this.focusedId === toot.uri + toot.id
)
2018-08-22 05:57:39 +02:00
if (currentIndex === 0) {
this.focusedId = null
} else if (currentIndex > 0) {
2022-04-18 15:41:52 +02:00
this.focusedId =
this.timeline[currentIndex - 1].uri +
this.timeline[currentIndex - 1].id
}
},
focusToot(message) {
2018-10-05 16:57:16 +02:00
this.focusedId = message.uri + message.id
},
focusSidebar() {
Event.$emit('focus-sidebar')
},
handleKey(event) {
switch (event.srcKey) {
case 'next':
2018-10-05 16:57:16 +02:00
this.focusedId = this.timeline[0].uri + this.timeline[0].id
break
}
},
sizeChanged() {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
true
)
setTimeout(() => {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Lists/Show/changeScrolling',
false
)
}, 500)
2022-04-18 15:41:52 +02:00
},
},
}
</script>
<style lang="scss" scoped>
.list-timeline {
height: 100%;
overflow: auto;
scroll-behavior: auto;
.scroller {
height: 100%;
}
.upper {
position: fixed;
bottom: 20px;
right: 20px;
}
.upper-with-side-bar {
position: fixed;
bottom: 20px;
right: calc(20px + var(--current-sidebar-width));
transition: all 0.5s;
}
}
</style>
2022-04-18 15:41:52 +02:00
2020-08-20 15:38:30 +02:00
<style lang="scss" src="@/assets/timeline-transition.scss"></style>