diff options
| author | Henry Jameson <spam@hjkos.com> | 2022-06-16 16:30:05 +0300 |
|---|---|---|
| committer | Henry Jameson <spam@hjkos.com> | 2022-06-16 16:48:10 +0300 |
| commit | d84cda7009d486a047953b1ca2d27acf35b8ddc1 (patch) | |
| tree | ae8e48736095f22ce66cf7cd71fc9cc391a9c542 /src/components/notification/notification.vue | |
| parent | 770d12f7adda5659ff01b83ad3e172c27bae818d (diff) | |
unify user popovers into a separate component
Diffstat (limited to 'src/components/notification/notification.vue')
| -rw-r--r-- | src/components/notification/notification.vue | 36 |
1 files changed, 11 insertions, 25 deletions
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index a44481c9..6427d117 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -36,32 +36,18 @@ :href="$router.resolve(userProfileLink).href" @click.prevent > - <Popover - trigger="click" - popover-class="popover-default user-popover" - :overlay-centers="true" - overlay-centers-selector=".user-info-avatar-link .Avatar" + <UserPopover + :userId="notification.from_profile.id" + :overlayCenters="true" > - <template v-slot:trigger> - <UserAvatar - class="post-avatar" - :bot="botIndicator" - :compact="true" - :better-shadow="betterShadow" - :user="notification.from_profile" - /> - </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> + <UserAvatar + class="post-avatar" + :bot="botIndicator" + :compact="true" + :better-shadow="betterShadow" + :user="notification.from_profile" + /> + </UserPopover> </a> <div class="notification-right"> <span class="notification-details"> |
