mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-24 17:28:07 +01:00
8e04ba87b7
Port 2cd31b3177
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
18 lines
381 B
JavaScript
18 lines
381 B
JavaScript
export const MODAL_OPEN = 'MODAL_OPEN';
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
export function openModal(type, props) {
|
|
return {
|
|
type: MODAL_OPEN,
|
|
modalType: type,
|
|
modalProps: props,
|
|
};
|
|
};
|
|
|
|
export function closeModal(type, options = { ignoreFocus: false }) {
|
|
return {
|
|
type: MODAL_CLOSE,
|
|
modalType: type,
|
|
ignoreFocus: options.ignoreFocus,
|
|
};
|
|
};
|