File size: 569 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import * as reducerType from '../../unit/reducerType';
import { lastRecord, maxPoint } from '../../unit/const';
let initState = lastRecord && !isNaN(parseInt(lastRecord.points, 10)) ?
parseInt(lastRecord.points, 10) : 0;
if (initState < 0) {
initState = 0;
} else if (initState > maxPoint) {
initState = maxPoint;
}
const points = (state = initState, action) => {
switch (action.type) {
case reducerType.POINTS:
return action.data > maxPoint ? maxPoint : action.data; // 最大分数
default:
return state;
}
};
export default points;
|