elk/composables/statusDrafts.ts

108 lines
2.9 KiB
TypeScript
Raw Normal View History

2022-12-13 14:03:30 +00:00
import type { Account, Status } from 'masto'
2022-11-24 06:54:54 +00:00
import { STORAGE_KEY_DRAFTS } from '~/constants'
2022-12-13 14:03:30 +00:00
import type { Draft, DraftMap } from '~/types'
2022-11-24 06:54:54 +00:00
export const currentUserDrafts = process.server ? computed<DraftMap>(() => ({})) : useUserLocalStorage<DraftMap>(STORAGE_KEY_DRAFTS, () => ({}))
2022-11-24 11:35:26 +00:00
2022-11-29 20:45:20 +00:00
export function getDefaultDraft(options: Partial<Draft['params'] & Omit<Draft, 'params'>> = {}): Draft {
const {
status = '',
inReplyToId,
visibility = 'public',
attachments = [],
initialText = '',
2022-11-29 20:45:20 +00:00
} = options
2022-11-30 04:50:29 +00:00
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,
initialText,
2022-11-24 11:35:26 +00:00
}
}
export async function getDraftFromStatus(status: Status, text?: null | string): Promise<Draft> {
return getDefaultDraft({
status: text || await convertMastodonHTML(status.content),
2022-11-24 11:35:26 +00:00
mediaIds: status.mediaAttachments.map(att => att.id),
visibility: status.visibility,
attachments: status.mediaAttachments,
})
}
function mentionHTML(acct: string) {
return `<span data-type="mention" data-id="${acct}" contenteditable="false">@${acct}</span>`
}
export function getReplyDraft(status: Status) {
2022-12-13 13:49:22 +00:00
const accountsToMention: string[] = []
const userId = currentUser.value?.account.id
if (status.account.id !== userId)
2022-12-13 13:49:22 +00:00
accountsToMention.push(status.account.acct)
accountsToMention.push(...(status.mentions.filter(mention => mention.id !== userId).map(mention => mention.acct)))
return {
key: `reply-${status.id}`,
draft: () => {
return getDefaultDraft({
2022-12-13 13:49:22 +00:00
initialText: accountsToMention.map(acct => mentionHTML(acct)).join(' '),
inReplyToId: status!.id,
visibility: status.visibility,
})
},
2022-11-24 11:35:26 +00:00
}
}
2022-11-28 17:46:00 +00:00
export const isEmptyDraft = (draft: Draft | null | undefined) => {
if (!draft)
return true
const { params, attachments } = draft
const status = params.status || ''
return (status.length === 0 || status === '<p></p>')
&& attachments.length === 0
&& (params.spoilerText || '').length === 0
}
export function useDraft(
draftKey: string,
2022-11-30 04:50:29 +00:00
initial: () => Draft = () => getDefaultDraft({}),
) {
2022-11-24 11:35:26 +00:00
const draft = computed({
get() {
2022-11-24 14:32:20 +00:00
if (!currentUserDrafts.value[draftKey])
currentUserDrafts.value[draftKey] = initial()
2022-11-24 11:35:26 +00:00
return currentUserDrafts.value[draftKey]
},
set(val) {
currentUserDrafts.value[draftKey] = val
},
})
const isEmpty = computed(() => isEmptyDraft(draft.value))
onUnmounted(async () => {
// Remove draft if it's empty
if (isEmpty.value) {
await nextTick()
delete currentUserDrafts.value[draftKey]
}
2022-11-24 11:35:26 +00:00
})
return { draft, isEmpty }
}
2022-11-25 11:39:21 +00:00
export function mentionUser(account: Account) {
openPublishDialog('dialog', getDefaultDraft({
status: `@${account.acct} `,
}), true)
2022-11-25 11:39:21 +00:00
}
export function directMessageUser(account: Account) {
openPublishDialog('dialog', getDefaultDraft({
2022-11-25 11:39:21 +00:00
status: `@${account.acct} `,
visibility: 'direct',
}), true)
2022-11-25 11:39:21 +00:00
}