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.
2017-02-04 17:48:11 -08:00
|
|
|
import {
|
|
|
|
MEDIA_OPEN,
|
|
|
|
MODAL_CLOSE,
|
|
|
|
MODAL_INDEX_DECREASE,
|
|
|
|
MODAL_INDEX_INCREASE
|
|
|
|
} from '../actions/modal';
|
|
|
|
import Immutable from 'immutable';
|
2016-10-24 09:07:40 -07:00
|
|
|
|
|
|
|
const initialState = Immutable.Map({
|
2017-02-04 17:48:11 -08:00
|
|
|
media: null,
|
|
|
|
index: 0,
|
2016-10-24 09:07:40 -07:00
|
|
|
open: false
|
|
|
|
});
|
|
|
|
|
|
|
|
export default function modal(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2017-01-16 04:27:58 -08:00
|
|
|
case MEDIA_OPEN:
|
|
|
|
return state.withMutations(map => {
|
2017-02-04 17:48:11 -08:00
|
|
|
map.set('media', action.media);
|
|
|
|
map.set('index', action.index);
|
2017-01-16 04:27:58 -08:00
|
|
|
map.set('open', true);
|
|
|
|
});
|
|
|
|
case MODAL_CLOSE:
|
|
|
|
return state.set('open', false);
|
2017-02-04 17:48:11 -08:00
|
|
|
case MODAL_INDEX_DECREASE:
|
|
|
|
return state.update('index', index => Math.max(index - 1, 0));
|
|
|
|
case MODAL_INDEX_INCREASE:
|
|
|
|
return state.update('index', index => Math.min(index + 1, state.get('media').size - 1));
|
2017-01-16 04:27:58 -08:00
|
|
|
default:
|
|
|
|
return state;
|
2016-10-24 09:07:40 -07:00
|
|
|
}
|
|
|
|
};
|