mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
import { acceptHMRUpdate, defineStore } from 'pinia' |
|
|
|
export const useProjectsShortcuts = defineStore('projectsShortcutsStore', () => { |
|
const { $e } = useNuxtApp() |
|
const { isUIAllowed } = useRoles() |
|
|
|
const isMounted = ref(false) |
|
|
|
const isFullScreen = ref(false) |
|
|
|
const workspaceStore = useWorkspace() |
|
|
|
workspaceStore.$subscribe(() => { |
|
if (!isMounted.value) { |
|
isMounted.value = true |
|
} |
|
}) |
|
|
|
watch(isMounted, () => { |
|
useEventListener(document, 'keydown', async (e: KeyboardEvent) => { |
|
const cmdOrCtrl = isMac() ? e.metaKey : e.ctrlKey |
|
|
|
if (e.altKey && !e.shiftKey && !cmdOrCtrl) { |
|
switch (e.keyCode) { |
|
case 70: { |
|
// ALT + F |
|
if (!isDrawerOrModalExist()) { |
|
$e('c:shortcut', { key: 'ALT + F' }) |
|
const sidebarStore = useSidebarStore() |
|
|
|
isFullScreen.value = !isFullScreen.value |
|
|
|
sidebarStore.isLeftSidebarOpen = !isFullScreen.value |
|
sidebarStore.isRightSidebarOpen = !isFullScreen.value |
|
} |
|
break |
|
} |
|
// 'ALT + ,' |
|
case 188: { |
|
if (isUIAllowed('settingsPage') && !isDrawerOrModalExist()) { |
|
$e('c:shortcut', { key: 'ALT + ,' }) |
|
const basesStore = useBases() |
|
|
|
if (!basesStore.activeProjectId) return |
|
|
|
basesStore.navigateToProject({ |
|
baseId: basesStore.activeProjectId, |
|
page: 'collaborators', |
|
}) |
|
} |
|
break |
|
} |
|
} |
|
} |
|
}) |
|
}) |
|
}) |
|
|
|
if (import.meta.hot) { |
|
import.meta.hot.accept(acceptHMRUpdate(useProjectsShortcuts as any, import.meta.hot)) |
|
}
|
|
|