Merge branch 'scrolltotop' into shigusegubu-vue3
* scrolltotop: only mark as read if closed intentionally fix notifications use a bit more compact layout on mobile Update dependency eslint-plugin-vue to v9.4.0
This commit is contained in:
commit
b3318471c3
9 changed files with 111 additions and 33 deletions
|
@ -78,7 +78,7 @@
|
||||||
"eslint-plugin-import": "2.26.0",
|
"eslint-plugin-import": "2.26.0",
|
||||||
"eslint-plugin-n": "15.2.5",
|
"eslint-plugin-n": "15.2.5",
|
||||||
"eslint-plugin-promise": "6.0.0",
|
"eslint-plugin-promise": "6.0.0",
|
||||||
"eslint-plugin-vue": "9.3.0",
|
"eslint-plugin-vue": "9.4.0",
|
||||||
"eslint-webpack-plugin": "3.2.0",
|
"eslint-webpack-plugin": "3.2.0",
|
||||||
"eventsource-polyfill": "0.9.6",
|
"eventsource-polyfill": "0.9.6",
|
||||||
"express": "4.18.1",
|
"express": "4.18.1",
|
||||||
|
|
|
@ -30,7 +30,7 @@ const MobileNav = {
|
||||||
created () {
|
created () {
|
||||||
this.notificationsCloseGesture = GestureService.swipeGesture(
|
this.notificationsCloseGesture = GestureService.swipeGesture(
|
||||||
GestureService.DIRECTION_RIGHT,
|
GestureService.DIRECTION_RIGHT,
|
||||||
this.closeMobileNotifications,
|
() => this.closeMobileNotifications(true),
|
||||||
50
|
50
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
@ -61,12 +61,14 @@ const MobileNav = {
|
||||||
openMobileNotifications () {
|
openMobileNotifications () {
|
||||||
this.notificationsOpen = true
|
this.notificationsOpen = true
|
||||||
},
|
},
|
||||||
closeMobileNotifications () {
|
closeMobileNotifications (markRead) {
|
||||||
if (this.notificationsOpen) {
|
if (this.notificationsOpen) {
|
||||||
// make sure to mark notifs seen only when the notifs were open and not
|
// make sure to mark notifs seen only when the notifs were open and not
|
||||||
// from close-calls.
|
// from close-calls.
|
||||||
this.notificationsOpen = false
|
this.notificationsOpen = false
|
||||||
this.markNotificationsAsSeen()
|
if (markRead) {
|
||||||
|
this.markNotificationsAsSeen()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
notificationsTouchStart (e) {
|
notificationsTouchStart (e) {
|
||||||
|
|
|
@ -48,15 +48,15 @@
|
||||||
>
|
>
|
||||||
<div class="mobile-notifications-header">
|
<div class="mobile-notifications-header">
|
||||||
<span class="title">{{ $t('notifications.notifications') }}</span>
|
<span class="title">{{ $t('notifications.notifications') }}</span>
|
||||||
<a
|
<button
|
||||||
class="mobile-nav-button"
|
class="button-unstyled mobile-nav-button"
|
||||||
@click.stop.prevent="closeMobileNotifications()"
|
@click.stop.prevent="closeMobileNotifications(true)"
|
||||||
>
|
>
|
||||||
<FAIcon
|
<FAIcon
|
||||||
class="fa-scale-110 fa-old-padding"
|
class="fa-scale-110 fa-old-padding"
|
||||||
icon="times"
|
icon="times"
|
||||||
/>
|
/>
|
||||||
</a>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
id="mobile-notifications"
|
id="mobile-notifications"
|
||||||
|
|
|
@ -10,11 +10,12 @@ import {
|
||||||
} from '../../services/notification_utils/notification_utils.js'
|
} from '../../services/notification_utils/notification_utils.js'
|
||||||
import FaviconService from '../../services/favicon_service/favicon_service.js'
|
import FaviconService from '../../services/favicon_service/favicon_service.js'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import { faCircleNotch, faCircleUp } from '@fortawesome/free-solid-svg-icons'
|
import { faCircleNotch, faArrowUp, faMinus } from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
faCircleNotch,
|
faCircleNotch,
|
||||||
faCircleUp
|
faArrowUp,
|
||||||
|
faMinus
|
||||||
)
|
)
|
||||||
|
|
||||||
const DEFAULT_SEEN_TO_DISPLAY_COUNT = 30
|
const DEFAULT_SEEN_TO_DISPLAY_COUNT = 30
|
||||||
|
@ -97,9 +98,13 @@ const Notifications = {
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.scrollerRef = this.$refs.root.closest('.column.-scrollable')
|
this.scrollerRef = this.$refs.root.closest('.column.-scrollable')
|
||||||
|
if (!this.scrollerRef) {
|
||||||
|
this.scrollerRef = this.$refs.root.closest('.mobile-notifications')
|
||||||
|
}
|
||||||
this.scrollerRef.addEventListener('scroll', this.updateScrollPosition)
|
this.scrollerRef.addEventListener('scroll', this.updateScrollPosition)
|
||||||
},
|
},
|
||||||
unmounted () {
|
unmounted () {
|
||||||
|
if (!this.scrollerRef) return
|
||||||
this.scrollerRef.removeEventListener('scroll', this.updateScrollPosition)
|
this.scrollerRef.removeEventListener('scroll', this.updateScrollPosition)
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -111,6 +116,16 @@ const Notifications = {
|
||||||
FaviconService.clearFaviconBadge()
|
FaviconService.clearFaviconBadge()
|
||||||
this.$store.dispatch('setPageTitle', '')
|
this.$store.dispatch('setPageTitle', '')
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
teleportTarget () {
|
||||||
|
// handle scroller change
|
||||||
|
this.scrollerRef.removeEventListener('scroll', this.updateScrollPosition)
|
||||||
|
this.scrollerRef = this.$refs.root.closest('.column.-scrollable')
|
||||||
|
if (!this.scrollerRef) {
|
||||||
|
this.scrollerRef = this.$refs.root.closest('.mobile-notifications')
|
||||||
|
}
|
||||||
|
this.scrollerRef.addEventListener('scroll', this.updateScrollPosition)
|
||||||
|
this.updateScrollPosition()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
@ -26,7 +26,13 @@
|
||||||
type="button"
|
type="button"
|
||||||
@click="scrollToTop"
|
@click="scrollToTop"
|
||||||
>
|
>
|
||||||
<FAIcon icon="circle-up" />
|
<FALayers class="fa-scale-110 fa-old-padding-layer">
|
||||||
|
<FAIcon icon="arrow-up" />
|
||||||
|
<FAIcon
|
||||||
|
icon="minus"
|
||||||
|
transform="up-7"
|
||||||
|
/>
|
||||||
|
</FALayers>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
v-if="unseenCount"
|
v-if="unseenCount"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import Status from '../status/status.vue'
|
import Status from '../status/status.vue'
|
||||||
|
import { mapState } from 'vuex'
|
||||||
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
import timelineFetcher from '../../services/timeline_fetcher/timeline_fetcher.service.js'
|
||||||
import Conversation from '../conversation/conversation.vue'
|
import Conversation from '../conversation/conversation.vue'
|
||||||
import TimelineMenu from '../timeline_menu/timeline_menu.vue'
|
import TimelineMenu from '../timeline_menu/timeline_menu.vue'
|
||||||
|
@ -6,11 +7,15 @@ import QuickFilterSettings from '../quick_filter_settings/quick_filter_settings.
|
||||||
import QuickViewSettings from '../quick_view_settings/quick_view_settings.vue'
|
import QuickViewSettings from '../quick_view_settings/quick_view_settings.vue'
|
||||||
import { debounce, throttle, keyBy } from 'lodash'
|
import { debounce, throttle, keyBy } from 'lodash'
|
||||||
import { library } from '@fortawesome/fontawesome-svg-core'
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
||||||
import { faCircleNotch, faCog } from '@fortawesome/free-solid-svg-icons'
|
import { faCircleNotch, faCirclePlus, faCog, faMinus, faArrowUp, faCheck } from '@fortawesome/free-solid-svg-icons'
|
||||||
|
|
||||||
library.add(
|
library.add(
|
||||||
faCircleNotch,
|
faCircleNotch,
|
||||||
faCog
|
faCog,
|
||||||
|
faMinus,
|
||||||
|
faArrowUp,
|
||||||
|
faCirclePlus,
|
||||||
|
faCheck
|
||||||
)
|
)
|
||||||
|
|
||||||
const Timeline = {
|
const Timeline = {
|
||||||
|
@ -88,7 +93,10 @@ const Timeline = {
|
||||||
},
|
},
|
||||||
virtualScrollingEnabled () {
|
virtualScrollingEnabled () {
|
||||||
return this.$store.getters.mergedConfig.virtualScrolling
|
return this.$store.getters.mergedConfig.virtualScrolling
|
||||||
}
|
},
|
||||||
|
...mapState({
|
||||||
|
mobileLayout: state => state.interface.layoutType === 'mobile',
|
||||||
|
})
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
const store = this.$store
|
const store = this.$store
|
||||||
|
|
|
@ -1,10 +1,26 @@
|
||||||
@import '../../_variables.scss';
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
.Timeline {
|
.Timeline {
|
||||||
|
.alert-dot {
|
||||||
|
border-radius: 100%;
|
||||||
|
height: 8px;
|
||||||
|
width: 8px;
|
||||||
|
position: absolute;
|
||||||
|
left: calc(50% - 4px);
|
||||||
|
top: calc(50% - 4px);
|
||||||
|
margin-left: 6px;
|
||||||
|
margin-top: -6px;
|
||||||
|
background-color: var(--cBlue);
|
||||||
|
}
|
||||||
|
|
||||||
.loadmore-text {
|
.loadmore-text {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.loadmore-button {
|
||||||
|
position: relative
|
||||||
|
}
|
||||||
|
|
||||||
&.-blocked {
|
&.-blocked {
|
||||||
cursor: progress;
|
cursor: progress;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,22 +11,53 @@
|
||||||
type="button"
|
type="button"
|
||||||
@click="scrollToTop"
|
@click="scrollToTop"
|
||||||
>
|
>
|
||||||
<FAIcon icon="circle-up" />
|
<FALayers class="fa-scale-110 fa-old-padding-layer">
|
||||||
|
<FAIcon icon="arrow-up" />
|
||||||
|
<FAIcon
|
||||||
|
icon="minus"
|
||||||
|
transform="up-7"
|
||||||
|
/>
|
||||||
|
</FALayers>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<template v-if="mobileLayout">
|
||||||
v-if="showLoadButton"
|
<button
|
||||||
class="button-default loadmore-button"
|
v-if="showLoadButton"
|
||||||
@click.prevent="showNewStatuses"
|
class="button-unstyled loadmore-button"
|
||||||
>
|
@click.prevent="showNewStatuses"
|
||||||
{{ loadButtonString }}
|
>
|
||||||
</button>
|
<FAIcon
|
||||||
<div
|
fixed-width
|
||||||
v-else-if="!embedded"
|
icon="circle-plus"
|
||||||
class="loadmore-text faint"
|
/>
|
||||||
@click.prevent
|
<div class="alert-dot" />
|
||||||
>
|
</button>
|
||||||
{{ $t('timeline.up_to_date') }}
|
<div
|
||||||
</div>
|
v-else-if="!embedded"
|
||||||
|
class="loadmore-text faint"
|
||||||
|
@click.prevent
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
fixed-width
|
||||||
|
icon="check"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<button
|
||||||
|
v-if="showLoadButton"
|
||||||
|
class="button-default loadmore-button"
|
||||||
|
@click.prevent="showNewStatuses"
|
||||||
|
>
|
||||||
|
{{ loadButtonString }}
|
||||||
|
</button>
|
||||||
|
<div
|
||||||
|
v-else-if="!embedded"
|
||||||
|
class="loadmore-text faint"
|
||||||
|
@click.prevent
|
||||||
|
>
|
||||||
|
{{ $t('timeline.up_to_date') }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<QuickFilterSettings v-if="!embedded" />
|
<QuickFilterSettings v-if="!embedded" />
|
||||||
<QuickViewSettings v-if="!embedded" />
|
<QuickViewSettings v-if="!embedded" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -3893,10 +3893,10 @@ eslint-plugin-promise@6.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.0.0.tgz#017652c07c9816413a41e11c30adc42c3d55ff18"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.0.0.tgz#017652c07c9816413a41e11c30adc42c3d55ff18"
|
||||||
integrity sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==
|
integrity sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==
|
||||||
|
|
||||||
eslint-plugin-vue@9.3.0:
|
eslint-plugin-vue@9.4.0:
|
||||||
version "9.3.0"
|
version "9.4.0"
|
||||||
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.3.0.tgz#c3f5ce515dae387e062428725c5cf96098d9da0b"
|
resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.4.0.tgz#31c2d9002b5bb437b351a5feffdf37c4397e5cb9"
|
||||||
integrity sha512-iscKKkBZgm6fGZwFt6poRoWC0Wy2dQOlwUPW++CiPoQiw1enctV2Hj5DBzzjJZfyqs+FAXhgzL4q0Ww03AgSmQ==
|
integrity sha512-Nzz2QIJ8FG+rtJaqT/7/ru5ie2XgT9KCudkbN0y3uFYhQ41nuHEaboLAiqwMcK006hZPQv/rVMRhUIwEGhIvfQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
eslint-utils "^3.0.0"
|
eslint-utils "^3.0.0"
|
||||||
natural-compare "^1.4.0"
|
natural-compare "^1.4.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue