2017-04-23 11:56:50 +02:00
|
|
|
import * as types from 'constants/action_types'
|
|
|
|
|
|
|
|
const reducers = {}
|
|
|
|
const defaultState = {
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.FETCH_FEATURED_CONTENT_STARTED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
fetchingFeaturedContent: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.FETCH_FEATURED_CONTENT_COMPLETED] = function(state, action) {
|
|
|
|
const {
|
2017-05-04 05:44:08 +02:00
|
|
|
uris,
|
|
|
|
success
|
2017-04-23 11:56:50 +02:00
|
|
|
} = 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,
|
|
|
|
featuredUris: uris
|
2017-04-23 11:56:50 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-23 16:01:00 +02:00
|
|
|
reducers[types.RESOLVE_URI_STARTED] = function(state, action) {
|
|
|
|
const {
|
|
|
|
uri
|
|
|
|
} = action.data
|
|
|
|
|
|
|
|
const oldResolving = state.resolvingUris || []
|
|
|
|
const newResolving = Object.assign([], oldResolving)
|
|
|
|
if (newResolving.indexOf(uri) == -1) newResolving.push(uri)
|
|
|
|
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
resolvingUris: newResolving
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.RESOLVE_URI_COMPLETED] = function(state, action) {
|
|
|
|
const {
|
|
|
|
uri,
|
|
|
|
} = action.data
|
|
|
|
const resolvingUris = state.resolvingUris
|
|
|
|
const index = state.resolvingUris.indexOf(uri)
|
|
|
|
const newResolvingUris = [
|
|
|
|
...resolvingUris.slice(0, index),
|
|
|
|
...resolvingUris.slice(index + 1)
|
|
|
|
]
|
|
|
|
|
|
|
|
const newState = Object.assign({}, state, {
|
|
|
|
resolvingUris: newResolvingUris,
|
|
|
|
})
|
|
|
|
|
|
|
|
return Object.assign({}, state, newState)
|
|
|
|
}
|
|
|
|
|
2017-04-23 18:10:45 +02:00
|
|
|
reducers[types.FETCH_DOWNLOADED_CONTENT_STARTED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
fetchingDownloadedContent: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.FETCH_DOWNLOADED_CONTENT_COMPLETED] = function(state, action) {
|
|
|
|
const {
|
|
|
|
fileInfos
|
|
|
|
} = action.data
|
|
|
|
const newDownloadedContent = Object.assign({}, state.downloadedContent, {
|
|
|
|
fileInfos
|
|
|
|
})
|
|
|
|
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
downloadedContent: newDownloadedContent,
|
|
|
|
fetchingDownloadedContent: false,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.FETCH_PUBLISHED_CONTENT_STARTED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
fetchingPublishedContent: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.FETCH_PUBLISHED_CONTENT_COMPLETED] = function(state, action) {
|
|
|
|
const {
|
|
|
|
fileInfos
|
|
|
|
} = action.data
|
|
|
|
const newPublishedContent = Object.assign({}, state.publishedContent, {
|
|
|
|
fileInfos
|
|
|
|
})
|
|
|
|
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
publishedContent: newPublishedContent,
|
|
|
|
fetchingPublishedContent: false,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|