mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8e04ba87b7
Port 2cd31b3177
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
19 lines
381 B
JavaScript
19 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,
|
|
};
|
|
};
|