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

91 lines
2.3 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import * as types from "constants/action_types";
2017-04-23 11:56:50 +02:00
2017-06-06 06:21:55 +02:00
const reducers = {};
const defaultState = {
playingUri: null,
2017-07-30 00:56:08 +02:00
rewardedContentClaimIds: [],
channelClaimCounts: {},
};
2017-04-23 11:56:50 +02:00
reducers[types.FETCH_FEATURED_CONTENT_STARTED] = function(state, action) {
return Object.assign({}, state, {
2017-06-06 23:19:12 +02:00
fetchingFeaturedContent: true,
});
2017-06-06 06:21:55 +02:00
};
2017-04-23 11:56:50 +02:00
reducers[types.FETCH_FEATURED_CONTENT_COMPLETED] = function(state, action) {
2017-06-06 23:19:12 +02:00
const { uris, success } = action.data;
2017-05-04 05:44:08 +02:00
2017-04-23 11:56:50 +02:00
return Object.assign({}, state, {
fetchingFeaturedContent: false,
2017-05-04 05:44:08 +02:00
fetchingFeaturedContentFailed: !success,
2017-06-06 23:19:12 +02:00
featuredUris: uris,
});
2017-06-06 06:21:55 +02:00
};
2017-04-23 11:56:50 +02:00
2017-08-08 11:36:14 +02:00
reducers[types.FETCH_REWARD_CONTENT_COMPLETED] = function(state, action) {
const { claimIds, success } = action.data;
return Object.assign({}, state, {
2017-07-30 00:56:08 +02:00
rewardedContentClaimIds: claimIds,
});
};
reducers[types.RESOLVE_URIS_STARTED] = function(state, action) {
let { uris } = action.data;
2017-04-23 16:01:00 +02:00
2017-06-06 23:19:12 +02:00
const oldResolving = state.resolvingUris || [];
const newResolving = Object.assign([], oldResolving);
2017-04-23 16:01:00 +02:00
for (let uri of uris) {
if (!newResolving.includes(uri)) {
newResolving.push(uri);
}
}
2017-04-23 16:01:00 +02:00
return Object.assign({}, state, {
resolvingUris: newResolving,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
reducers[types.RESOLVE_URIS_COMPLETED] = function(state, action) {
const { resolveInfo } = action.data;
const channelClaimCounts = Object.assign({}, state.channelClaimCounts);
for (let [uri, { certificate, claims_in_channel }] of Object.entries(
resolveInfo
)) {
if (certificate && !isNaN(claims_in_channel)) {
channelClaimCounts[uri] = claims_in_channel;
}
}
return Object.assign({}, state, {
channelClaimCounts,
resolvingUris: (state.resolvingUris || []).filter(uri => !resolveInfo[uri]),
});
};
reducers[types.SET_PLAYING_URI] = (state, action) => {
return Object.assign({}, state, {
playingUri: action.data.uri,
});
};
2017-08-24 23:12:23 +02:00
reducers[types.FETCH_CHANNEL_CLAIM_COUNT_COMPLETED] = function(state, action) {
const channelClaimCounts = Object.assign({}, state.channelClaimCounts);
2017-08-24 23:12:23 +02:00
const { uri, totalClaims } = action.data;
2017-07-17 08:06:04 +02:00
channelClaimCounts[uri] = totalClaims;
2017-07-17 08:06:04 +02:00
return Object.assign({}, state, {
channelClaimCounts,
2017-07-17 08:06:04 +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;
}