user popovers WIP
This commit is contained in:
parent
3628fb4272
commit
7c633aa952
|
@ -34,7 +34,13 @@ const Popover = {
|
||||||
removePadding: Boolean,
|
removePadding: Boolean,
|
||||||
|
|
||||||
// self-explanatory (i hope)
|
// self-explanatory (i hope)
|
||||||
disabled: Boolean
|
disabled: Boolean,
|
||||||
|
|
||||||
|
// Instead of putting popover next to anchor, overlay popover's center on top of anchor's center
|
||||||
|
overlayCenters: Boolean,
|
||||||
|
|
||||||
|
// What selector (witin popover!) to use for determining center of popover
|
||||||
|
overlayCentersSelector: String
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
|
@ -73,7 +79,9 @@ const Popover = {
|
||||||
x: anchorScreenBox.left + anchorWidth * 0.5,
|
x: anchorScreenBox.left + anchorWidth * 0.5,
|
||||||
y: anchorScreenBox.top + anchorHeight * 0.5
|
y: anchorScreenBox.top + anchorHeight * 0.5
|
||||||
}
|
}
|
||||||
const content = this.$refs.content
|
const content = this.overlayCentersSelector
|
||||||
|
? this.$refs.content.querySelector(this.overlayCentersSelector)
|
||||||
|
: this.$refs.content
|
||||||
|
|
||||||
// Minor optimization, don't call a slow reflow call if we don't have to
|
// Minor optimization, don't call a slow reflow call if we don't have to
|
||||||
const parentScreenBox = this.boundTo &&
|
const parentScreenBox = this.boundTo &&
|
||||||
|
@ -100,6 +108,7 @@ const Popover = {
|
||||||
max: window.innerHeight - (margin.bottom || 5)
|
max: window.innerHeight - (margin.bottom || 5)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!this.overlayCenters) {
|
||||||
let horizOffset = content.offsetWidth * -0.5
|
let horizOffset = content.offsetWidth * -0.5
|
||||||
const leftBorder = origin.x + horizOffset
|
const leftBorder = origin.x + horizOffset
|
||||||
const rightBorder = origin.x - horizOffset
|
const rightBorder = origin.x - horizOffset
|
||||||
|
@ -132,12 +141,18 @@ const Popover = {
|
||||||
const xOffset = (this.offset && this.offset.x) || 0
|
const xOffset = (this.offset && this.offset.x) || 0
|
||||||
const translateX = origin.x + horizOffset + xOffset
|
const translateX = origin.x + horizOffset + xOffset
|
||||||
|
|
||||||
// Note, separate translateX and translateY avoids blurry text on chromium,
|
|
||||||
// single translate or translate3d resulted in blurry text.
|
|
||||||
this.styles = {
|
this.styles = {
|
||||||
left: `${Math.round(translateX)}px`,
|
left: `${Math.round(translateX)}px`,
|
||||||
top: `${Math.round(translateY)}px`,
|
top: `${Math.round(translateY)}px`
|
||||||
position: 'fixed'
|
}
|
||||||
|
} else {
|
||||||
|
const translateY = origin.y - content.offsetHeight
|
||||||
|
const translateX = origin.x - content.offsetWidth
|
||||||
|
|
||||||
|
this.styles = {
|
||||||
|
left: `${Math.round(translateX)}px`,
|
||||||
|
top: `${Math.round(translateY)}px`
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parentScreenBox) {
|
if (parentScreenBox) {
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
.popover {
|
.popover {
|
||||||
z-index: 90000;
|
z-index: 90000;
|
||||||
position: absolute;
|
position: fixed;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
|
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
|
||||||
box-shadow: var(--popupShadow);
|
box-shadow: var(--popupShadow);
|
||||||
|
|
|
@ -11,6 +11,7 @@ import Timeago from '../timeago/timeago.vue'
|
||||||
import StatusContent from '../status_content/status_content.vue'
|
import StatusContent from '../status_content/status_content.vue'
|
||||||
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
||||||
import StatusPopover from '../status_popover/status_popover.vue'
|
import StatusPopover from '../status_popover/status_popover.vue'
|
||||||
|
import Popover from '../popover/popover.vue'
|
||||||
import UserListPopover from '../user_list_popover/user_list_popover.vue'
|
import UserListPopover from '../user_list_popover/user_list_popover.vue'
|
||||||
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
|
import EmojiReactions from '../emoji_reactions/emoji_reactions.vue'
|
||||||
import MentionsLine from 'src/components/mentions_line/mentions_line.vue'
|
import MentionsLine from 'src/components/mentions_line/mentions_line.vue'
|
||||||
|
@ -115,7 +116,8 @@ const Status = {
|
||||||
StatusContent,
|
StatusContent,
|
||||||
RichContent,
|
RichContent,
|
||||||
MentionLink,
|
MentionLink,
|
||||||
MentionsLine
|
MentionsLine,
|
||||||
|
Popover
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'statusoid',
|
'statusoid',
|
||||||
|
|
|
@ -122,10 +122,14 @@
|
||||||
v-if="!noHeading"
|
v-if="!noHeading"
|
||||||
class="left-side"
|
class="left-side"
|
||||||
>
|
>
|
||||||
<a
|
<a :href="$router.resolve(userProfileLink).href" @click.prevent>
|
||||||
:href="$router.resolve(userProfileLink).href"
|
<Popover
|
||||||
@click.stop.prevent.capture="toggleUserExpanded"
|
trigger="click"
|
||||||
|
popover-class="popover-default user-popover"
|
||||||
|
:overlay-centers="true"
|
||||||
|
overlay-centers-selector=".user-info-avatar-link .Avatar"
|
||||||
>
|
>
|
||||||
|
<template v-slot:trigger>
|
||||||
<UserAvatar
|
<UserAvatar
|
||||||
class="post-avatar"
|
class="post-avatar"
|
||||||
:bot="botIndicator"
|
:bot="botIndicator"
|
||||||
|
@ -133,6 +137,18 @@
|
||||||
:better-shadow="betterShadow"
|
:better-shadow="betterShadow"
|
||||||
:user="status.user"
|
:user="status.user"
|
||||||
/>
|
/>
|
||||||
|
</template>
|
||||||
|
<template v-slot:content>
|
||||||
|
<UserCard
|
||||||
|
class="mention-link-popover"
|
||||||
|
:user-id="status.user.id"
|
||||||
|
:hide-bio="true"
|
||||||
|
:bordered="false"
|
||||||
|
:allow-zooming-avatar="true"
|
||||||
|
:rounded="true"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</Popover>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="right-side">
|
<div class="right-side">
|
||||||
|
|
Loading…
Reference in New Issue