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,
|
2022-11-30 03:27:19 +00:00
|
|
|
|
isMediaPreviewOpen,
|
2022-11-27 01:52:46 +00:00
|
|
|
|
isPreviewHelpOpen,
|
|
|
|
|
isPublishDialogOpen,
|
|
|
|
|
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) => {
|
2022-12-13 18:29:42 +00:00
|
|
|
|
if (e.key === 'k' && (isMac.value ? e.metaKey : e.ctrlKey)) {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
openCommandPanel(e.shiftKey)
|
|
|
|
|
}
|
2022-12-09 21:18:21 +00:00
|
|
|
|
if (e.key === '/' && (isMac.value ? e.metaKey : e.ctrlKey)) {
|
|
|
|
|
e.preventDefault()
|
|
|
|
|
openCommandPanel(true)
|
|
|
|
|
}
|
|
|
|
|
})
|
2023-01-01 15:57:49 +00:00
|
|
|
|
|
2023-01-08 06:21:09 +00:00
|
|
|
|
const handlePublished = (status: mastodon.v1.Status) => {
|
2023-01-01 15:57:49 +00:00
|
|
|
|
lastPublishDialogStatus.value = status
|
|
|
|
|
isPublishDialogOpen.value = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handlePublishClose = () => {
|
|
|
|
|
lastPublishDialogStatus.value = null
|
|
|
|
|
}
|
2023-01-07 08:55:01 +00:00
|
|
|
|
|
|
|
|
|
const handleConfirmChoice = (choice: ConfirmDialogChoice) => {
|
|
|
|
|
confirmDialogChoice.value = choice
|
|
|
|
|
isConfirmDialogOpen.value = false
|
|
|
|
|
}
|
2022-11-23 03:48:01 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2022-12-17 16:55:29 +00:00
|
|
|
|
<template v-if="isMastoInitialised">
|
|
|
|
|
<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
|
|
|
|
|
v-model="isMediaPreviewOpen"
|
|
|
|
|
w-full max-w-full h-full max-h-full
|
|
|
|
|
bg-transparent border-0 shadow-none
|
|
|
|
|
>
|
|
|
|
|
<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>
|
2022-12-17 16:55:29 +00:00
|
|
|
|
</template>
|
2022-11-23 03:48:01 +00:00
|
|
|
|
</template>
|