aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_popover/user_popover.js
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2022-07-31 17:57:32 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2022-07-31 17:57:32 +0000
commit33ad712852088f8b99a82ec561733d41d63b0034 (patch)
tree75eea24b29b4204b57e38aec8223e91a1f1526fe /src/components/user_popover/user_popover.js
parent0b88c56aa674ad19be7e7e883a3687ec89569940 (diff)
parent36aae1635ad370ecf4d22ae6d62cbbba6af19fd3 (diff)
Merge branch 'disjointed-popovers' into 'develop'
Disjointed popovers See merge request pleroma/pleroma-fe!1540
Diffstat (limited to 'src/components/user_popover/user_popover.js')
-rw-r--r--src/components/user_popover/user_popover.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/components/user_popover/user_popover.js b/src/components/user_popover/user_popover.js
new file mode 100644
index 00000000..69b25383
--- /dev/null
+++ b/src/components/user_popover/user_popover.js
@@ -0,0 +1,23 @@
+import UserCard from '../user_card/user_card.vue'
+import { defineAsyncComponent } from 'vue'
+
+const UserPopover = {
+ name: 'UserPopover',
+ props: [
+ 'userId', 'overlayCenters', 'disabled', 'overlayCentersSelector'
+ ],
+ components: {
+ UserCard,
+ Popover: defineAsyncComponent(() => import('../popover/popover.vue'))
+ },
+ computed: {
+ userPopoverZoom () {
+ return this.$store.getters.mergedConfig.userPopoverZoom
+ },
+ userPopoverOverlay () {
+ return this.$store.getters.mergedConfig.userPopoverOverlay
+ }
+ }
+}
+
+export default UserPopover