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