2017-12-21 14:32:51 -03:00
|
|
|
import * as ACTIONS from 'constants/action_types';
|
2017-04-23 16:56:50 +07:00
|
|
|
|
2017-06-05 21:21:55 -07:00
|
|
|
const reducers = {};
|
2017-07-25 03:07:54 -04:00
|
|
|
const defaultState = {
|
2017-09-17 22:08:43 -04:00
|
|
|
playingUri: null,
|
2017-10-12 09:37:24 -04:00
|
|
|
channelClaimCounts: {},
|
2018-07-31 08:36:20 -04:00
|
|
|
positions: {},
|
2018-07-31 14:07:45 -04:00
|
|
|
history: [],
|
2017-07-25 03:07:54 -04:00
|
|
|
};
|
2017-04-23 16:56:50 +07:00
|
|
|
|
2017-12-21 14:32:51 -03:00
|
|
|
reducers[ACTIONS.SET_PLAYING_URI] = (state, action) =>
|
2017-12-13 18:36:30 -03:00
|
|
|
Object.assign({}, state, {
|
2017-09-17 22:08:43 -04:00
|
|
|
playingUri: action.data.uri,
|
|
|
|
});
|
|
|
|
|
2018-07-31 08:36:20 -04:00
|
|
|
reducers[ACTIONS.SET_CONTENT_POSITION] = (state, action) => {
|
|
|
|
const { claimId, outpoint, position } = action.data;
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
positions: {
|
|
|
|
...state.positions,
|
|
|
|
[claimId]: {
|
|
|
|
...state.positions[claimId],
|
|
|
|
[outpoint]: position,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-07-31 14:07:45 -04:00
|
|
|
reducers[ACTIONS.SET_CONTENT_LAST_VIEWED] = (state, action) => {
|
|
|
|
const { uri, lastViewed } = action.data;
|
|
|
|
const { history } = state;
|
|
|
|
const historyObj = { uri, lastViewed };
|
|
|
|
const index = history.findIndex(i => i.uri === uri);
|
|
|
|
const newHistory =
|
|
|
|
index === -1
|
|
|
|
? [historyObj].concat(history)
|
|
|
|
: [historyObj].concat(history.slice(0, index), history.slice(index + 1));
|
|
|
|
return { ...state, history: [...newHistory] };
|
|
|
|
};
|
|
|
|
|
|
|
|
reducers[ACTIONS.CLEAR_CONTENT_HISTORY_URI] = (state, action) => {
|
|
|
|
const { uri } = action.data;
|
|
|
|
const { history } = state;
|
|
|
|
const index = history.findIndex(i => i.uri === uri);
|
|
|
|
return index === -1
|
|
|
|
? state
|
|
|
|
: {
|
2019-03-25 02:18:22 -04:00
|
|
|
...state,
|
|
|
|
history: history.slice(0, index).concat(history.slice(index + 1)),
|
|
|
|
};
|
2018-07-31 14:07:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
reducers[ACTIONS.CLEAR_CONTENT_HISTORY_ALL] = state => ({ ...state, history: [] });
|
|
|
|
|
2017-04-23 16:56:50 +07:00
|
|
|
export default function reducer(state = defaultState, action) {
|
|
|
|
const handler = reducers[action.type];
|
|
|
|
if (handler) return handler(state, action);
|
|
|
|
return state;
|
|
|
|
}
|