2017-04-01 16:11:28 -04:00
|
|
|
export const MODAL_OPEN = 'MODAL_OPEN';
|
2016-10-24 12:07:40 -04:00
|
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
|
2017-04-01 16:11:28 -04:00
|
|
|
export function openModal(type, props) {
|
2016-10-24 12:07:40 -04:00
|
|
|
return {
|
2017-04-01 16:11:28 -04:00
|
|
|
type: MODAL_OPEN,
|
|
|
|
modalType: type,
|
2017-05-20 11:31:47 -04:00
|
|
|
modalProps: props,
|
2016-10-24 12:07:40 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-02-24 18:51:01 -05:00
|
|
|
export function closeModal(type, options = { ignoreFocus: false }) {
|
2016-10-24 12:07:40 -04:00
|
|
|
return {
|
2017-05-20 11:31:47 -04:00
|
|
|
type: MODAL_CLOSE,
|
2019-08-06 05:59:46 -04:00
|
|
|
modalType: type,
|
2022-02-24 18:51:01 -05:00
|
|
|
ignoreFocus: options.ignoreFocus,
|
2016-10-24 12:07:40 -04:00
|
|
|
};
|
|
|
|
};
|