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

409 lines
11 KiB
Vue
Raw Normal View History

<template>
2022-04-18 15:41:52 +02:00
<div
id="notifications"
v-shortkey="shortcutEnabled ? { next: ['j'] } : {}"
@shortkey="handleKey"
>
<div
v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }"
@shortkey="reload()"
></div>
<DynamicScroller
:items="handledNotifications"
:min-item-size="20"
id="scroller"
class="scroller"
ref="scroller"
>
<template v-slot="{ item, index, active }">
<template v-if="item.id === 'loading-card'">
2022-04-18 15:41:52 +02:00
<DynamicScrollerItem
:item="item"
:active="active"
:size-dependencies="[item.id]"
:data-index="index"
:watchData="true"
>
<StatusLoading
:since_id="item.since_id"
:max_id="item.max_id"
:loading="loadingMore"
@load_since="fetchNotificationsSince"
/>
</DynamicScrollerItem>
</template>
<template v-else>
2022-04-18 15:41:52 +02:00
<DynamicScrollerItem
:item="item"
:active="active"
:size-dependencies="[item.url]"
:data-index="index"
:watchData="true"
>
<notification
:message="item"
:focused="item.id === focusedId"
:overlaid="modalOpened"
:filters="filters"
v-on:update="updateToot"
@focusNext="focusNext"
@focusPrev="focusPrev"
@focusRight="focusSidebar"
@selectNotification="focusNotification(item)"
>
</notification>
</DynamicScrollerItem>
</template>
</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 Notification from '~/src/renderer/components/organisms/Notification'
import StatusLoading from '~/src/renderer/components/organisms/StatusLoading'
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'
export default {
data() {
return {
focusedId: null,
scrollPosition: null,
observer: null,
scrollTime: null,
resizeTime: null,
2022-04-18 15:41:52 +02:00
loadingMore: false,
ElIconArrowUp,
}
},
2022-04-18 15:41:52 +02:00
name: 'notifications',
components: { Notification, StatusLoading },
mixins: [reloadable],
computed: {
...mapState({
2022-04-18 15:41:52 +02:00
openSideBar: (state) => state.TimelineSpace.Contents.SideBar.openSideBar,
startReload: (state) => state.TimelineSpace.HeaderMenu.reload,
backgroundColor: (state) => state.App.theme.background_color,
}),
...mapState('TimelineSpace/Contents/Notifications', {
2022-04-18 15:41:52 +02:00
notifications: (state) => state.notifications,
lazyLoading: (state) => state.lazyLoading,
heading: (state) => state.heading,
scrolling: (state) => state.scrolling,
}),
2022-04-18 15:41:52 +02:00
...mapGetters('TimelineSpace/Contents/Notifications', [
'handledNotifications',
'filters',
]),
...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 notifications are deleted, so perhaps focused notification don't exist.
2022-04-18 15:41:52 +02:00
const currentIndex = this.handledNotifications.findIndex(
(notification) => this.focusedId === notification.id
)
return currentIndex === -1
2022-04-18 15:41:52 +02:00
},
},
mounted() {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/SideMenu/changeUnreadNotifications',
false
)
this.$store.dispatch('TimelineSpace/Contents/Notifications/resetBadge')
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
})
})
if (this.heading && this.handledNotifications.length > 0) {
this.$store.dispatch('TimelineSpace/Contents/Notifications/saveMarker')
}
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.loadingMore ||
(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() {
2022-04-18 15:41:52 +02:00
if (
this.$store.state.TimelineSpace.SideMenu.unreadNotifications &&
this.heading
) {
this.$store.commit(
'TimelineSpace/SideMenu/changeUnreadNotifications',
false
)
}
if (this.scrollPosition) {
this.scrollPosition.prepare()
}
},
beforeDestroy() {
Event.$off('focus-timeline')
this.observer.disconnect()
},
destroyed() {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/changeHeading',
true
)
this.$store.commit(
'TimelineSpace/Contents/Notifications/archiveNotifications'
)
if (
document.getElementById('scroller') !== undefined &&
document.getElementById('scroller') !== null
) {
document
.getElementById('scroller')
.removeEventListener('scroll', this.onScroll)
document.getElementById('scroller').scrollTop = 0
}
},
2018-06-27 14:13:18 +02:00
watch: {
2020-08-20 15:38:30 +02:00
startReload: function (newState, oldState) {
2018-06-27 14:13:18 +02:00
if (!oldState && newState) {
this.reload().finally(() => {
this.$store.commit('TimelineSpace/HeaderMenu/changeReload', false)
})
2018-06-27 14:13:18 +02:00
}
},
2020-08-20 15:38:30 +02:00
focusedId: function (newState, _oldState) {
if (newState >= 0 && this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/changeHeading',
false
)
} else if (newState === null && !this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/changeHeading',
true
)
this.$store.dispatch('TimelineSpace/Contents/Notifications/resetBadge')
}
},
notifications: function (newState, _oldState) {
if (this.heading && newState.length > 0) {
this.$store.dispatch('TimelineSpace/Contents/Notifications/saveMarker')
}
2022-04-18 15:41:52 +02:00
},
2018-06-27 14:13:18 +02:00
},
methods: {
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/Notifications/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/Notifications/lazyFetchNotifications',
this.handledNotifications[this.handledNotifications.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/Notifications/changeScrolling',
true
)
setTimeout(() => {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/changeScrolling',
false
)
}, 500)
}
})
.catch(() => {
this.$message({
2018-08-13 08:27:53 +02:00
message: this.$t('message.notification_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/Notifications/changeHeading',
false
)
} else if (event.target.scrollTop <= 10 && !this.heading) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/changeHeading',
true
)
this.$store.dispatch('TimelineSpace/Contents/Notifications/resetBadge')
this.$store.dispatch('TimelineSpace/Contents/Notifications/saveMarker')
}
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/Notifications/changeScrolling',
false
)
}
}, 150)
},
fetchNotificationsSince(since_id) {
this.loadingMore = true
2022-04-18 15:41:52 +02:00
this.$store
.dispatch(
'TimelineSpace/Contents/Notifications/fetchNotificationsSince',
since_id
)
.finally(() => {
setTimeout(() => {
this.loadingMore = false
}, 500)
})
},
async reload() {
this.$store.commit('TimelineSpace/changeLoading', true)
try {
await this.reloadable()
this.$store.dispatch('TimelineSpace/Contents/Notifications/resetBadge')
} finally {
this.$store.commit('TimelineSpace/changeLoading', false)
}
},
updateToot(message) {
2022-04-18 15:41:52 +02:00
this.$store.commit(
'TimelineSpace/Contents/Notifications/updateToot',
message
)
2019-03-14 17:02:10 +01:00
},
upper() {
this.$refs.scroller.scrollToItem(0)
this.focusedId = null
},
focusNext() {
2022-04-18 15:41:52 +02:00
const currentIndex = this.handledNotifications.findIndex(
(notification) => this.focusedId === notification.id
)
if (currentIndex === -1) {
this.focusedId = this.handledNotifications[0].id
} else if (currentIndex < this.handledNotifications.length) {
this.focusedId = this.handledNotifications[currentIndex + 1].id
}
},
focusPrev() {
2022-04-18 15:41:52 +02:00
const currentIndex = this.handledNotifications.findIndex(
(notification) => this.focusedId === notification.id
)
if (currentIndex === 0) {
this.focusedId = null
} else if (currentIndex > 0) {
this.focusedId = this.handledNotifications[currentIndex - 1].id
}
},
focusNotification(notification) {
this.focusedId = notification.id
},
focusSidebar() {
Event.$emit('focus-sidebar')
},
handleKey(event) {
switch (event.srcKey) {
case 'next':
this.focusedId = this.handledNotifications[0].id
break
}
2022-04-18 15:41:52 +02:00
},
},
}
</script>
<style lang="scss" scoped>
#notifications {
height: 100%;
overflow: auto;
scroll-behavior: auto;
.scroller {
height: 100%;
}
.loading-card {
height: 60px;
}
.loading-card:empty {
height: 0;
}
.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>