This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-10-24 09:07:40 -07:00
|
|
|
export const MEDIA_OPEN = 'MEDIA_OPEN';
|
|
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
|
2017-02-04 17:48:11 -08:00
|
|
|
export const MODAL_INDEX_DECREASE = 'MODAL_INDEX_DECREASE';
|
|
|
|
export const MODAL_INDEX_INCREASE = 'MODAL_INDEX_INCREASE';
|
|
|
|
|
|
|
|
export function openMedia(media, index) {
|
2016-10-24 09:07:40 -07:00
|
|
|
return {
|
|
|
|
type: MEDIA_OPEN,
|
2017-02-04 17:48:11 -08:00
|
|
|
media,
|
|
|
|
index
|
2016-10-24 09:07:40 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function closeModal() {
|
|
|
|
return {
|
|
|
|
type: MODAL_CLOSE
|
|
|
|
};
|
|
|
|
};
|
2017-02-04 17:48:11 -08:00
|
|
|
|
|
|
|
export function decreaseIndexInModal() {
|
|
|
|
return {
|
|
|
|
type: MODAL_INDEX_DECREASE
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
export function increaseIndexInModal() {
|
|
|
|
return {
|
|
|
|
type: MODAL_INDEX_INCREASE
|
|
|
|
};
|
|
|
|
};
|