bigbuffet-rw/app/soapbox/actions/modals.ts
2022-05-27 14:11:36 -04:00

19 lines
391 B
TypeScript

export const MODAL_OPEN = 'MODAL_OPEN';
export const MODAL_CLOSE = 'MODAL_CLOSE';
/** Open a modal of the given type */
export function openModal(type: string, props?: any) {
return {
type: MODAL_OPEN,
modalType: type,
modalProps: props,
};
}
/** Close the modal */
export function closeModal(type?: string) {
return {
type: MODAL_CLOSE,
modalType: type,
};
}