mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 07:40:32 +00:00
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { useHotkeys } from 'react-hotkeys-hook';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { getDashboardRoutes } from '@/routes/dashboard';
|
|
import withDashboardActions from '@/containers/Dashboard/withDashboardActions';
|
|
import withDialogActions from '@/containers/Dialog/withDialogActions';
|
|
import withUniversalSearchActions from '@/containers/UniversalSearch/withUniversalSearchActions';
|
|
|
|
import { compose } from '@/utils';
|
|
|
|
function GlobalHotkeys({
|
|
// #withDashboardActions
|
|
toggleSidebarExpand,
|
|
|
|
// withUniversalSearchActions
|
|
openGlobalSearch,
|
|
|
|
// #withDialogActions
|
|
openDialog,
|
|
}) {
|
|
const history = useHistory();
|
|
const routes = getDashboardRoutes();
|
|
|
|
const globalHotkeys = routes
|
|
.filter(({ hotkey }) => hotkey)
|
|
.map(({ hotkey }) => hotkey)
|
|
.toString();
|
|
|
|
const handleSidebarToggleBtn = () => {
|
|
toggleSidebarExpand();
|
|
};
|
|
useHotkeys(
|
|
globalHotkeys,
|
|
(event, handle) => {
|
|
routes.map(({ path, hotkey }) => {
|
|
if (handle.key === hotkey) {
|
|
history.push(path);
|
|
}
|
|
});
|
|
},
|
|
[history],
|
|
);
|
|
useHotkeys('ctrl+/', () => {
|
|
handleSidebarToggleBtn();
|
|
});
|
|
useHotkeys('shift+d', () => {
|
|
openDialog('money-in', {});
|
|
});
|
|
useHotkeys('shift+q', () => {
|
|
openDialog('money-out', {});
|
|
});
|
|
useHotkeys('/', () => {
|
|
setTimeout(() => {
|
|
openGlobalSearch();
|
|
}, 0);
|
|
});
|
|
|
|
return <div></div>;
|
|
}
|
|
|
|
export default compose(
|
|
withDashboardActions,
|
|
withDialogActions,
|
|
withUniversalSearchActions,
|
|
)(GlobalHotkeys);
|