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-09-13 01:24:33 -07:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
2017-12-03 23:26:40 -08:00
|
|
|
import { HEIGHT_CACHE_SET, HEIGHT_CACHE_CLEAR } from 'flavours/glitch/actions/height_cache';
|
2017-09-13 01:24:33 -07:00
|
|
|
|
|
|
|
const initialState = ImmutableMap();
|
|
|
|
|
|
|
|
const setHeight = (state, key, id, height) => {
|
|
|
|
return state.update(key, ImmutableMap(), map => map.set(id, height));
|
|
|
|
};
|
|
|
|
|
|
|
|
const clearHeights = () => {
|
|
|
|
return ImmutableMap();
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function statuses(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
|
|
|
case HEIGHT_CACHE_SET:
|
|
|
|
return setHeight(state, action.key, action.id, action.height);
|
|
|
|
case HEIGHT_CACHE_CLEAR:
|
|
|
|
return clearHeights();
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
};
|