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