mirror of https://github.com/elk-zone/elk.git
89 lines
2.3 KiB
TypeScript
89 lines
2.3 KiB
TypeScript
import type { Status } from 'masto'
|
|
|
|
type Action = 'reblogged' | 'favourited' | 'bookmarked' | 'pinned' | 'muted'
|
|
type CountField = 'reblogsCount' | 'favouritesCount'
|
|
|
|
export interface StatusActionsProps {
|
|
status: Status
|
|
}
|
|
|
|
export function useStatusActions(props: StatusActionsProps) {
|
|
let status = $ref<Status>({ ...props.status })
|
|
const masto = useMasto()
|
|
|
|
watch(
|
|
() => props.status,
|
|
val => status = { ...val },
|
|
{ deep: true, immediate: true },
|
|
)
|
|
|
|
// Use different states to let the user press different actions right after the other
|
|
const isLoading = $ref({
|
|
reblogged: false,
|
|
favourited: false,
|
|
bookmarked: false,
|
|
pinned: false,
|
|
translation: false,
|
|
muted: false,
|
|
})
|
|
|
|
async function toggleStatusAction(action: Action, fetchNewStatus: () => Promise<Status>, countField?: CountField) {
|
|
// check login
|
|
if (!checkLogin())
|
|
return
|
|
isLoading[action] = true
|
|
fetchNewStatus().then((newStatus) => {
|
|
Object.assign(status, newStatus)
|
|
cacheStatus(newStatus, undefined, true)
|
|
}).finally(() => {
|
|
isLoading[action] = false
|
|
})
|
|
// Optimistic update
|
|
status[action] = !status[action]
|
|
cacheStatus(status, undefined, true)
|
|
if (countField)
|
|
status[countField] += status[action] ? 1 : -1
|
|
}
|
|
const toggleReblog = () => toggleStatusAction(
|
|
'reblogged',
|
|
() => masto.statuses[status.reblogged ? 'unreblog' : 'reblog'](status.id).then((res) => {
|
|
if (status.reblogged)
|
|
// returns the original status
|
|
return res.reblog!
|
|
return res
|
|
}),
|
|
'reblogsCount',
|
|
)
|
|
|
|
const toggleFavourite = () => toggleStatusAction(
|
|
'favourited',
|
|
() => masto.statuses[status.favourited ? 'unfavourite' : 'favourite'](status.id),
|
|
'favouritesCount',
|
|
)
|
|
|
|
const toggleBookmark = () => toggleStatusAction(
|
|
'bookmarked',
|
|
() => masto.statuses[status.bookmarked ? 'unbookmark' : 'bookmark'](status.id),
|
|
)
|
|
|
|
const togglePin = async () => toggleStatusAction(
|
|
'pinned',
|
|
() => masto.statuses[status.pinned ? 'unpin' : 'pin'](status.id),
|
|
)
|
|
|
|
const toggleMute = async () => toggleStatusAction(
|
|
'muted',
|
|
() => masto.statuses[status.muted ? 'unmute' : 'mute'](status.id),
|
|
)
|
|
|
|
return {
|
|
status: $$(status),
|
|
isLoading: $$(isLoading),
|
|
toggleMute,
|
|
toggleReblog,
|
|
toggleFavourite,
|
|
toggleBookmark,
|
|
togglePin,
|
|
}
|
|
}
|