Remove unread timeline and fix scroll position in public

This commit is contained in:
AkiraFukushima 2021-07-25 21:01:12 +09:00
parent 804ce36a1f
commit 5d7bc9f9dd
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
5 changed files with 51 additions and 66 deletions

View File

@ -117,8 +117,7 @@ let state = (): PublicState => {
return { return {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [], timeline: []
unreadTimeline: []
} }
} }
@ -180,7 +179,6 @@ describe('Home', () => {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [status1], timeline: [status1],
unreadTimeline: [],
showReblogs: true, showReblogs: true,
showReplies: true showReplies: true
} }

View File

@ -136,8 +136,7 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [status2, status1], timeline: [status2, status1]
unreadTimeline: []
} }
}) })
it('should be deleted', () => { it('should be deleted', () => {
@ -151,8 +150,7 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [status2, rebloggedStatus], timeline: [status2, rebloggedStatus]
unreadTimeline: []
} }
}) })
it('should be deleted', () => { it('should be deleted', () => {
@ -169,14 +167,12 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [status2, status1], timeline: [status2, status1]
unreadTimeline: []
} }
}) })
it('should be updated timeline', () => { it('should be updated timeline', () => {
Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus) Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus)
expect(state.timeline).toEqual([rebloggedStatus, status2, status1]) expect(state.timeline).toEqual([rebloggedStatus, status2, status1])
expect(state.unreadTimeline).toEqual([])
}) })
}) })
@ -185,14 +181,12 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: true, heading: true,
timeline: [rebloggedStatus, status2, status1], timeline: [rebloggedStatus, status2, status1]
unreadTimeline: []
} }
}) })
it('should not be updated timeline', () => { it('should not be updated timeline', () => {
Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus) Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus)
expect(state.timeline).toEqual([rebloggedStatus, status2, status1]) expect(state.timeline).toEqual([rebloggedStatus, status2, status1])
expect(state.unreadTimeline).toEqual([])
}) })
}) })
}) })
@ -203,14 +197,12 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: false, heading: false,
timeline: [status2, status1], timeline: [status2, status1]
unreadTimeline: []
} }
}) })
it('should be updated timeline', () => { it('should be updated timeline', () => {
Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus) Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus)
expect(state.timeline).toEqual([status2, status1]) expect(state.timeline).toEqual([rebloggedStatus, status2, status1])
expect(state.unreadTimeline).toEqual([rebloggedStatus])
}) })
}) })
@ -219,14 +211,12 @@ describe('TimelineSpace/Contents/Local', () => {
state = { state = {
lazyLoading: false, lazyLoading: false,
heading: false, heading: false,
timeline: [rebloggedStatus, status2, status1], timeline: [rebloggedStatus, status2, status1]
unreadTimeline: []
} }
}) })
it('should not be updated timeline', () => { it('should not be updated timeline', () => {
Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus) Public.mutations![MUTATION_TYPES.APPEND_TIMELINE](state, rebloggedStatus)
expect(state.timeline).toEqual([rebloggedStatus, status2, status1]) expect(state.timeline).toEqual([rebloggedStatus, status2, status1])
expect(state.unreadTimeline).toEqual([])
}) })
}) })
}) })

View File

@ -1,8 +1,7 @@
<template> <template>
<div id="public" v-shortkey="shortcutEnabled ? { next: ['j'] } : {}" @shortkey="handleKey"> <div id="public" v-shortkey="shortcutEnabled ? { next: ['j'] } : {}" @shortkey="handleKey">
<div class="unread">{{ unread.length > 0 ? unread.length : '' }}</div>
<div v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }" @shortkey="reload()"></div> <div v-shortkey="{ linux: ['ctrl', 'r'], mac: ['meta', 'r'] }" @shortkey="reload()"></div>
<DynamicScroller :items="timeline" :min-item-size="60" id="scroller" class="scroller" ref="scroller"> <DynamicScroller :items="timeline" :min-item-size="86" id="scroller" class="scroller" ref="scroller">
<template v-slot="{ item, index, active }"> <template v-slot="{ item, index, active }">
<DynamicScrollerItem :item="item" :active="active" :size-dependencies="[item.uri]" :data-index="index" :watchData="true"> <DynamicScrollerItem :item="item" :active="active" :size-dependencies="[item.uri]" :data-index="index" :watchData="true">
<toot <toot
@ -32,6 +31,7 @@ import { mapState, mapGetters } from 'vuex'
import Toot from '~/src/renderer/components/organisms/Toot' import Toot from '~/src/renderer/components/organisms/Toot'
import reloadable from '~/src/renderer/components/mixins/reloadable' import reloadable from '~/src/renderer/components/mixins/reloadable'
import { Event } from '~/src/renderer/components/event' import { Event } from '~/src/renderer/components/event'
import { ScrollPosition } from '~/src/renderer/components/utils/scroll'
export default { export default {
name: 'public', name: 'public',
@ -39,15 +39,15 @@ export default {
mixins: [reloadable], mixins: [reloadable],
data() { data() {
return { return {
focusedId: null focusedId: null,
scroll: null
} }
}, },
computed: { computed: {
...mapState('TimelineSpace/Contents/Public', { ...mapState('TimelineSpace/Contents/Public', {
timeline: state => state.timeline, timeline: state => state.timeline,
lazyLoading: state => state.lazyLoading, lazyLoading: state => state.lazyLoading,
heading: state => state.heading, heading: state => state.heading
unread: state => state.unreadTimeline
}), }),
...mapState({ ...mapState({
openSideBar: state => state.TimelineSpace.Contents.SideBar.openSideBar, openSideBar: state => state.TimelineSpace.Contents.SideBar.openSideBar,
@ -87,11 +87,24 @@ export default {
this.focusedId = previousFocusedId this.focusedId = previousFocusedId
}) })
}) })
const el = document.getElementById('scroller')
this.scroll = new ScrollPosition(el)
this.scroll.prepare()
}, },
beforeUpdate() { beforeUpdate() {
if (this.$store.state.TimelineSpace.SideMenu.unreadPublicTimeline && this.heading) { if (this.$store.state.TimelineSpace.SideMenu.unreadPublicTimeline && this.heading) {
this.$store.commit('TimelineSpace/SideMenu/changeUnreadPublicTimeline', false) this.$store.commit('TimelineSpace/SideMenu/changeUnreadPublicTimeline', false)
} }
if (!this.heading) {
const el = document.getElementById('scroller')
this.scroll = new ScrollPosition(el)
this.scroll.prepare()
}
},
updated() {
if (this.scroll && !this.heading) {
this.scroll.restore()
}
}, },
beforeDestroy() { beforeDestroy() {
if (!this.unreadNotification.public) { if (!this.unreadNotification.public) {
@ -102,7 +115,6 @@ export default {
}, },
destroyed() { destroyed() {
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true) this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
this.$store.commit('TimelineSpace/Contents/Public/archiveTimeline') this.$store.commit('TimelineSpace/Contents/Public/archiveTimeline')
if (!this.unreadNotification.public) { if (!this.unreadNotification.public) {
this.$store.commit('TimelineSpace/Contents/Public/clearTimeline') this.$store.commit('TimelineSpace/Contents/Public/clearTimeline')
@ -125,7 +137,6 @@ export default {
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false) this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false)
} else if (newState === null && !this.heading) { } else if (newState === null && !this.heading) {
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true) this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
} }
} }
}, },
@ -158,17 +169,12 @@ export default {
}) })
}) })
} }
// for unread control
if (event.target.scrollTop > 5 && this.heading) { if (event.target.scrollTop > 10 && this.heading) {
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false) this.$store.commit('TimelineSpace/Contents/Public/changeHeading', false)
} else if (event.target.scrollTop <= 5 && !this.heading) { } else if (event.target.scrollTop <= 10 && !this.heading) {
const currentPos = this.unread.length
if (currentPos === 0) {
this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true) this.$store.commit('TimelineSpace/Contents/Public/changeHeading', true)
} }
this.$store.commit('TimelineSpace/Contents/Public/mergeTimeline')
this.$refs.scroller.scrollToItem(currentPos)
}
}, },
async reload() { async reload() {
this.$store.commit('TimelineSpace/changeLoading', true) this.$store.commit('TimelineSpace/changeLoading', true)
@ -225,21 +231,6 @@ export default {
height: 100%; height: 100%;
} }
.unread {
position: fixed;
right: 24px;
top: 48px;
background-color: rgba(0, 0, 0, 0.7);
color: #ffffff;
padding: 4px 8px;
border-radius: 0 0 2px 2px;
z-index: 1;
&:empty {
display: none;
}
}
.loading-card { .loading-card {
height: 60px; height: 60px;
} }

View File

@ -35,3 +35,21 @@ export default function scrollTop (element, point = 0) {
const easeOut = function (p) { const easeOut = function (p) {
return p * (2 - p) return p * (2 - p)
} }
export class ScrollPosition {
node = null
previousScrollHeightMinusTop = 0
constructor(node) {
this.node = node
this.previousScrollHeightMinusTop = 0
}
prepare() {
this.previousScrollHeightMinusTop = this.node.scrollHeight - this.node.scrollTop
}
restore() {
this.node.scrollTop = this.node.scrollHeight - this.previousScrollHeightMinusTop
}
}

View File

@ -4,14 +4,12 @@ import { RootState } from '@/store'
export type PublicState = { export type PublicState = {
timeline: Array<Entity.Status> timeline: Array<Entity.Status>
unreadTimeline: Array<Entity.Status>
lazyLoading: boolean lazyLoading: boolean
heading: boolean heading: boolean
} }
const state = (): PublicState => ({ const state = (): PublicState => ({
timeline: [], timeline: [],
unreadTimeline: [],
lazyLoading: false, lazyLoading: false,
heading: true heading: true
}) })
@ -20,7 +18,6 @@ export const MUTATION_TYPES = {
CHANGE_HEADING: 'changeHeading', CHANGE_HEADING: 'changeHeading',
APPEND_TIMELINE: 'appendTimeline', APPEND_TIMELINE: 'appendTimeline',
UPDATE_TIMELINE: 'updateTimeline', UPDATE_TIMELINE: 'updateTimeline',
MERGE_TIMELINE: 'mergeTimeline',
INSERT_TIMELINE: 'insertTimeline', INSERT_TIMELINE: 'insertTimeline',
ARCHIVE_TIMELINE: 'archiveTimeline', ARCHIVE_TIMELINE: 'archiveTimeline',
CLEAR_TIMELINE: 'clearTimeline', CLEAR_TIMELINE: 'clearTimeline',
@ -35,21 +32,13 @@ const mutations: MutationTree<PublicState> = {
}, },
[MUTATION_TYPES.APPEND_TIMELINE]: (state, update: Entity.Status) => { [MUTATION_TYPES.APPEND_TIMELINE]: (state, update: Entity.Status) => {
// Reject duplicated status in timeline // Reject duplicated status in timeline
if (!state.timeline.find(item => item.id === update.id) && !state.unreadTimeline.find(item => item.id === update.id)) { if (!state.timeline.find(item => item.id === update.id)) {
if (state.heading) {
state.timeline = [update].concat(state.timeline) state.timeline = [update].concat(state.timeline)
} else {
state.unreadTimeline = [update].concat(state.unreadTimeline)
}
} }
}, },
[MUTATION_TYPES.UPDATE_TIMELINE]: (state, messages: Array<Entity.Status>) => { [MUTATION_TYPES.UPDATE_TIMELINE]: (state, messages: Array<Entity.Status>) => {
state.timeline = messages state.timeline = messages
}, },
[MUTATION_TYPES.MERGE_TIMELINE]: state => {
state.timeline = state.unreadTimeline.slice(0, 80).concat(state.timeline)
state.unreadTimeline = []
},
[MUTATION_TYPES.INSERT_TIMELINE]: (state, messages: Array<Entity.Status>) => { [MUTATION_TYPES.INSERT_TIMELINE]: (state, messages: Array<Entity.Status>) => {
state.timeline = state.timeline.concat(messages) state.timeline = state.timeline.concat(messages)
}, },
@ -58,7 +47,6 @@ const mutations: MutationTree<PublicState> = {
}, },
[MUTATION_TYPES.CLEAR_TIMELINE]: state => { [MUTATION_TYPES.CLEAR_TIMELINE]: state => {
state.timeline = [] state.timeline = []
state.unreadTimeline = []
}, },
[MUTATION_TYPES.UPDATE_TOOT]: (state, message: Entity.Status) => { [MUTATION_TYPES.UPDATE_TOOT]: (state, message: Entity.Status) => {
state.timeline = state.timeline.map(toot => { state.timeline = state.timeline.map(toot => {