forked from extern/bruno
82 lines
2.5 KiB
JavaScript
82 lines
2.5 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
import find from 'lodash/find';
|
|
import Mousetrap from 'mousetrap';
|
|
import { useSelector, useDispatch } from 'react-redux';
|
|
import { saveRequest, sendRequest } from 'providers/ReduxStore/slices/collections';
|
|
import { requestSaved } from 'providers/ReduxStore/slices/tabs';
|
|
import { findCollectionByUid, findItemInCollection } from 'utils/collections';
|
|
|
|
export const HotkeysContext = React.createContext();
|
|
|
|
export const HotkeysProvider = props => {
|
|
const dispatch = useDispatch();
|
|
const tabs = useSelector((state) => state.tabs.tabs);
|
|
const collections = useSelector((state) => state.collections.collections);
|
|
const activeTabUid = useSelector((state) => state.tabs.activeTabUid);
|
|
|
|
// save hotkey
|
|
useEffect(() => {
|
|
Mousetrap.bind(['command+s', 'ctrl+s'], (e) => {
|
|
if(activeTabUid) {
|
|
const activeTab = find(tabs, (t) => t.uid === activeTabUid);
|
|
if(activeTab) {
|
|
// todo: these dispatches need to be chained and errors need to be handled
|
|
dispatch(saveRequest(activeTab.uid, activeTab.collectionUid));
|
|
dispatch(requestSaved({
|
|
itemUid: activeTab.uid
|
|
}))
|
|
}
|
|
}
|
|
|
|
return false; // this stops the event bubbling
|
|
});
|
|
|
|
return () => {
|
|
Mousetrap.unbind(['command+s', 'ctrl+s']);
|
|
};
|
|
}, [activeTabUid, tabs, saveRequest, requestSaved]);
|
|
|
|
// send request (ctrl/cmd + enter)
|
|
useEffect(() => {
|
|
Mousetrap.bind(['ctrl+command', 'ctrl+enter'], (e) => {
|
|
if(activeTabUid) {
|
|
const activeTab = find(tabs, (t) => t.uid === activeTabUid);
|
|
if(activeTab) {
|
|
const collection = findCollectionByUid(collections, activeTab.collectionUid);
|
|
|
|
if(collection) {
|
|
const item = findItemInCollection(collection, activeTab.uid);
|
|
if(item) {
|
|
dispatch(sendRequest(item, collection.uid));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return false; // this stops the event bubbling
|
|
});
|
|
|
|
return () => {
|
|
Mousetrap.unbind(['ctrl+command', 'ctrl+enter']);
|
|
};
|
|
}, [activeTabUid, tabs, saveRequest, requestSaved, collections]);
|
|
|
|
return (
|
|
<HotkeysContext.Provider {...props} value='hotkey'>
|
|
{props.children}
|
|
</HotkeysContext.Provider>
|
|
);
|
|
};
|
|
|
|
export const useHotkeys = () => {
|
|
const context = React.useContext(HotkeysContext);
|
|
|
|
if (!context) {
|
|
throw new Error(`useHotkeys must be used within a HotkeysProvider`);
|
|
}
|
|
|
|
return context;
|
|
}
|
|
|
|
export default HotkeysProvider;
|