feat: add tooltip for status action
This commit is contained in:
parent
b947931d3b
commit
6b3a14cf1e
16
components/common/CommonTooltip.vue
Normal file
16
components/common/CommonTooltip.vue
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<VTooltip
|
||||||
|
v-bind="$attrs"
|
||||||
|
>
|
||||||
|
<slot />
|
||||||
|
<template #popper>
|
||||||
|
<div text-3>
|
||||||
|
<slot name="popper" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</VTooltip>
|
||||||
|
</template>
|
37
components/status/StatusActionButton.vue
Normal file
37
components/status/StatusActionButton.vue
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
defineProps<{
|
||||||
|
text?: string | number
|
||||||
|
color: string
|
||||||
|
icon: string
|
||||||
|
activeIcon: string
|
||||||
|
tooltip: string
|
||||||
|
hover: string
|
||||||
|
groupHover: string
|
||||||
|
active?: boolean
|
||||||
|
disabled?: boolean
|
||||||
|
}>()
|
||||||
|
|
||||||
|
defineOptions({
|
||||||
|
inheritAttrs: false,
|
||||||
|
})
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<CommonTooltip placement="bottom">
|
||||||
|
<button
|
||||||
|
flex gap-1 items-center rounded :hover="`op100 ${hover}`" group
|
||||||
|
:class="active ? [color, 'op100'] : 'op50'"
|
||||||
|
v-bind="$attrs"
|
||||||
|
>
|
||||||
|
<div rounded-full p2 :group-hover="groupHover">
|
||||||
|
<div :class="[active && activeIcon ? activeIcon : icon, { 'pointer-events-none': disabled }]" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<span v-if="text">{{ text }}</span>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<template #popper>
|
||||||
|
{{ tooltip }}
|
||||||
|
</template>
|
||||||
|
</CommonTooltip>
|
||||||
|
</template>
|
|
@ -37,45 +37,53 @@ const toggleBookmark = () => toggleStatusAction(
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div flex justify-between gap-8>
|
<div flex justify-between gap-8>
|
||||||
<RouterLink flex gap-1 items-center rounded op50 hover="op100 text-blue" group :to="getStatusPath(status)">
|
<RouterLink :to="getStatusPath(status)">
|
||||||
<div rounded-full p2 group-hover="bg-blue/10">
|
<StatusActionButton
|
||||||
<div i-ri:chat-3-line />
|
:text="status.repliesCount"
|
||||||
</div>
|
color="text-blue" hover="text-blue" group-hover="bg-blue/10"
|
||||||
<span v-if="status.repliesCount">{{ status.repliesCount }}</span>
|
icon="i-ri:chat-3-line"
|
||||||
|
tooltip="Replay"
|
||||||
|
/>
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
<button
|
|
||||||
flex gap-1 items-center rounded op50 hover="op100 text-green" group
|
<StatusActionButton
|
||||||
:class="(status.reblogged ? 'text-green op100' : 'op50') + (isLoading.reblogged ? ' pointer-events-none' : '')"
|
:text="status.reblogsCount"
|
||||||
|
color="text-green" hover="text-green" group-hover="bg-green/10"
|
||||||
|
icon="i-ri:repeat-line"
|
||||||
|
active-icon="i-ri:repeat-fill"
|
||||||
|
:active="status.reblogged"
|
||||||
|
:disabled="isLoading.reblogged"
|
||||||
|
tooltip="Boost"
|
||||||
@click="toggleReblog()"
|
@click="toggleReblog()"
|
||||||
>
|
/>
|
||||||
<div rounded-full p2 group-hover="bg-green/10">
|
|
||||||
<div :class="status.reblogged ? 'i-ri:repeat-fill' : 'i-ri:repeat-line'" />
|
<StatusActionButton
|
||||||
</div>
|
:text="status.favouritesCount"
|
||||||
<span v-if="status.reblogsCount">{{ status.reblogsCount }}</span>
|
color="text-rose" hover="text-rose" group-hover="bg-rose/10"
|
||||||
</button>
|
icon="i-ri:heart-3-line"
|
||||||
<button
|
active-icon="i-ri:heart-3-fill"
|
||||||
flex gap-1 items-center rounded hover="op100 text-rose" group
|
:active="status.favourited"
|
||||||
:class="status.favourited ? 'text-rose op100' : 'op50'"
|
:disabled="isLoading.favourited"
|
||||||
|
tooltip="Favourite"
|
||||||
@click="toggleFavourite()"
|
@click="toggleFavourite()"
|
||||||
>
|
/>
|
||||||
<div rounded-full p2 group-hover="bg-rose/10">
|
|
||||||
<div :class="(status.favourited ? 'i-ri:heart-3-fill' : 'i-ri:heart-3-line') + (isLoading.favourited ? ' pointer-events-none' : '')" />
|
<StatusActionButton
|
||||||
</div>
|
color="text-yellow" hover="text-yellow" group-hover="bg-yellow/10"
|
||||||
<span v-if="status.favouritesCount">{{ status.favouritesCount }}</span>
|
icon="i-ri:bookmark-line"
|
||||||
</button>
|
active-icon="i-ri:bookmark-fill"
|
||||||
<button
|
:active="status.bookmarked"
|
||||||
flex gap-1 items-center rounded hover="op100 text-yellow" group
|
:disabled="isLoading.bookmarked"
|
||||||
:class="status.bookmarked ? 'text-yellow op100' : 'op50'"
|
tooltip="Bookmark"
|
||||||
@click="toggleBookmark()"
|
@click="toggleBookmark()"
|
||||||
>
|
/>
|
||||||
<div rounded-full p2 group-hover="bg-rose/10">
|
|
||||||
<div :class="(status.bookmarked ? 'i-ri:bookmark-fill' : 'i-ri:bookmark-line') + (isLoading.bookmarked ? ' pointer-events-none' : '')" />
|
<!-- <VDropdown>
|
||||||
</div>
|
<button flex gap-1 items-center rounded op50 hover="op100 text-purple" group>
|
||||||
</button>
|
<div rounded-full p2 group-hover="bg-purple/10">
|
||||||
<!-- <button flex gap-1 items-center rounded op50 hover="op100 text-purple" group>
|
<div i-ri:share-circle-line />
|
||||||
<div rounded-full p2 group-hover="bg-purple/10">
|
</div>
|
||||||
<div i-ri:share-circle-line />
|
</button>
|
||||||
</div>
|
</VDropdown> -->
|
||||||
</button> -->
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
"blurhash": "^2.0.4",
|
"blurhash": "^2.0.4",
|
||||||
"eslint": "^8.27.0",
|
"eslint": "^8.27.0",
|
||||||
"esno": "^0.16.3",
|
"esno": "^0.16.3",
|
||||||
|
"floating-vue": "2.0.0-beta.20",
|
||||||
"form-data": "^4.0.0",
|
"form-data": "^4.0.0",
|
||||||
"fs-extra": "^10.1.0",
|
"fs-extra": "^10.1.0",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
|
|
7
plugins/floating-vue.ts
Normal file
7
plugins/floating-vue.ts
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import FloatingVue from 'floating-vue'
|
||||||
|
import { defineNuxtPlugin } from '#app'
|
||||||
|
import 'floating-vue/dist/style.css'
|
||||||
|
|
||||||
|
export default defineNuxtPlugin((nuxtApp) => {
|
||||||
|
nuxtApp.vueApp.use(FloatingVue)
|
||||||
|
})
|
|
@ -17,6 +17,7 @@ specifiers:
|
||||||
blurhash: ^2.0.4
|
blurhash: ^2.0.4
|
||||||
eslint: ^8.27.0
|
eslint: ^8.27.0
|
||||||
esno: ^0.16.3
|
esno: ^0.16.3
|
||||||
|
floating-vue: 2.0.0-beta.20
|
||||||
form-data: ^4.0.0
|
form-data: ^4.0.0
|
||||||
fs-extra: ^10.1.0
|
fs-extra: ^10.1.0
|
||||||
js-yaml: ^4.1.0
|
js-yaml: ^4.1.0
|
||||||
|
@ -50,6 +51,7 @@ devDependencies:
|
||||||
blurhash: 2.0.4
|
blurhash: 2.0.4
|
||||||
eslint: 8.27.0
|
eslint: 8.27.0
|
||||||
esno: 0.16.3
|
esno: 0.16.3
|
||||||
|
floating-vue: 2.0.0-beta.20
|
||||||
form-data: 4.0.0
|
form-data: 4.0.0
|
||||||
fs-extra: 10.1.0
|
fs-extra: 10.1.0
|
||||||
js-yaml: 4.1.0
|
js-yaml: 4.1.0
|
||||||
|
@ -660,6 +662,16 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@floating-ui/core/0.3.1:
|
||||||
|
resolution: {integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/@floating-ui/dom/0.1.10:
|
||||||
|
resolution: {integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==}
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/core': 0.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@humanwhocodes/config-array/0.11.7:
|
/@humanwhocodes/config-array/0.11.7:
|
||||||
resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==}
|
resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==}
|
||||||
engines: {node: '>=10.10.0'}
|
engines: {node: '>=10.10.0'}
|
||||||
|
@ -3952,6 +3964,15 @@ packages:
|
||||||
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
|
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/floating-vue/2.0.0-beta.20:
|
||||||
|
resolution: {integrity: sha512-N68otcpp6WwcYC7zP8GeJqNZVdfvS7tEY88lwmuAHeqRgnfWx1Un8enzLxROyVnBDZ3TwUoUdj5IFg+bUT7JeA==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: ^3.2.0
|
||||||
|
dependencies:
|
||||||
|
'@floating-ui/dom': 0.1.10
|
||||||
|
vue-resize: 2.0.0-alpha.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/follow-redirects/1.15.2:
|
/follow-redirects/1.15.2:
|
||||||
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
|
resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==}
|
||||||
engines: {node: '>=4.0'}
|
engines: {node: '>=4.0'}
|
||||||
|
@ -7587,6 +7608,12 @@ packages:
|
||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/vue-resize/2.0.0-alpha.1:
|
||||||
|
resolution: {integrity: sha512-7+iqOueLU7uc9NrMfrzbG8hwMqchfVfSzpVlCMeJQe4pyibqyoifDNbKTZvwxZKDvGkB+PdFeKvnGZMoEb8esg==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: ^3.0.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/vue-router/4.1.6_vue@3.2.45:
|
/vue-router/4.1.6_vue@3.2.45:
|
||||||
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
|
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
|
|
Loading…
Reference in a new issue