* feat: wip import csv * feat: start implementing twenty UI * feat: new radio button component * feat: use new radio button component and fix scroll issue * fix: max height modal * feat: wip try to customize react-data-grid to match design * feat: wip match columns * feat: wip match column selection * feat: match column * feat: clean heading component & try to fix scroll in last step * feat: validation step * fix: small cleaning and remove unused component * feat: clean folder architecture * feat: remove translations * feat: remove chackra theme * feat: remove unused libraries * feat: use option button to open spreadsheet & fix stories * Fix lint and fix imports --------- Co-authored-by: Charles Bochet <charles@twenty.com>
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import { useSetRecoilState } from 'recoil';
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
import { DialogOptions, dialogSetQueueState } from '../states/dialogState';
|
|
|
|
export function useDialog() {
|
|
const setDialogQueue = useSetRecoilState(dialogSetQueueState);
|
|
|
|
const enqueueDialog = (options?: Omit<DialogOptions, 'id'>) => {
|
|
setDialogQueue({
|
|
id: uuidv4(),
|
|
...options,
|
|
});
|
|
};
|
|
|
|
return { enqueueDialog };
|
|
}
|