chinwagsocial/app/assets/javascripts/components/actions/modal.jsx

32 lines
566 B
React
Raw Normal View History

2016-10-25 03:07:40 +11:00
export const MEDIA_OPEN = 'MEDIA_OPEN';
export const MODAL_CLOSE = 'MODAL_CLOSE';
export const MODAL_INDEX_DECREASE = 'MODAL_INDEX_DECREASE';
export const MODAL_INDEX_INCREASE = 'MODAL_INDEX_INCREASE';
export function openMedia(media, index) {
2016-10-25 03:07:40 +11:00
return {
type: MEDIA_OPEN,
media,
index
2016-10-25 03:07:40 +11:00
};
};
export function closeModal() {
return {
type: MODAL_CLOSE
};
};
export function decreaseIndexInModal() {
return {
type: MODAL_INDEX_DECREASE
};
};
export function increaseIndexInModal() {
return {
type: MODAL_INDEX_INCREASE
};
};