lbry-desktop/ui/redux/reducers/content.js

131 lines
3.4 KiB
JavaScript
Raw Normal View History

import * as ACTIONS from 'constants/action_types';
2017-04-23 11:56:50 +02:00
2017-06-06 06:21:55 +02:00
const reducers = {};
const defaultState = {
primaryUri: null, // Top level content uri triggered from the file page
playingUri: null,
channelClaimCounts: {},
positions: {},
history: [],
recommendationId: {}, // { "claimId": "recommendationId" }
recommendationParentId: {}, // { "claimId": "referrerId" }
recommendationUrls: {}, // { "claimId": [lbryUrls...] }
recommendationClicks: {}, // { "claimId": [clicked indices...] }
};
2017-04-23 11:56:50 +02:00
reducers[ACTIONS.SET_PRIMARY_URI] = (state, action) =>
2017-12-13 22:36:30 +01:00
Object.assign({}, state, {
primaryUri: action.data.uri,
});
reducers[ACTIONS.SET_PLAYING_URI] = (state, action) =>
Object.assign({}, state, {
playingUri: {
uri: action.data.uri,
source: action.data.source,
pathname: action.data.pathname,
commentId: action.data.commentId,
collectionId: action.data.collectionId,
primaryUri: state.primaryUri,
},
});
reducers[ACTIONS.TOGGLE_LOOP_LIST] = (state, action) =>
Object.assign({}, state, {
loopList: {
collectionId: action.data.collectionId,
loop: action.data.loop,
},
});
reducers[ACTIONS.TOGGLE_SHUFFLE_LIST] = (state, action) =>
Object.assign({}, state, {
shuffleList: {
collectionId: action.data.collectionId,
newUrls: action.data.newUrls,
},
});
reducers[ACTIONS.SET_CONTENT_POSITION] = (state, action) => {
const { claimId, outpoint, position } = action.data;
return {
...state,
positions: {
...state.positions,
[claimId]: {
...state.positions[claimId],
[outpoint]: position,
},
},
};
};
reducers[ACTIONS.CLEAR_CONTENT_POSITION] = (state, action) => {
const { claimId, outpoint } = action.data;
if (state.positions[claimId]) {
const numOutpoints = Object.keys(state.positions[claimId]).length;
if (numOutpoints <= 1) {
let positions = { ...state.positions };
delete positions[claimId];
return {
...state,
positions: positions,
};
} else {
let outpoints = { ...state.positions[claimId] };
delete outpoints[outpoint];
return {
...state,
positions: {
...state.positions,
[claimId]: outpoints,
},
};
}
} else {
return state;
}
};
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 07:18:22 +01:00
...state,
history: history.slice(0, index).concat(history.slice(index + 1)),
};
};
reducers[ACTIONS.CLEAR_CONTENT_HISTORY_ALL] = (state) => ({ ...state, history: [] });
2020-05-21 18:53:21 +02:00
// reducers[LBRY_REDUX_ACTIONS.PURCHASE_URI_FAILED] = (state, action) => {
// return {
// ...state,
// playingUri: null,
// };
// };
2020-05-21 17:38:28 +02:00
2017-04-23 11:56:50 +02:00
export default function reducer(state = defaultState, action) {
const handler = reducers[action.type];
if (handler) return handler(state, action);
return state;
}