2017-04-07 07:15:22 +02:00
|
|
|
import * as types from 'constants/action_types'
|
2017-04-29 11:50:29 +02:00
|
|
|
import lbry from 'lbry'
|
2017-04-07 07:15:22 +02:00
|
|
|
|
|
|
|
const reducers = {}
|
|
|
|
const defaultState = {
|
|
|
|
isLoaded: false,
|
2017-04-24 09:25:27 +02:00
|
|
|
currentPath: 'discover',
|
2017-04-07 07:15:22 +02:00
|
|
|
platform: process.platform,
|
|
|
|
drawerOpen: sessionStorage.getItem('drawerOpen') || true,
|
2017-04-22 15:17:01 +02:00
|
|
|
upgradeSkipped: sessionStorage.getItem('upgradeSkipped'),
|
|
|
|
daemonReady: false,
|
2017-04-27 06:45:02 +02:00
|
|
|
platform: window.navigator.platform,
|
2017-04-29 11:50:29 +02:00
|
|
|
obscureNsfw: !lbry.getClientSetting('showNsfw'),
|
|
|
|
hidePrice: false,
|
|
|
|
hasSignature: false,
|
2017-04-07 07:15:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.NAVIGATE] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
2017-04-24 09:25:27 +02:00
|
|
|
currentPath: action.data.path,
|
2017-04-07 07:15:22 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPGRADE_CANCELLED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
downloadProgress: null,
|
|
|
|
downloadComplete: false,
|
|
|
|
modal: null,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPGRADE_DOWNLOAD_COMPLETED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
downloadDir: action.data.dir,
|
|
|
|
downloadComplete: true,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPGRADE_DOWNLOAD_STARTED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
upgradeDownloading: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPGRADE_DOWNLOAD_COMPLETED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
upgradeDownloading: false,
|
|
|
|
upgradeDownloadCompleted: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.SKIP_UPGRADE] = function(state, action) {
|
|
|
|
sessionStorage.setItem('upgradeSkipped', true);
|
|
|
|
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
upgradeSkipped: true,
|
|
|
|
modal: null
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPDATE_VERSION] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
version: action.data.version
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.OPEN_MODAL] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
modal: action.data.modal,
|
|
|
|
extraContent: action.data.errorList
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.CLOSE_MODAL] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
modal: undefined,
|
|
|
|
extraContent: undefined
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.OPEN_DRAWER] = function(state, action) {
|
|
|
|
sessionStorage.setItem('drawerOpen', false)
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
drawerOpen: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.CLOSE_DRAWER] = function(state, action) {
|
|
|
|
sessionStorage.setItem('drawerOpen', false)
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
drawerOpen: false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
reducers[types.UPGRADE_DOWNLOAD_PROGRESSED] = function(state, action) {
|
|
|
|
return Object.assign({}, state, {
|
|
|
|
downloadProgress: action.data.percent
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-22 15:17:01 +02:00
|
|
|
reducers[types.DAEMON_READY] = function(state, action) {
|
2017-04-22 15:46:04 +02:00
|
|
|
window.sessionStorage.setItem('loaded', 'y')
|
2017-04-22 15:17:01 +02:00
|
|
|
return Object.assign({}, state, {
|
|
|
|
daemonReady: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-04-07 07:15:22 +02:00
|
|
|
export default function reducer(state = defaultState, action) {
|
|
|
|
const handler = reducers[action.type];
|
|
|
|
if (handler) return handler(state, action);
|
|
|
|
return state;
|
|
|
|
}
|