2017-09-13 18:24:33 +10:00
|
|
|
import { Map as ImmutableMap } from 'immutable';
|
2023-05-24 01:15:17 +10:00
|
|
|
|
2017-09-13 18:24:33 +10:00
|
|
|
import { HEIGHT_CACHE_SET, HEIGHT_CACHE_CLEAR } from '../actions/height_cache';
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2022-12-19 02:51:37 +11:00
|
|
|
}
|