2022-11-13 08:34:43 +03:00
|
|
|
<script setup lang="ts">
|
2023-01-08 09:21:09 +03:00
|
|
|
import type { mastodon } from 'masto'
|
2022-11-13 08:34:43 +03:00
|
|
|
|
2022-12-01 09:46:26 +03:00
|
|
|
const props = defineProps<{
|
2023-01-08 09:21:09 +03:00
|
|
|
status: mastodon.v1.Status
|
2022-11-28 13:23:33 +03:00
|
|
|
details?: boolean
|
2022-11-29 11:15:05 +03:00
|
|
|
command?: boolean
|
2022-11-13 08:34:43 +03:00
|
|
|
}>()
|
2022-11-15 15:08:49 +03:00
|
|
|
|
2022-12-14 20:20:03 +03:00
|
|
|
const focusEditor = inject<typeof noop>('focus-editor', noop)
|
2022-12-14 19:45:46 +03:00
|
|
|
|
2022-12-01 09:46:26 +03:00
|
|
|
const { details, command } = $(props)
|
2022-11-24 11:34:05 +03:00
|
|
|
|
2023-01-12 20:52:52 +03:00
|
|
|
const userSettings = useUserSettings()
|
2023-05-06 18:52:33 +03:00
|
|
|
const useStarFavoriteIcon = usePreferences('useStarFavoriteIcon')
|
2023-01-12 20:52:52 +03:00
|
|
|
|
2022-12-01 09:46:26 +03:00
|
|
|
const {
|
|
|
|
status,
|
|
|
|
isLoading,
|
2023-01-08 16:24:59 +03:00
|
|
|
canReblog,
|
2022-12-01 09:46:26 +03:00
|
|
|
toggleBookmark,
|
|
|
|
toggleFavourite,
|
|
|
|
toggleReblog,
|
|
|
|
} = $(useStatusActions(props))
|
2022-11-24 14:35:26 +03:00
|
|
|
|
2023-03-30 22:01:24 +03:00
|
|
|
function reply() {
|
2022-12-02 05:18:57 +03:00
|
|
|
if (!checkLogin())
|
|
|
|
return
|
2023-01-07 10:55:07 +03:00
|
|
|
if (details)
|
2022-12-14 20:20:03 +03:00
|
|
|
focusEditor()
|
2023-01-07 10:55:07 +03:00
|
|
|
else
|
2023-01-08 01:18:15 +03:00
|
|
|
navigateToStatus({ status, focusReply: true })
|
2022-11-24 14:35:26 +03:00
|
|
|
}
|
2022-11-13 08:34:43 +03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-17 15:55:36 +03:00
|
|
|
<div flex justify-between items-center class="status-actions">
|
2022-11-27 18:11:34 +03:00
|
|
|
<div flex-1>
|
2022-11-26 02:46:25 +03:00
|
|
|
<StatusActionButton
|
2022-11-30 02:25:29 +03:00
|
|
|
:content="$t('action.reply')"
|
2023-01-26 15:41:43 +03:00
|
|
|
:text="!getPreferences(userSettings, 'hideReplyCount') && status.repliesCount || ''"
|
2023-03-19 15:24:27 +03:00
|
|
|
color="text-blue" hover="text-blue" elk-group-hover="bg-blue/10"
|
2023-01-08 12:03:23 +03:00
|
|
|
icon="i-ri:chat-1-line"
|
2022-11-29 11:15:05 +03:00
|
|
|
:command="command"
|
2022-11-28 13:23:33 +03:00
|
|
|
@click="reply"
|
2023-01-02 00:45:46 +03:00
|
|
|
>
|
2023-01-26 15:41:43 +03:00
|
|
|
<template v-if="status.repliesCount && !getPreferences(userSettings, 'hideReplyCount')" #text>
|
2023-01-09 14:24:26 +03:00
|
|
|
<CommonLocalizedNumber
|
|
|
|
keypath="action.reply_count"
|
|
|
|
:count="status.repliesCount"
|
|
|
|
/>
|
2023-01-02 00:45:46 +03:00
|
|
|
</template>
|
|
|
|
</StatusActionButton>
|
2022-11-27 18:11:34 +03:00
|
|
|
</div>
|
2022-11-24 11:34:05 +03:00
|
|
|
|
2022-11-27 18:11:34 +03:00
|
|
|
<div flex-1>
|
2022-11-24 11:34:05 +03:00
|
|
|
<StatusActionButton
|
2022-11-30 02:25:29 +03:00
|
|
|
:content="$t('action.boost')"
|
2023-01-15 17:19:22 +03:00
|
|
|
:text="!getPreferences(userSettings, 'hideBoostCount') && status.reblogsCount ? status.reblogsCount : ''"
|
2023-03-19 15:24:27 +03:00
|
|
|
color="text-green" hover="text-green" elk-group-hover="bg-green/10"
|
2022-11-24 11:34:05 +03:00
|
|
|
icon="i-ri:repeat-line"
|
|
|
|
active-icon="i-ri:repeat-fill"
|
2023-08-11 14:56:47 +03:00
|
|
|
inactive-icon="i-tabler:repeat-off"
|
2023-01-05 19:48:20 +03:00
|
|
|
:active="!!status.reblogged"
|
2023-01-08 16:24:59 +03:00
|
|
|
:disabled="isLoading.reblogged || !canReblog"
|
2022-11-29 11:15:05 +03:00
|
|
|
:command="command"
|
2022-11-24 11:34:05 +03:00
|
|
|
@click="toggleReblog()"
|
2023-01-02 00:45:46 +03:00
|
|
|
>
|
2023-01-15 17:19:22 +03:00
|
|
|
<template v-if="status.reblogsCount && !getPreferences(userSettings, 'hideBoostCount')" #text>
|
2023-01-09 14:24:26 +03:00
|
|
|
<CommonLocalizedNumber
|
|
|
|
keypath="action.boost_count"
|
|
|
|
:count="status.reblogsCount"
|
|
|
|
/>
|
2023-01-02 00:45:46 +03:00
|
|
|
</template>
|
|
|
|
</StatusActionButton>
|
2022-11-27 18:11:34 +03:00
|
|
|
</div>
|
2022-11-24 11:34:05 +03:00
|
|
|
|
2022-11-27 18:11:34 +03:00
|
|
|
<div flex-1>
|
2022-11-24 11:34:05 +03:00
|
|
|
<StatusActionButton
|
2022-11-30 02:25:29 +03:00
|
|
|
:content="$t('action.favourite')"
|
2023-01-15 17:19:22 +03:00
|
|
|
:text="!getPreferences(userSettings, 'hideFavoriteCount') && status.favouritesCount ? status.favouritesCount : ''"
|
2023-05-06 18:52:33 +03:00
|
|
|
:color="useStarFavoriteIcon ? 'text-yellow' : 'text-rose'"
|
|
|
|
:hover="useStarFavoriteIcon ? 'text-yellow' : 'text-rose'"
|
|
|
|
:elk-group-hover="useStarFavoriteIcon ? 'bg-yellow/10' : 'bg-rose/10'"
|
|
|
|
:icon="useStarFavoriteIcon ? 'i-ri:star-line' : 'i-ri:heart-3-line'"
|
|
|
|
:active-icon="useStarFavoriteIcon ? 'i-ri:star-fill' : 'i-ri:heart-3-fill'"
|
2023-01-05 19:48:20 +03:00
|
|
|
:active="!!status.favourited"
|
2022-11-24 11:34:05 +03:00
|
|
|
:disabled="isLoading.favourited"
|
2022-11-29 11:15:05 +03:00
|
|
|
:command="command"
|
2022-11-24 11:34:05 +03:00
|
|
|
@click="toggleFavourite()"
|
2023-01-02 00:45:46 +03:00
|
|
|
>
|
2023-01-15 17:19:22 +03:00
|
|
|
<template v-if="status.favouritesCount && !getPreferences(userSettings, 'hideFavoriteCount')" #text>
|
2023-01-09 14:24:26 +03:00
|
|
|
<CommonLocalizedNumber
|
|
|
|
keypath="action.favourite_count"
|
|
|
|
:count="status.favouritesCount"
|
|
|
|
/>
|
2023-01-02 00:45:46 +03:00
|
|
|
</template>
|
|
|
|
</StatusActionButton>
|
2022-11-27 18:11:34 +03:00
|
|
|
</div>
|
2022-11-24 11:34:05 +03:00
|
|
|
|
2022-11-27 18:11:34 +03:00
|
|
|
<div flex-none>
|
2022-11-24 08:04:20 +03:00
|
|
|
<StatusActionButton
|
2022-11-30 02:25:29 +03:00
|
|
|
:content="$t('action.bookmark')"
|
2023-05-06 18:52:33 +03:00
|
|
|
:color="useStarFavoriteIcon ? 'text-rose' : 'text-yellow'"
|
|
|
|
:hover="useStarFavoriteIcon ? 'text-rose' : 'text-yellow'"
|
|
|
|
:elk-group-hover="useStarFavoriteIcon ? 'bg-rose/10' : 'bg-yellow/10' "
|
2022-11-24 11:34:05 +03:00
|
|
|
icon="i-ri:bookmark-line"
|
|
|
|
active-icon="i-ri:bookmark-fill"
|
2023-01-05 19:48:20 +03:00
|
|
|
:active="!!status.bookmarked"
|
2022-11-24 11:34:05 +03:00
|
|
|
:disabled="isLoading.bookmarked"
|
2022-11-29 11:15:05 +03:00
|
|
|
:command="command"
|
2022-11-24 11:34:05 +03:00
|
|
|
@click="toggleBookmark()"
|
2022-11-24 08:04:20 +03:00
|
|
|
/>
|
2022-11-27 18:11:34 +03:00
|
|
|
</div>
|
2022-11-13 08:34:43 +03:00
|
|
|
</div>
|
|
|
|
</template>
|