2022-11-23 03:48:01 +00:00
|
|
|
|
<script setup lang="ts">
|
2023-01-08 06:21:09 +00:00
|
|
|
|
import type { mastodon } from 'masto'
|
2023-01-07 08:55:01 +00:00
|
|
|
|
import type { ConfirmDialogChoice } from '~/types'
|
2022-11-27 01:52:46 +00:00
|
|
|
|
import {
|
2022-12-09 21:18:21 +00:00
|
|
|
|
isCommandPanelOpen,
|
2023-01-07 08:55:01 +00:00
|
|
|
|
isConfirmDialogOpen,
|
2022-11-27 01:52:46 +00:00
|
|
|
|
isEditHistoryDialogOpen,
|
2023-02-05 12:10:19 +00:00
|
|
|
|
isErrorDialogOpen,
|
2023-01-08 20:08:45 +00:00
|
|
|
|
isFavouritedBoostedByDialogOpen,
|
2023-03-07 19:32:21 +00:00
|
|
|
|
isKeyboardShortcutsDialogOpen,
|
2022-11-30 03:27:19 +00:00
|
|
|
|
isMediaPreviewOpen,
|
2022-11-27 01:52:46 +00:00
|
|
|
|
isPreviewHelpOpen,
|
|
|
|
|
isPublishDialogOpen,
|
2023-06-23 12:24:10 +00:00
|
|
|
|
isReportDialogOpen,
|
2022-11-27 01:52:46 +00:00
|
|
|
|
isSigninDialogOpen,
|
|
|
|
|
} from '~/composables/dialog'
|
2022-12-09 21:18:21 +00:00
|
|
|
|
|
|
|
|
|
const isMac = useIsMac()
|
|
|
|
|
|
|
|
|
|
// TODO: temporary, await for keybind system
|
2022-12-13 18:29:42 +00:00
|
|
|
|
// open search panel
|
|
|
|
|
// listen to ctrl+k on windows/linux or cmd+k on mac
|
|
|
|
|
// open command panel
|
2022-12-09 21:18:21 +00:00
|
|
|
|
// listen to ctrl+/ on windows/linux or cmd+/ on mac
|
2022-12-13 18:29:42 +00:00
|
|
|
|
// or shift+ctrl+k on windows/linux or shift+cmd+k on mac
|
2022-12-09 21:18:21 +00:00
|
|
|
|
useEventListener('keydown', (e: KeyboardEvent) => {
|
2023-01-08 19:35:48 +00:00
|
|
|
|
if ((e.key === 'k' || e.key === 'л') && (isMac.value ? e.metaKey : e.ctrlKey)) {
|
2022-12-13 18:29:42 +00:00
|
|
|
|
e.preventDefault()
|
|
|
|
|
openCommandPanel(e.shiftKey)
|
|
|
|
|
}
|
2023-01-08 19:35:48 +00:00
|
|
|
|
if ((e.key === '/' || e.key === ',') && (isMac.value ? e.metaKey : e.ctrlKey)) {
|
2022-12-09 21:18:21 +00:00
|
|
|
|
e.preventDefault()
|
|
|
|
|
openCommandPanel(true)
|
|
|
|
|
}
|
|
|
|
|
})
|
2023-01-01 15:57:49 +00:00
|
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
|
function handlePublished(status: mastodon.v1.Status) {
|
2023-01-01 15:57:49 +00:00
|
|
|
|
lastPublishDialogStatus.value = status
|
|
|
|
|
isPublishDialogOpen.value = false
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
|
function handlePublishClose() {
|
2023-01-01 15:57:49 +00:00
|
|
|
|
lastPublishDialogStatus.value = null
|
|
|
|
|
}
|
2023-01-07 08:55:01 +00:00
|
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
|
function handleConfirmChoice(choice: ConfirmDialogChoice) {
|
2023-01-07 08:55:01 +00:00
|
|
|
|
confirmDialogChoice.value = choice
|
|
|
|
|
isConfirmDialogOpen.value = false
|
|
|
|
|
}
|
2023-01-08 20:08:45 +00:00
|
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
|
function handleFavouritedBoostedByClose() {
|
2023-01-08 20:08:45 +00:00
|
|
|
|
isFavouritedBoostedByDialogOpen.value = false
|
|
|
|
|
}
|
2022-11-23 03:48:01 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-01-15 08:38:02 +00:00
|
|
|
|
<template v-if="isHydrated">
|
2022-12-17 16:55:29 +00:00
|
|
|
|
<ModalDialog v-model="isSigninDialogOpen" py-4 px-8 max-w-125>
|
|
|
|
|
<UserSignIn />
|
|
|
|
|
</ModalDialog>
|
2023-01-03 11:15:33 +00:00
|
|
|
|
<ModalDialog v-model="isPreviewHelpOpen" keep-alive max-w-125>
|
2022-12-17 16:55:29 +00:00
|
|
|
|
<HelpPreview @close="closePreviewHelp()" />
|
|
|
|
|
</ModalDialog>
|
2023-01-01 15:57:49 +00:00
|
|
|
|
<ModalDialog
|
|
|
|
|
v-model="isPublishDialogOpen"
|
|
|
|
|
max-w-180 flex
|
|
|
|
|
@close="handlePublishClose"
|
|
|
|
|
>
|
2022-12-17 16:55:29 +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 -->
|
2023-01-01 15:57:49 +00:00
|
|
|
|
<PublishWidget
|
2023-01-05 16:48:20 +00:00
|
|
|
|
v-if="dialogDraftKey"
|
2023-01-01 15:57:49 +00:00
|
|
|
|
:draft-key="dialogDraftKey" expanded flex-1 w-0
|
|
|
|
|
@published="handlePublished"
|
|
|
|
|
/>
|
2022-12-17 16:55:29 +00:00
|
|
|
|
</ModalDialog>
|
|
|
|
|
<ModalDialog
|
2023-01-10 19:57:12 +00:00
|
|
|
|
:model-value="isMediaPreviewOpen"
|
2022-12-17 16:55:29 +00:00
|
|
|
|
w-full max-w-full h-full max-h-full
|
|
|
|
|
bg-transparent border-0 shadow-none
|
2023-01-10 19:57:12 +00:00
|
|
|
|
@update:model-value="closeMediaPreview"
|
2022-12-17 16:55:29 +00:00
|
|
|
|
>
|
|
|
|
|
<ModalMediaPreview v-if="isMediaPreviewOpen" @close="closeMediaPreview()" />
|
|
|
|
|
</ModalDialog>
|
|
|
|
|
<ModalDialog v-model="isEditHistoryDialogOpen" max-w-125>
|
2023-01-05 16:48:20 +00:00
|
|
|
|
<StatusEditPreview v-if="statusEdit" :edit="statusEdit" />
|
2022-12-17 16:55:29 +00:00
|
|
|
|
</ModalDialog>
|
|
|
|
|
<ModalDialog v-model="isCommandPanelOpen" max-w-fit flex>
|
|
|
|
|
<CommandPanel @close="closeCommandPanel()" />
|
|
|
|
|
</ModalDialog>
|
2023-01-07 08:55:01 +00:00
|
|
|
|
<ModalDialog v-model="isConfirmDialogOpen" py-4 px-8 max-w-125>
|
|
|
|
|
<ModalConfirm v-if="confirmDialogLabel" v-bind="confirmDialogLabel" @choice="handleConfirmChoice" />
|
|
|
|
|
</ModalDialog>
|
2023-02-05 12:10:19 +00:00
|
|
|
|
<ModalDialog v-model="isErrorDialogOpen" py-4 px-8 max-w-125>
|
|
|
|
|
<ModalError v-if="errorDialogData" v-bind="errorDialogData" />
|
|
|
|
|
</ModalDialog>
|
2023-01-08 20:08:45 +00:00
|
|
|
|
<ModalDialog
|
|
|
|
|
v-model="isFavouritedBoostedByDialogOpen"
|
|
|
|
|
max-w-180
|
|
|
|
|
@close="handleFavouritedBoostedByClose"
|
|
|
|
|
>
|
|
|
|
|
<StatusFavouritedBoostedBy />
|
|
|
|
|
</ModalDialog>
|
2023-03-07 19:32:21 +00:00
|
|
|
|
<ModalDialog v-model="isKeyboardShortcutsDialogOpen" max-w-full sm:max-w-140 md:max-w-170 lg:max-w-220 md:min-w-160>
|
|
|
|
|
<MagickeysKeyboardShortcuts @close="closeKeyboardShortcuts()" />
|
|
|
|
|
</ModalDialog>
|
2023-06-23 12:24:10 +00:00
|
|
|
|
<ModalDialog v-model="isReportDialogOpen" keep-alive max-w-175>
|
|
|
|
|
<ReportModal v-if="reportAccount" :account="reportAccount" :status="reportStatus" @close="closeReportDialog()" />
|
|
|
|
|
</ModalDialog>
|
2022-12-17 16:55:29 +00:00
|
|
|
|
</template>
|
2022-11-23 03:48:01 +00:00
|
|
|
|
</template>
|