mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
9df9c06f64
Co-authored-by: lihbr <lihbr@users.noreply.github.com>
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import type { Draft } from './statusDrafts'
|
|
import { STORAGE_KEY_FIRST_VISIT, STORAGE_KEY_ZEN_MODE } from '~/constants'
|
|
|
|
export const imagePreview = ref({ src: '', alt: '' })
|
|
export const isFirstVisit = useLocalStorage(STORAGE_KEY_FIRST_VISIT, true)
|
|
export const isZenMode = useLocalStorage(STORAGE_KEY_ZEN_MODE, false)
|
|
export const toggleZenMode = useToggle(isZenMode)
|
|
|
|
export const isUserSwitcherOpen = ref(false)
|
|
export const isSigninDialogOpen = ref(false)
|
|
export const isPublishDialogOpen = ref(false)
|
|
export const isImagePreviewDialogOpen = ref(false)
|
|
export const isPreviewHelpOpen = ref(isFirstVisit.value)
|
|
|
|
export function openUserSwitcher() {
|
|
isUserSwitcherOpen.value = true
|
|
}
|
|
|
|
export function openSigninDialog() {
|
|
isSigninDialogOpen.value = true
|
|
isUserSwitcherOpen.value = false
|
|
}
|
|
|
|
export function openPublishDialog(draft?: Draft) {
|
|
if (draft)
|
|
dialogDraft.draft.value = draft
|
|
isPublishDialogOpen.value = true
|
|
}
|
|
|
|
if (isPreviewHelpOpen.value) {
|
|
watch(isPreviewHelpOpen, () => {
|
|
isFirstVisit.value = false
|
|
})
|
|
}
|
|
|
|
export function openImagePreviewDialog(image: { src: string; alt: string }) {
|
|
imagePreview.value = image
|
|
isImagePreviewDialogOpen.value = true
|
|
}
|
|
|
|
export function openPreviewHelp() {
|
|
isPreviewHelpOpen.value = true
|
|
}
|