1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- export const OPEN_OVERLAY1 = "OPEN_OVERLAY1";
- export const OPEN_OVERLAY2 = "OPEN_OVERLAY2";
- export const OPEN_OVERLAY3 = "OPEN_OVERLAY3";
- export const CLOSE_OVERLAY1 = "CLOSE_OVERLAY1";
- export const CLOSE_OVERLAY2 = "CLOSE_OVERLAY2";
- export const CLOSE_OVERLAY3 = "CLOSE_OVERLAY3";
- export function openOverlay1(overlay) {
- return {
- type: OPEN_OVERLAY1,
- overlay,
- };
- }
- export function openOverlay2(overlay, extraProps, callback) {
- return {
- type: OPEN_OVERLAY2,
- overlay,
- extraProps,
- callback,
- };
- }
- export function openOverlay3(overlay, callback) {
- return {
- type: OPEN_OVERLAY3,
- overlay,
- callback,
- };
- }
- export function closeOverlay1() {
- return {
- type: CLOSE_OVERLAY1,
- };
- }
- export function closeOverlay2() {
- return {
- type: CLOSE_OVERLAY2,
- extraValue: null,
- };
- }
- export function closeOverlay3() {
- return {
- type: CLOSE_OVERLAY3,
- };
- }
|