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

122 lines
2.9 KiB
JavaScript
Raw Normal View History

2017-06-06 23:19:12 +02:00
import * as types from "constants/action_types";
import lbry from "lbry";
2017-04-07 07:15:22 +02:00
2017-06-06 06:21:55 +02:00
const reducers = {};
2017-04-07 07:15:22 +02:00
const defaultState = {
isLoaded: false,
2017-06-06 23:19:12 +02:00
currentPath: "discover",
2017-04-07 07:15:22 +02:00
platform: process.platform,
2017-06-06 23:19:12 +02:00
upgradeSkipped: sessionStorage.getItem("upgradeSkipped"),
2017-04-22 15:17:01 +02:00
daemonReady: false,
2017-06-06 23:19:12 +02:00
obscureNsfw: !lbry.getClientSetting("showNsfw"),
hasSignature: false,
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
2017-05-02 05:57:50 +02:00
reducers[types.DAEMON_READY] = function(state, action) {
return Object.assign({}, state, {
daemonReady: true,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
2017-05-02 05:57:50 +02:00
2017-05-06 09:25:14 +02:00
reducers[types.CHANGE_PATH] = function(state, action) {
2017-04-07 07:15:22 +02:00
return Object.assign({}, state, {
currentPath: action.data.path,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.UPGRADE_CANCELLED] = function(state, action) {
return Object.assign({}, state, {
downloadProgress: null,
2017-05-25 22:07:32 +02:00
upgradeDownloadComplete: false,
2017-04-07 07:15:22 +02:00
modal: null,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.UPGRADE_DOWNLOAD_COMPLETED] = function(state, action) {
return Object.assign({}, state, {
downloadPath: action.data.path,
2017-05-25 22:07:32 +02:00
upgradeDownloading: false,
2017-06-06 23:19:12 +02:00
upgradeDownloadCompleted: true,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.UPGRADE_DOWNLOAD_STARTED] = function(state, action) {
return Object.assign({}, state, {
2017-06-06 23:19:12 +02:00
upgradeDownloading: true,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.SKIP_UPGRADE] = function(state, action) {
2017-06-06 23:19:12 +02:00
sessionStorage.setItem("upgradeSkipped", true);
2017-04-07 07:15:22 +02:00
return Object.assign({}, state, {
upgradeSkipped: true,
2017-06-06 23:19:12 +02:00
modal: null,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.UPDATE_VERSION] = function(state, action) {
return Object.assign({}, state, {
2017-06-06 23:19:12 +02:00
version: action.data.version,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.OPEN_MODAL] = function(state, action) {
return Object.assign({}, state, {
modal: action.data.modal,
2017-06-06 23:19:12 +02:00
modalExtraContent: action.data.extraContent,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.CLOSE_MODAL] = function(state, action) {
return Object.assign({}, state, {
modal: undefined,
2017-06-06 23:19:12 +02:00
modalExtraContent: undefined,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
reducers[types.UPGRADE_DOWNLOAD_PROGRESSED] = function(state, action) {
return Object.assign({}, state, {
2017-06-06 23:19:12 +02:00
downloadProgress: action.data.percent,
});
2017-06-06 06:21:55 +02:00
};
2017-04-07 07:15:22 +02:00
2017-05-23 09:21:21 +02:00
reducers[types.SHOW_SNACKBAR] = function(state, action) {
2017-06-06 23:19:12 +02:00
const { message, linkText, linkTarget, isError } = action.data;
const snackBar = Object.assign({}, state.snackBar);
const snacks = Object.assign([], snackBar.snacks);
2017-05-23 09:21:21 +02:00
snacks.push({
message,
linkText,
linkTarget,
isError,
2017-06-06 23:19:12 +02:00
});
2017-05-23 09:21:21 +02:00
const newSnackBar = Object.assign({}, snackBar, {
snacks,
2017-06-06 23:19:12 +02:00
});
2017-05-23 09:21:21 +02:00
return Object.assign({}, state, {
snackBar: newSnackBar,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
2017-05-23 09:21:21 +02:00
reducers[types.REMOVE_SNACKBAR_SNACK] = function(state, action) {
2017-06-06 23:19:12 +02:00
const snackBar = Object.assign({}, state.snackBar);
const snacks = Object.assign([], snackBar.snacks);
snacks.shift();
2017-05-23 09:21:21 +02:00
const newSnackBar = Object.assign({}, snackBar, {
snacks,
2017-06-06 23:19:12 +02:00
});
2017-05-23 09:21:21 +02:00
return Object.assign({}, state, {
snackBar: newSnackBar,
2017-06-06 23:19:12 +02:00
});
2017-06-06 06:21:55 +02:00
};
2017-05-23 09:21:21 +02:00
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;
}