12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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) {
- return {
- type: OPEN_OVERLAY2,
- overlay,
- extraProps,
- };
- }
- 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,
- };
- }
|