unify user popovers into a separate component
This commit is contained in:
parent
770d12f7ad
commit
d84cda7009
@ -16,8 +16,7 @@ const MentionLink = {
|
|||||||
name: 'MentionLink',
|
name: 'MentionLink',
|
||||||
components: {
|
components: {
|
||||||
UserAvatar,
|
UserAvatar,
|
||||||
Popover: defineAsyncComponent(() => import('../popover/popover.vue')),
|
UserPopover: defineAsyncComponent(() => import('../user_popover/user_popover.vue'))
|
||||||
UserCard: defineAsyncComponent(() => import('../user_card/user_card.vue'))
|
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
url: {
|
url: {
|
||||||
|
@ -10,84 +10,71 @@
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
v-html="content"
|
v-html="content"
|
||||||
/><!-- eslint-enable vue/no-v-html -->
|
/><!-- eslint-enable vue/no-v-html -->
|
||||||
<Popover
|
<UserPopover
|
||||||
trigger="click"
|
v-else
|
||||||
:bound-to="{ x: 'container'}"
|
:userId="user.id"
|
||||||
bound-to-selector=".column"
|
|
||||||
popover-class="popover-default mention-popover"
|
|
||||||
:disabled="!shouldShowTooltip"
|
:disabled="!shouldShowTooltip"
|
||||||
>
|
>
|
||||||
<template v-slot:trigger>
|
<span
|
||||||
<span
|
v-if="user"
|
||||||
v-if="user"
|
class="new"
|
||||||
class="new"
|
:style="style"
|
||||||
:style="style"
|
:class="classnames"
|
||||||
:class="classnames"
|
>
|
||||||
|
<a
|
||||||
|
class="short button-unstyled"
|
||||||
|
:class="{ '-with-tooltip': shouldShowTooltip }"
|
||||||
|
:href="url"
|
||||||
|
@click.prevent="onClick"
|
||||||
>
|
>
|
||||||
<a
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
class="short button-unstyled"
|
<UserAvatar
|
||||||
:class="{ '-with-tooltip': shouldShowTooltip }"
|
v-if="shouldShowAvatar"
|
||||||
:href="url"
|
class="mention-avatar"
|
||||||
@click.prevent="onClick"
|
:user="user"
|
||||||
|
/><span
|
||||||
|
class="shortName"
|
||||||
|
><FAIcon
|
||||||
|
v-if="useAtIcon"
|
||||||
|
size="sm"
|
||||||
|
icon="at"
|
||||||
|
class="at"
|
||||||
|
/>{{ !useAtIcon ? '@' : '' }}<span
|
||||||
|
class="userName"
|
||||||
|
v-html="userName"
|
||||||
|
/><span
|
||||||
|
v-if="shouldShowFullUserName"
|
||||||
|
class="serverName"
|
||||||
|
:class="{ '-faded': shouldFadeDomain }"
|
||||||
|
v-html="'@' + serverName"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-if="isYou && shouldShowYous"
|
||||||
|
:class="{ '-you': shouldBoldenYou }"
|
||||||
|
> {{ ' ' + $t('status.you') }}</span>
|
||||||
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
|
</a><span
|
||||||
|
v-if="shouldShowTooltip"
|
||||||
|
class="full"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="userNameFull"
|
||||||
>
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<UserAvatar
|
@<span
|
||||||
v-if="shouldShowAvatar"
|
|
||||||
class="mention-avatar"
|
|
||||||
:user="user"
|
|
||||||
/><span
|
|
||||||
class="shortName"
|
|
||||||
><FAIcon
|
|
||||||
v-if="useAtIcon"
|
|
||||||
size="sm"
|
|
||||||
icon="at"
|
|
||||||
class="at"
|
|
||||||
/>{{ !useAtIcon ? '@' : '' }}<span
|
|
||||||
class="userName"
|
class="userName"
|
||||||
v-html="userName"
|
v-html="userName"
|
||||||
/><span
|
/><span
|
||||||
v-if="shouldShowFullUserName"
|
|
||||||
class="serverName"
|
class="serverName"
|
||||||
:class="{ '-faded': shouldFadeDomain }"
|
:class="{ '-faded': shouldFadeDomain }"
|
||||||
v-html="'@' + serverName"
|
v-html="'@' + serverName"
|
||||||
/>
|
/>
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-if="isYou && shouldShowYous"
|
|
||||||
:class="{ '-you': shouldBoldenYou }"
|
|
||||||
> {{ ' ' + $t('status.you') }}</span>
|
|
||||||
<!-- eslint-enable vue/no-v-html -->
|
<!-- eslint-enable vue/no-v-html -->
|
||||||
</a><span
|
|
||||||
v-if="shouldShowTooltip"
|
|
||||||
class="full"
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
class="userNameFull"
|
|
||||||
>
|
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
|
||||||
@<span
|
|
||||||
class="userName"
|
|
||||||
v-html="userName"
|
|
||||||
/><span
|
|
||||||
class="serverName"
|
|
||||||
:class="{ '-faded': shouldFadeDomain }"
|
|
||||||
v-html="'@' + serverName"
|
|
||||||
/>
|
|
||||||
<!-- eslint-enable vue/no-v-html -->
|
|
||||||
</span>
|
|
||||||
</span>
|
</span>
|
||||||
</span></template>
|
</span>
|
||||||
<template v-slot:content>
|
</span>
|
||||||
<UserCard
|
</UserPopover>
|
||||||
class="mention-link-popover"
|
|
||||||
:user-id="user.id"
|
|
||||||
:hide-bio="true"
|
|
||||||
:bordered="false"
|
|
||||||
:allow-zooming-avatar="true"
|
|
||||||
:rounded="true"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</Popover>
|
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@ import UserAvatar from '../user_avatar/user_avatar.vue'
|
|||||||
import UserCard from '../user_card/user_card.vue'
|
import UserCard from '../user_card/user_card.vue'
|
||||||
import Timeago from '../timeago/timeago.vue'
|
import Timeago from '../timeago/timeago.vue'
|
||||||
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
||||||
import Popover from '../popover/popover.vue'
|
import UserPopover from '../user_popover/user_popover.vue'
|
||||||
import { isStatusNotification } from '../../services/notification_utils/notification_utils.js'
|
import { isStatusNotification } from '../../services/notification_utils/notification_utils.js'
|
||||||
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
||||||
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
||||||
@ -48,7 +48,7 @@ const Notification = {
|
|||||||
Timeago,
|
Timeago,
|
||||||
Status,
|
Status,
|
||||||
RichContent,
|
RichContent,
|
||||||
Popover
|
UserPopover
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
toggleUserExpanded () {
|
toggleUserExpanded () {
|
||||||
|
@ -36,32 +36,18 @@
|
|||||||
:href="$router.resolve(userProfileLink).href"
|
:href="$router.resolve(userProfileLink).href"
|
||||||
@click.prevent
|
@click.prevent
|
||||||
>
|
>
|
||||||
<Popover
|
<UserPopover
|
||||||
trigger="click"
|
:userId="notification.from_profile.id"
|
||||||
popover-class="popover-default user-popover"
|
:overlayCenters="true"
|
||||||
: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"
|
:compact="true"
|
||||||
:compact="true"
|
:better-shadow="betterShadow"
|
||||||
:better-shadow="betterShadow"
|
:user="notification.from_profile"
|
||||||
:user="notification.from_profile"
|
/>
|
||||||
/>
|
</UserPopover>
|
||||||
</template>
|
|
||||||
<template v-slot:content>
|
|
||||||
<UserCard
|
|
||||||
class="mention-link-popover"
|
|
||||||
:user-id="getUser(notification).id"
|
|
||||||
:hide-bio="true"
|
|
||||||
:bordered="false"
|
|
||||||
:allow-zooming-avatar="true"
|
|
||||||
:rounded="true"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</Popover>
|
|
||||||
</a>
|
</a>
|
||||||
<div class="notification-right">
|
<div class="notification-right">
|
||||||
<span class="notification-details">
|
<span class="notification-details">
|
||||||
|
@ -80,7 +80,7 @@ const Popover = {
|
|||||||
y: anchorScreenBox.top + anchorHeight * 0.5
|
y: anchorScreenBox.top + anchorHeight * 0.5
|
||||||
}
|
}
|
||||||
const content = this.$refs.content
|
const content = this.$refs.content
|
||||||
const overlayCenter = this.overlayCentersSelector
|
const overlayCenter = this.overlayCenters
|
||||||
? this.$refs.content.querySelector(this.overlayCentersSelector)
|
? this.$refs.content.querySelector(this.overlayCentersSelector)
|
||||||
: null
|
: null
|
||||||
|
|
||||||
|
@ -4,14 +4,13 @@ import ReactButton from '../react_button/react_button.vue'
|
|||||||
import RetweetButton from '../retweet_button/retweet_button.vue'
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
||||||
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
|
import ExtraButtons from '../extra_buttons/extra_buttons.vue'
|
||||||
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
||||||
import UserCard from '../user_card/user_card.vue'
|
|
||||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
||||||
import AvatarList from '../avatar_list/avatar_list.vue'
|
import AvatarList from '../avatar_list/avatar_list.vue'
|
||||||
import Timeago from '../timeago/timeago.vue'
|
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 UserPopover from '../user_popover/user_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'
|
||||||
@ -106,7 +105,6 @@ const Status = {
|
|||||||
RetweetButton,
|
RetweetButton,
|
||||||
ExtraButtons,
|
ExtraButtons,
|
||||||
PostStatusForm,
|
PostStatusForm,
|
||||||
UserCard,
|
|
||||||
UserAvatar,
|
UserAvatar,
|
||||||
AvatarList,
|
AvatarList,
|
||||||
Timeago,
|
Timeago,
|
||||||
@ -117,7 +115,7 @@ const Status = {
|
|||||||
RichContent,
|
RichContent,
|
||||||
MentionLink,
|
MentionLink,
|
||||||
MentionsLine,
|
MentionsLine,
|
||||||
Popover
|
UserPopover
|
||||||
},
|
},
|
||||||
props: [
|
props: [
|
||||||
'statusoid',
|
'statusoid',
|
||||||
|
@ -123,42 +123,21 @@
|
|||||||
class="left-side"
|
class="left-side"
|
||||||
>
|
>
|
||||||
<a :href="$router.resolve(userProfileLink).href" @click.prevent>
|
<a :href="$router.resolve(userProfileLink).href" @click.prevent>
|
||||||
<Popover
|
<UserPopover
|
||||||
trigger="click"
|
:userId="status.user.id"
|
||||||
popover-class="popover-default user-popover"
|
:overlayCenters="true"
|
||||||
: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"
|
:compact="compact"
|
||||||
:compact="compact"
|
:better-shadow="betterShadow"
|
||||||
:better-shadow="betterShadow"
|
:user="status.user"
|
||||||
:user="status.user"
|
/>
|
||||||
/>
|
</UserPopover>
|
||||||
</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">
|
||||||
<UserCard
|
|
||||||
v-if="userExpanded"
|
|
||||||
:user-id="status.user.id"
|
|
||||||
:rounded="true"
|
|
||||||
:bordered="true"
|
|
||||||
class="usercard"
|
|
||||||
/>
|
|
||||||
<div
|
<div
|
||||||
v-if="!noHeading"
|
v-if="!noHeading"
|
||||||
class="status-heading"
|
class="status-heading"
|
||||||
|
14
src/components/user_popover/user_popover.js
Normal file
14
src/components/user_popover/user_popover.js
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { defineAsyncComponent } from 'vue'
|
||||||
|
|
||||||
|
const UserPopover = {
|
||||||
|
name: 'UserPopover',
|
||||||
|
props: [
|
||||||
|
'userId', 'overlayCenters', 'disabled'
|
||||||
|
],
|
||||||
|
components: {
|
||||||
|
UserCard: defineAsyncComponent(() => import('../user_card/user_card.vue')),
|
||||||
|
Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default UserPopover
|
34
src/components/user_popover/user_popover.vue
Normal file
34
src/components/user_popover/user_popover.vue
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
<template>
|
||||||
|
<Popover
|
||||||
|
trigger="click"
|
||||||
|
popover-class="popover-default user-popover"
|
||||||
|
overlay-centers-selector=".user-info-avatar-link .Avatar"
|
||||||
|
:overlay-centers="overlayCenters"
|
||||||
|
:disabled="disabled"
|
||||||
|
>
|
||||||
|
<template v-slot:trigger>
|
||||||
|
<slot />
|
||||||
|
</template>
|
||||||
|
<template v-slot:content>
|
||||||
|
<UserCard
|
||||||
|
class="user-popover"
|
||||||
|
:user-id="userId"
|
||||||
|
:hide-bio="true"
|
||||||
|
:bordered="false"
|
||||||
|
:allow-zooming-avatar="true"
|
||||||
|
:rounded="true"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</Popover>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script src="./user_popover.js" ></script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
@import '../../_variables.scss';
|
||||||
|
|
||||||
|
/* popover styles load on-demand, so we need to override */
|
||||||
|
.user-popover.popover {
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user