mirror of https://github.com/elk-zone/elk.git
111 lines
3.2 KiB
Vue
111 lines
3.2 KiB
Vue
<script setup lang="ts">
|
|
import type { mastodon } from 'masto'
|
|
|
|
const props = defineProps<{
|
|
status: mastodon.v1.Status
|
|
details?: boolean
|
|
command?: boolean
|
|
}>()
|
|
|
|
const focusEditor = inject<typeof noop>('focus-editor', noop)
|
|
|
|
const { details, command } = $(props)
|
|
|
|
const userSettings = useUserSettings()
|
|
|
|
const {
|
|
status,
|
|
isLoading,
|
|
canReblog,
|
|
toggleBookmark,
|
|
toggleFavourite,
|
|
toggleReblog,
|
|
} = $(useStatusActions(props))
|
|
|
|
const reply = () => {
|
|
if (!checkLogin())
|
|
return
|
|
if (details)
|
|
focusEditor()
|
|
else
|
|
navigateToStatus({ status, focusReply: true })
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div flex justify-between items-center class="status-actions">
|
|
<div flex-1>
|
|
<StatusActionButton
|
|
:content="$t('action.reply')"
|
|
:text="!getPreferences(userSettings, 'hideReplyCount') && status.repliesCount || ''"
|
|
color="text-blue" hover="text-blue" group-hover="bg-blue/10"
|
|
icon="i-ri:chat-1-line"
|
|
:command="command"
|
|
@click="reply"
|
|
>
|
|
<template v-if="status.repliesCount && !getPreferences(userSettings, 'hideReplyCount')" #text>
|
|
<CommonLocalizedNumber
|
|
keypath="action.reply_count"
|
|
:count="status.repliesCount"
|
|
/>
|
|
</template>
|
|
</StatusActionButton>
|
|
</div>
|
|
|
|
<div flex-1>
|
|
<StatusActionButton
|
|
:content="$t('action.boost')"
|
|
:text="!getPreferences(userSettings, 'hideBoostCount') && status.reblogsCount ? 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 || !canReblog"
|
|
:command="command"
|
|
@click="toggleReblog()"
|
|
>
|
|
<template v-if="status.reblogsCount && !getPreferences(userSettings, 'hideBoostCount')" #text>
|
|
<CommonLocalizedNumber
|
|
keypath="action.boost_count"
|
|
:count="status.reblogsCount"
|
|
/>
|
|
</template>
|
|
</StatusActionButton>
|
|
</div>
|
|
|
|
<div flex-1>
|
|
<StatusActionButton
|
|
:content="$t('action.favourite')"
|
|
:text="!getPreferences(userSettings, 'hideFavoriteCount') && status.favouritesCount ? status.favouritesCount : ''"
|
|
color="text-rose" hover="text-rose" group-hover="bg-rose/10"
|
|
icon="i-ri:heart-3-line"
|
|
active-icon="i-ri:heart-3-fill"
|
|
:active="!!status.favourited"
|
|
:disabled="isLoading.favourited"
|
|
:command="command"
|
|
@click="toggleFavourite()"
|
|
>
|
|
<template v-if="status.favouritesCount && !getPreferences(userSettings, 'hideFavoriteCount')" #text>
|
|
<CommonLocalizedNumber
|
|
keypath="action.favourite_count"
|
|
:count="status.favouritesCount"
|
|
/>
|
|
</template>
|
|
</StatusActionButton>
|
|
</div>
|
|
|
|
<div flex-none>
|
|
<StatusActionButton
|
|
:content="$t('action.bookmark')"
|
|
color="text-yellow" hover="text-yellow" group-hover="bg-yellow/10"
|
|
icon="i-ri:bookmark-line"
|
|
active-icon="i-ri:bookmark-fill"
|
|
:active="!!status.bookmarked"
|
|
:disabled="isLoading.bookmarked"
|
|
:command="command"
|
|
@click="toggleBookmark()"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|