2022-11-21 06:55:31 +00:00
|
|
|
|
<script setup lang="ts">
|
2023-01-01 15:57:49 +00:00
|
|
|
|
import type { Attachment, CreateStatusParams, Status, StatusVisibility } from 'masto'
|
2022-11-24 11:44:24 +00:00
|
|
|
|
import { fileOpen } from 'browser-fs-access'
|
2022-11-25 09:29:16 +00:00
|
|
|
|
import { useDropZone } from '@vueuse/core'
|
2022-11-25 13:21:02 +00:00
|
|
|
|
import { EditorContent } from '@tiptap/vue-3'
|
2023-01-01 21:52:00 +00:00
|
|
|
|
import ISO6391 from 'iso-639-1'
|
2023-01-02 20:56:12 +00:00
|
|
|
|
import Fuse from 'fuse.js'
|
2023-01-03 12:03:46 +00:00
|
|
|
|
import { statusVisibilities } from '~/composables/masto/icons'
|
2022-12-13 14:03:30 +00:00
|
|
|
|
import type { Draft } from '~/types'
|
2022-11-21 06:55:31 +00:00
|
|
|
|
|
2023-01-01 18:11:50 +00:00
|
|
|
|
type FileUploadError = [filename: string, message: string]
|
|
|
|
|
|
2022-11-21 06:55:31 +00:00
|
|
|
|
const {
|
|
|
|
|
draftKey,
|
2022-11-28 10:23:33 +00:00
|
|
|
|
initial = getDefaultDraft() as never /* Bug of vue-core */,
|
2022-11-24 15:01:45 +00:00
|
|
|
|
expanded: _expanded = false,
|
2022-11-30 04:50:29 +00:00
|
|
|
|
placeholder,
|
2022-12-16 19:55:31 +00:00
|
|
|
|
dialogLabelledBy,
|
2022-11-21 06:55:31 +00:00
|
|
|
|
} = defineProps<{
|
|
|
|
|
draftKey: string
|
2022-11-28 10:23:33 +00:00
|
|
|
|
initial?: () => Draft
|
2022-11-21 06:55:31 +00:00
|
|
|
|
placeholder?: string
|
|
|
|
|
inReplyToId?: string
|
2022-11-28 09:57:42 +00:00
|
|
|
|
inReplyToVisibility?: StatusVisibility
|
2022-11-24 15:01:45 +00:00
|
|
|
|
expanded?: boolean
|
2022-12-16 19:55:31 +00:00
|
|
|
|
dialogLabelledBy?: string
|
2022-11-21 06:55:31 +00:00
|
|
|
|
}>()
|
|
|
|
|
|
2023-01-01 15:57:49 +00:00
|
|
|
|
const emit = defineEmits<{
|
|
|
|
|
(evt: 'published', status: Status): void
|
|
|
|
|
}>()
|
2022-12-01 07:24:35 +00:00
|
|
|
|
|
2022-11-30 04:50:29 +00:00
|
|
|
|
const { t } = useI18n()
|
2022-11-28 10:23:33 +00:00
|
|
|
|
// eslint-disable-next-line prefer-const
|
|
|
|
|
let { draft, isEmpty } = $(useDraft(draftKey, initial))
|
|
|
|
|
|
2022-11-21 06:55:31 +00:00
|
|
|
|
let isSending = $ref(false)
|
2022-11-29 11:57:05 +00:00
|
|
|
|
let isExpanded = $ref(false)
|
|
|
|
|
const shouldExpanded = $computed(() => _expanded || isExpanded || !isEmpty)
|
2022-11-24 06:54:54 +00:00
|
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
|
const { editor } = useTiptap({
|
2022-11-25 18:10:17 +00:00
|
|
|
|
content: computed({
|
|
|
|
|
get: () => draft.params.status,
|
|
|
|
|
set: newVal => draft.params.status = newVal,
|
|
|
|
|
}),
|
2022-12-12 22:35:59 +00:00
|
|
|
|
placeholder: computed(() => placeholder ?? draft.params.inReplyToId ? t('placeholder.replying') : t('placeholder.default_1')),
|
2022-11-29 11:57:05 +00:00
|
|
|
|
autofocus: shouldExpanded,
|
2022-11-25 14:07:31 +00:00
|
|
|
|
onSubmit: publish,
|
2022-12-12 22:35:59 +00:00
|
|
|
|
onFocus() {
|
|
|
|
|
if (!isExpanded && draft.initialText) {
|
|
|
|
|
editor.value?.chain().insertContent(`${draft.initialText} `).focus('end').run()
|
|
|
|
|
draft.initialText = ''
|
|
|
|
|
}
|
|
|
|
|
isExpanded = true
|
|
|
|
|
},
|
2022-11-25 13:21:02 +00:00
|
|
|
|
onPaste: handlePaste,
|
|
|
|
|
})
|
|
|
|
|
|
2022-11-24 09:15:58 +00:00
|
|
|
|
const currentVisibility = $computed(() => {
|
2023-01-03 12:03:46 +00:00
|
|
|
|
return statusVisibilities.find(v => v.value === draft.params.visibility) || statusVisibilities[0]
|
2022-11-24 09:15:58 +00:00
|
|
|
|
})
|
|
|
|
|
|
2022-11-23 17:17:54 +00:00
|
|
|
|
let isUploading = $ref<boolean>(false)
|
2022-12-31 09:02:55 +00:00
|
|
|
|
let isExceedingAttachmentLimit = $ref<boolean>(false)
|
2023-01-01 18:11:50 +00:00
|
|
|
|
let failed = $ref<FileUploadError[]>([])
|
2022-11-23 17:17:54 +00:00
|
|
|
|
|
|
|
|
|
async function handlePaste(evt: ClipboardEvent) {
|
|
|
|
|
const files = evt.clipboardData?.files
|
2022-11-24 08:20:21 +00:00
|
|
|
|
if (!files || files.length === 0)
|
2022-11-23 17:17:54 +00:00
|
|
|
|
return
|
|
|
|
|
|
2022-11-24 04:05:13 +00:00
|
|
|
|
evt.preventDefault()
|
2022-11-23 17:17:54 +00:00
|
|
|
|
await uploadAttachments(Array.from(files))
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-27 19:13:50 +00:00
|
|
|
|
function insertEmoji(name: string) {
|
|
|
|
|
editor.value?.chain().focus().insertEmoji(name).run()
|
2022-12-23 19:15:19 +00:00
|
|
|
|
}
|
2022-12-27 19:13:50 +00:00
|
|
|
|
function insertCustomEmoji(image: any) {
|
|
|
|
|
editor.value?.chain().focus().insertCustomEmoji(image).run()
|
2022-12-27 18:38:57 +00:00
|
|
|
|
}
|
2022-12-23 19:15:19 +00:00
|
|
|
|
|
2022-11-23 17:17:54 +00:00
|
|
|
|
async function pickAttachments() {
|
2022-12-28 19:42:31 +00:00
|
|
|
|
const mimeTypes = currentInstance.value!.configuration.mediaAttachments.supportedMimeTypes
|
|
|
|
|
const files = await fileOpen({
|
|
|
|
|
description: 'Attachments',
|
|
|
|
|
multiple: true,
|
|
|
|
|
mimeTypes,
|
|
|
|
|
})
|
2022-11-23 17:17:54 +00:00
|
|
|
|
await uploadAttachments(files)
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-25 12:10:45 +00:00
|
|
|
|
async function toggleSensitive() {
|
|
|
|
|
draft.params.sensitive = !draft.params.sensitive
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-25 14:04:50 +00:00
|
|
|
|
const masto = useMasto()
|
|
|
|
|
|
2022-11-23 17:17:54 +00:00
|
|
|
|
async function uploadAttachments(files: File[]) {
|
|
|
|
|
isUploading = true
|
2022-12-26 05:25:35 +00:00
|
|
|
|
failed = []
|
2022-12-28 19:42:31 +00:00
|
|
|
|
// TODO: display some kind of message if too many media are selected
|
2022-12-31 09:02:55 +00:00
|
|
|
|
// DONE
|
2022-12-28 19:42:31 +00:00
|
|
|
|
const limit = currentInstance.value!.configuration.statuses.maxMediaAttachments || 4
|
|
|
|
|
for (const file of files.slice(0, limit)) {
|
2022-12-31 09:02:55 +00:00
|
|
|
|
if (draft.attachments.length < limit) {
|
|
|
|
|
isExceedingAttachmentLimit = false
|
|
|
|
|
try {
|
|
|
|
|
const attachment = await masto.mediaAttachments.create({
|
|
|
|
|
file,
|
|
|
|
|
})
|
|
|
|
|
draft.attachments.push(attachment)
|
|
|
|
|
}
|
|
|
|
|
catch (e) {
|
|
|
|
|
// TODO: add some human-readable error message, problem is that masto api will not return response code
|
|
|
|
|
console.error(e)
|
2023-01-01 18:11:50 +00:00
|
|
|
|
failed = [...failed, [file.name, (e as Error).message]]
|
2022-12-31 09:02:55 +00:00
|
|
|
|
}
|
2022-12-26 05:25:35 +00:00
|
|
|
|
}
|
2022-12-31 09:02:55 +00:00
|
|
|
|
else {
|
|
|
|
|
isExceedingAttachmentLimit = true
|
2023-01-01 18:11:50 +00:00
|
|
|
|
failed = [...failed, [file.name, t('state.attachments_limit_error')]]
|
2022-12-26 05:25:35 +00:00
|
|
|
|
}
|
2022-11-23 17:17:54 +00:00
|
|
|
|
}
|
|
|
|
|
isUploading = false
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-14 23:30:54 +00:00
|
|
|
|
async function setDescription(att: Attachment, description: string) {
|
|
|
|
|
att.description = description
|
2022-12-25 14:04:50 +00:00
|
|
|
|
await masto.mediaAttachments.update(att.id, { description: att.description })
|
2022-12-14 23:30:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-24 04:05:13 +00:00
|
|
|
|
function removeAttachment(index: number) {
|
2022-11-24 06:54:54 +00:00
|
|
|
|
draft.attachments.splice(index, 1)
|
2022-11-23 17:17:54 +00:00
|
|
|
|
}
|
2022-11-21 06:55:31 +00:00
|
|
|
|
|
2022-11-24 09:15:58 +00:00
|
|
|
|
function chooseVisibility(visibility: StatusVisibility) {
|
|
|
|
|
draft.params.visibility = visibility
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-01 21:52:00 +00:00
|
|
|
|
function chooseLanguage(language: string | null) {
|
|
|
|
|
draft.params.language = language
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-21 06:55:31 +00:00
|
|
|
|
async function publish() {
|
2022-11-25 16:17:15 +00:00
|
|
|
|
const payload = {
|
|
|
|
|
...draft.params,
|
|
|
|
|
status: htmlToText(draft.params.status || ''),
|
|
|
|
|
mediaIds: draft.attachments.map(a => a.id),
|
|
|
|
|
} as CreateStatusParams
|
|
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
|
if (process.dev) {
|
2022-11-25 16:17:15 +00:00
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
|
console.info({
|
|
|
|
|
raw: draft.params.status,
|
|
|
|
|
...payload,
|
|
|
|
|
})
|
2022-11-28 10:23:33 +00:00
|
|
|
|
// eslint-disable-next-line no-alert
|
2022-11-25 16:17:15 +00:00
|
|
|
|
const result = confirm('[DEV] Payload logged to console, do you want to publish it?')
|
|
|
|
|
if (!result)
|
|
|
|
|
return
|
2022-11-25 13:21:02 +00:00
|
|
|
|
}
|
2022-11-25 16:17:15 +00:00
|
|
|
|
|
2022-11-21 06:55:31 +00:00
|
|
|
|
try {
|
|
|
|
|
isSending = true
|
2022-11-25 16:17:15 +00:00
|
|
|
|
|
2023-01-01 15:57:49 +00:00
|
|
|
|
let status: Status
|
2022-11-24 11:35:26 +00:00
|
|
|
|
if (!draft.editingStatus)
|
2023-01-01 15:57:49 +00:00
|
|
|
|
status = await masto.statuses.create(payload)
|
2022-11-25 13:21:02 +00:00
|
|
|
|
else
|
2023-01-01 15:57:49 +00:00
|
|
|
|
status = await masto.statuses.update(draft.editingStatus.id, payload)
|
2022-11-24 11:35:26 +00:00
|
|
|
|
|
2022-11-28 10:23:33 +00:00
|
|
|
|
draft = initial()
|
2023-01-01 15:57:49 +00:00
|
|
|
|
emit('published', status)
|
2022-11-21 06:55:31 +00:00
|
|
|
|
}
|
|
|
|
|
finally {
|
|
|
|
|
isSending = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-25 09:29:16 +00:00
|
|
|
|
const dropZoneRef = ref<HTMLDivElement>()
|
|
|
|
|
|
|
|
|
|
async function onDrop(files: File[] | null) {
|
|
|
|
|
if (files)
|
|
|
|
|
await uploadAttachments(files)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { isOverDropZone } = useDropZone(dropZoneRef, onDrop)
|
2022-12-14 16:45:46 +00:00
|
|
|
|
|
2023-01-02 20:56:12 +00:00
|
|
|
|
const languageKeyword = $ref('')
|
|
|
|
|
const languageList: {
|
|
|
|
|
code: string | null
|
|
|
|
|
nativeName: string
|
|
|
|
|
name?: string
|
|
|
|
|
}[] = [{
|
|
|
|
|
code: null,
|
2023-01-03 00:16:33 +00:00
|
|
|
|
nativeName: t('language.none'),
|
2023-01-02 20:56:12 +00:00
|
|
|
|
}, ...ISO6391.getAllCodes().map(code => ({
|
|
|
|
|
code,
|
|
|
|
|
nativeName: ISO6391.getNativeName(code),
|
|
|
|
|
name: ISO6391.getName(code),
|
|
|
|
|
}))]
|
|
|
|
|
const fuse = new Fuse(languageList, {
|
|
|
|
|
keys: ['code', 'nativeName', 'name'],
|
|
|
|
|
shouldSort: true,
|
|
|
|
|
})
|
|
|
|
|
const languages = $computed(() =>
|
|
|
|
|
languageKeyword.trim()
|
|
|
|
|
? fuse.search(languageKeyword).map(r => r.item)
|
|
|
|
|
: languageList,
|
|
|
|
|
)
|
|
|
|
|
|
2022-12-14 16:45:46 +00:00
|
|
|
|
defineExpose({
|
|
|
|
|
focusEditor: () => {
|
|
|
|
|
editor.value?.commands?.focus?.()
|
|
|
|
|
},
|
|
|
|
|
})
|
2022-11-21 06:55:31 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2022-12-26 08:00:57 +00:00
|
|
|
|
<div v-if="isMastoInitialised && currentUser" flex="~ col gap-4" py3 px2 sm:px4>
|
2022-11-24 11:35:26 +00:00
|
|
|
|
<template v-if="draft.editingStatus">
|
|
|
|
|
<div flex="~ col gap-1">
|
2022-12-16 19:55:31 +00:00
|
|
|
|
<div id="state-editing" text-secondary self-center>
|
2022-11-29 06:57:32 +00:00
|
|
|
|
{{ $t('state.editing') }}
|
2022-11-24 11:35:26 +00:00
|
|
|
|
</div>
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<StatusCard :status="draft.editingStatus" :actions="false" :hover="false" px-0 />
|
2022-11-24 07:53:27 +00:00
|
|
|
|
</div>
|
2022-11-24 11:35:26 +00:00
|
|
|
|
<div border="b dashed gray/40" />
|
|
|
|
|
</template>
|
2022-11-24 14:32:20 +00:00
|
|
|
|
|
2022-12-27 19:13:50 +00:00
|
|
|
|
<div flex gap-3 flex-1>
|
2022-12-26 08:00:57 +00:00
|
|
|
|
<NuxtLink :to="getAccountRoute(currentUser.account)">
|
2022-12-28 21:14:29 +00:00
|
|
|
|
<AccountBigAvatar :account="currentUser.account" />
|
2022-11-24 15:19:18 +00:00
|
|
|
|
</NuxtLink>
|
2022-12-06 16:37:58 +00:00
|
|
|
|
<!-- This `w-0` style is used to avoid overflow problems in flex layouts,so don't remove it unless you know what you're doing -->
|
2022-11-24 11:35:26 +00:00
|
|
|
|
<div
|
2022-11-25 09:29:16 +00:00
|
|
|
|
ref="dropZoneRef"
|
2022-12-06 16:37:58 +00:00
|
|
|
|
flex w-0 flex-col gap-3 flex-1
|
2022-11-25 13:21:02 +00:00
|
|
|
|
border="2 dashed transparent"
|
2022-11-25 09:31:32 +00:00
|
|
|
|
:class="[isSending ? 'pointer-events-none' : '', isOverDropZone ? '!border-primary' : '']"
|
2022-11-24 11:35:26 +00:00
|
|
|
|
>
|
2022-11-25 12:10:45 +00:00
|
|
|
|
<div v-if="draft.params.sensitive">
|
|
|
|
|
<input
|
|
|
|
|
v-model="draft.params.spoilerText"
|
|
|
|
|
type="text"
|
2022-12-01 07:41:59 +00:00
|
|
|
|
:placeholder="$t('placeholder.content_warning')"
|
2022-11-25 12:10:45 +00:00
|
|
|
|
p2 border-rounded w-full bg-transparent
|
|
|
|
|
outline-none border="~ base"
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-12-06 16:37:58 +00:00
|
|
|
|
<div relative flex-1 flex flex-col>
|
2022-11-25 13:29:42 +00:00
|
|
|
|
<EditorContent
|
|
|
|
|
:editor="editor"
|
2022-12-14 13:22:35 +00:00
|
|
|
|
flex max-w-full
|
2022-12-04 06:27:08 +00:00
|
|
|
|
:class="shouldExpanded ? 'min-h-30 md:max-h-[calc(100vh-200px)] sm:max-h-[calc(100vh-400px)] max-h-35 of-y-auto overscroll-contain' : ''"
|
2022-11-25 13:29:42 +00:00
|
|
|
|
/>
|
|
|
|
|
</div>
|
2022-11-24 07:53:27 +00:00
|
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
|
<div v-if="isUploading" flex gap-1 items-center text-sm p1 text-primary>
|
|
|
|
|
<div i-ri:loader-2-fill animate-spin />
|
2022-11-29 06:57:32 +00:00
|
|
|
|
{{ $t('state.uploading') }}
|
2022-11-25 13:21:02 +00:00
|
|
|
|
</div>
|
2022-12-26 05:25:35 +00:00
|
|
|
|
<div
|
|
|
|
|
v-else-if="failed.length > 0"
|
|
|
|
|
role="alert"
|
2023-01-01 18:11:50 +00:00
|
|
|
|
:aria-describedby="isExceedingAttachmentLimit ? 'upload-failed uploads-per-post' : 'upload-failed'"
|
2022-12-26 05:25:35 +00:00
|
|
|
|
flex="~ col"
|
2022-12-27 21:04:52 +00:00
|
|
|
|
gap-1 text-sm
|
2023-01-01 14:29:11 +00:00
|
|
|
|
pt-1 ps-2 pe-1 pb-2
|
2022-12-27 21:04:52 +00:00
|
|
|
|
text-red-600 dark:text-red-400
|
2022-12-26 05:25:35 +00:00
|
|
|
|
border="~ base rounded red-600 dark:red-400"
|
|
|
|
|
>
|
|
|
|
|
<head id="upload-failed" flex justify-between>
|
|
|
|
|
<div flex items-center gap-x-2 font-bold>
|
|
|
|
|
<div aria-hidden="true" i-ri:error-warning-fill />
|
|
|
|
|
<p>{{ $t('state.upload_failed') }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<CommonTooltip placement="bottom" :content="$t('action.clear_upload_failed')">
|
|
|
|
|
<button
|
|
|
|
|
flex rounded-4 p1
|
|
|
|
|
hover:bg-active cursor-pointer transition-100
|
|
|
|
|
:aria-label="$t('action.clear_upload_failed')"
|
|
|
|
|
@click="failed = []"
|
|
|
|
|
>
|
|
|
|
|
<span aria-hidden="true" w-1.75em h-1.75em i-ri:close-line />
|
|
|
|
|
</button>
|
|
|
|
|
</CommonTooltip>
|
|
|
|
|
</head>
|
2023-01-01 18:11:50 +00:00
|
|
|
|
<div v-if="isExceedingAttachmentLimit" id="uploads-per-post" ps-2 sm:ps-1 text-small>
|
2022-12-31 09:02:55 +00:00
|
|
|
|
{{ $t('state.attachments_exceed_server_limit') }}
|
|
|
|
|
</div>
|
2023-01-01 14:29:11 +00:00
|
|
|
|
<ol ps-2 sm:ps-1>
|
2023-01-01 18:11:50 +00:00
|
|
|
|
<li v-for="error in failed" :key="error[0]" flex="~ col sm:row" gap-y-1 sm:gap-x-2>
|
|
|
|
|
<strong>{{ error[1] }}:</strong>
|
|
|
|
|
<span>{{ error[0] }}</span>
|
2022-12-26 05:25:35 +00:00
|
|
|
|
</li>
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
2022-11-25 13:21:02 +00:00
|
|
|
|
|
|
|
|
|
<div v-if="draft.attachments.length" flex="~ col gap-2" overflow-auto>
|
2022-11-24 11:35:26 +00:00
|
|
|
|
<PublishAttachment
|
|
|
|
|
v-for="(att, idx) in draft.attachments" :key="att.id"
|
|
|
|
|
:attachment="att"
|
2022-12-16 19:55:31 +00:00
|
|
|
|
:dialog-labelled-by="dialogLabelledBy ?? (draft.editingStatus ? 'state-editing' : null)"
|
2022-11-24 11:35:26 +00:00
|
|
|
|
@remove="removeAttachment(idx)"
|
2022-12-14 23:30:54 +00:00
|
|
|
|
@set-description="setDescription(att, $event)"
|
2022-11-24 11:35:26 +00:00
|
|
|
|
/>
|
|
|
|
|
</div>
|
2022-12-02 07:02:44 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div flex gap-4>
|
|
|
|
|
<div w-12 h-full sm:block hidden />
|
|
|
|
|
<div
|
2023-01-02 14:09:53 +00:00
|
|
|
|
v-if="shouldExpanded" flex="~ gap-1 1 wrap" m="s--1" pt-2 justify="between" max-w-full
|
2022-12-02 07:02:44 +00:00
|
|
|
|
border="t base"
|
|
|
|
|
>
|
2022-12-27 19:13:50 +00:00
|
|
|
|
<PublishEmojiPicker
|
|
|
|
|
@select="insertEmoji"
|
|
|
|
|
@select-custom="insertCustomEmoji"
|
|
|
|
|
/>
|
2022-12-23 19:15:19 +00:00
|
|
|
|
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<CommonTooltip placement="bottom" :content="$t('tooltip.add_media')">
|
|
|
|
|
<button btn-action-icon :aria-label="$t('tooltip.add_media')" @click="pickAttachments">
|
|
|
|
|
<div i-ri:image-add-line />
|
|
|
|
|
</button>
|
|
|
|
|
</CommonTooltip>
|
|
|
|
|
|
|
|
|
|
<template v-if="editor">
|
|
|
|
|
<CommonTooltip placement="bottom" :content="$t('tooltip.toggle_code_block')">
|
|
|
|
|
<button
|
|
|
|
|
btn-action-icon
|
|
|
|
|
:aria-label="$t('tooltip.toggle_code_block')"
|
2022-12-27 20:42:58 +00:00
|
|
|
|
:class="editor.isActive('codeBlock') ? 'text-primary' : ''"
|
2022-12-02 07:02:44 +00:00
|
|
|
|
@click="editor?.chain().focus().toggleCodeBlock().run()"
|
|
|
|
|
>
|
|
|
|
|
<div i-ri:code-s-slash-line />
|
2022-11-24 15:48:52 +00:00
|
|
|
|
</button>
|
|
|
|
|
</CommonTooltip>
|
2022-12-02 07:02:44 +00:00
|
|
|
|
</template>
|
2022-11-24 09:15:58 +00:00
|
|
|
|
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<div flex-auto />
|
2022-11-25 13:21:02 +00:00
|
|
|
|
|
2023-01-01 14:29:11 +00:00
|
|
|
|
<div dir="ltr" pointer-events-none pe-1 pt-2 text-sm tabular-nums text-secondary flex gap-0.5>
|
2022-12-30 06:10:29 +00:00
|
|
|
|
{{ editor?.storage.characterCount.characters() }}<span text-secondary-light>/</span><span text-secondary-light>{{ characterLimit }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<CommonTooltip placement="bottom" :content="$t('tooltip.add_content_warning')">
|
|
|
|
|
<button btn-action-icon :aria-label="$t('tooltip.add_content_warning')" @click="toggleSensitive">
|
|
|
|
|
<div v-if="draft.params.sensitive" i-ri:alarm-warning-fill text-orange />
|
|
|
|
|
<div v-else i-ri:alarm-warning-line />
|
|
|
|
|
</button>
|
|
|
|
|
</CommonTooltip>
|
2022-11-24 13:26:33 +00:00
|
|
|
|
|
2023-01-01 21:52:00 +00:00
|
|
|
|
<CommonTooltip placement="top" :content="$t('tooltip.change_language')">
|
2023-01-03 12:17:04 +00:00
|
|
|
|
<CommonDropdown placement="bottom" auto-boundary-max-size>
|
2023-01-02 04:52:14 +00:00
|
|
|
|
<button btn-action-icon :aria-label="$t('tooltip.change_language')" w-12 mr--1>
|
2023-01-01 21:52:00 +00:00
|
|
|
|
<div i-ri:translate-2 />
|
|
|
|
|
<div i-ri:arrow-down-s-line text-sm text-secondary me--1 />
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<template #popper>
|
2023-01-02 20:56:12 +00:00
|
|
|
|
<div min-w-80 p3>
|
|
|
|
|
<input
|
|
|
|
|
v-model="languageKeyword"
|
2023-01-03 00:16:33 +00:00
|
|
|
|
:placeholder="t('language.search')"
|
2023-01-01 21:52:00 +00:00
|
|
|
|
p2 mb2 border-rounded w-full bg-transparent
|
|
|
|
|
outline-none border="~ base"
|
2023-01-02 20:56:12 +00:00
|
|
|
|
>
|
2023-01-01 21:52:00 +00:00
|
|
|
|
<div max-h-40vh overflow-auto>
|
|
|
|
|
<CommonDropdownItem
|
2023-01-02 20:56:12 +00:00
|
|
|
|
v-for="{ code, nativeName, name } in languages"
|
2023-01-01 21:52:00 +00:00
|
|
|
|
:key="code"
|
|
|
|
|
:checked="code === (draft.params.language || null)"
|
|
|
|
|
@click="chooseLanguage(code)"
|
|
|
|
|
>
|
2023-01-02 20:56:12 +00:00
|
|
|
|
{{ nativeName }}
|
2023-01-01 21:52:00 +00:00
|
|
|
|
<template #description>
|
2023-01-02 20:56:12 +00:00
|
|
|
|
<template v-if="name">
|
|
|
|
|
{{ name }}
|
2023-01-01 21:52:00 +00:00
|
|
|
|
</template>
|
|
|
|
|
</template>
|
|
|
|
|
</CommonDropdownItem>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</CommonDropdown>
|
|
|
|
|
</CommonTooltip>
|
|
|
|
|
|
2023-01-02 22:11:43 +00:00
|
|
|
|
<CommonTooltip placement="bottom" :content="draft.editingStatus ? $t(`visibility.${currentVisibility.value}`) : $t('tooltip.change_content_visibility')">
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<CommonDropdown>
|
2023-01-02 22:11:43 +00:00
|
|
|
|
<button :disabled="!!draft.editingStatus" :aria-label="$t('tooltip.change_content_visibility')" btn-action-icon :class="{ 'w-12': !draft.editingStatus }">
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<div :class="currentVisibility.icon" />
|
2023-01-02 22:11:43 +00:00
|
|
|
|
<div v-if="!draft.editingStatus" i-ri:arrow-down-s-line text-sm text-secondary me--1 />
|
2022-11-25 12:10:45 +00:00
|
|
|
|
</button>
|
2022-11-24 11:35:26 +00:00
|
|
|
|
|
2022-12-02 07:02:44 +00:00
|
|
|
|
<template #popper>
|
|
|
|
|
<CommonDropdownItem
|
2023-01-03 12:03:46 +00:00
|
|
|
|
v-for="visibility in statusVisibilities"
|
2022-12-02 07:02:44 +00:00
|
|
|
|
:key="visibility.value"
|
|
|
|
|
:icon="visibility.icon"
|
|
|
|
|
:checked="visibility.value === draft.params.visibility"
|
|
|
|
|
@click="chooseVisibility(visibility.value)"
|
|
|
|
|
>
|
|
|
|
|
{{ $t(`visibility.${visibility.value}`) }}
|
|
|
|
|
<template #description>
|
|
|
|
|
{{ $t(`visibility.${visibility.value}_desc`) }}
|
|
|
|
|
</template>
|
|
|
|
|
</CommonDropdownItem>
|
|
|
|
|
</template>
|
|
|
|
|
</CommonDropdown>
|
|
|
|
|
</CommonTooltip>
|
|
|
|
|
|
|
|
|
|
<button
|
2023-01-02 14:09:53 +00:00
|
|
|
|
btn-solid rounded-full text-sm w-full md:w-fit
|
2022-12-02 07:02:44 +00:00
|
|
|
|
:disabled="isEmpty || isUploading || (draft.attachments.length === 0 && !draft.params.status)"
|
|
|
|
|
@click="publish"
|
|
|
|
|
>
|
|
|
|
|
{{ !draft.editingStatus ? $t('action.publish') : $t('action.save_changes') }}
|
|
|
|
|
</button>
|
2022-11-24 07:53:27 +00:00
|
|
|
|
</div>
|
2022-11-21 06:55:31 +00:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|