elk/composables/statusDrafts.ts

95 lines
2.3 KiB
TypeScript
Raw Normal View History

2022-11-25 11:39:21 +00:00
import type { Account, Attachment, CreateStatusParams, Status } from 'masto'
2022-11-24 06:54:54 +00:00
import { STORAGE_KEY_DRAFTS } from '~/constants'
2022-11-24 09:15:58 +00:00
import type { Mutable } from '~/types/utils'
2022-11-24 06:54:54 +00:00
2022-11-24 14:32:20 +00:00
export interface Draft {
2022-11-24 11:35:26 +00:00
editingStatus?: Status
2022-11-24 14:32:20 +00:00
params: Omit<Mutable<CreateStatusParams>, 'status'> & {
status?: Exclude<CreateStatusParams['status'], null>
}
2022-11-24 06:54:54 +00:00
attachments: Attachment[]
2022-11-24 14:32:20 +00:00
}
export type DraftMap = Record<string, Draft>
2022-11-24 06:54:54 +00:00
const allDrafts = useLocalStorage<Record<string, DraftMap>>(STORAGE_KEY_DRAFTS, {})
export const currentUserDrafts = computed(() => {
2022-11-24 15:48:52 +00:00
if (!currentUser.value?.account.id)
2022-11-24 06:54:54 +00:00
return {}
const id = `${currentUser.value.account.acct}@${currentUser.value.server}`
if (!allDrafts.value[id])
allDrafts.value[id] = {}
return allDrafts.value[id]
})
2022-11-24 11:35:26 +00:00
2022-11-25 11:39:21 +00:00
export function getDefaultDraft({
status = '',
inReplyToId,
visibility = 'public',
}: Partial<Draft['params']> = {}): Draft {
2022-11-24 11:35:26 +00:00
return {
2022-11-24 14:32:20 +00:00
params: {
2022-11-25 11:39:21 +00:00
status,
2022-11-24 14:32:20 +00:00
inReplyToId,
2022-11-25 11:39:21 +00:00
visibility,
2022-11-24 14:32:20 +00:00
},
attachments: [],
2022-11-24 11:35:26 +00:00
}
}
2022-11-26 02:01:50 +00:00
export function getParamsFromStatus(status: Status): Draft['params'] {
2022-11-24 11:35:26 +00:00
return {
status: status.content,
mediaIds: status.mediaAttachments.map(att => att.id),
visibility: status.visibility,
}
}
export function useDraft(draftKey: string, inReplyToId?: string) {
const draft = computed({
get() {
2022-11-24 14:32:20 +00:00
if (!currentUserDrafts.value[draftKey])
2022-11-25 11:39:21 +00:00
currentUserDrafts.value[draftKey] = getDefaultDraft({ inReplyToId })
2022-11-24 14:32:20 +00:00
2022-11-24 11:35:26 +00:00
return currentUserDrafts.value[draftKey]
},
set(val) {
currentUserDrafts.value[draftKey] = val
},
})
const isEmpty = computed(() => {
return (draft.value.params.status ?? '').trim().length === 0
&& draft.value.attachments.length === 0
})
return { draft, isEmpty }
}
export const dialogDraft = useDraft('dialog')
2022-11-25 11:39:21 +00:00
export function mentionUser(account: Account) {
openPublishDialog(getDefaultDraft({ status: `@${account.acct} ` }))
}
export function directMessageUser(account: Account) {
openPublishDialog(getDefaultDraft({
status: `@${account.acct} `,
visibility: 'direct',
}))
}
2022-11-26 19:33:36 +00:00
export function clearUserDrafts(account?: Account) {
if (!account)
account = currentUser.value?.account
if (!account)
return
const id = `${account.acct}@${currentUser.value?.server}`
if (!allDrafts.value[id])
return
delete allDrafts.value[id]
}