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