aboutsummaryrefslogtreecommitdiff
path: root/src/background/reducers/setting.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-28 20:05:06 +0900
committerGitHub <noreply@github.com>2018-07-28 20:05:06 +0900
commited2bd7d75ee1e7aa1db7d03c3f908c740ded1983 (patch)
tree6ac3f5ac5126e1a07c958549c782aedd586c6534 /src/background/reducers/setting.js
parent84a9655bb39e5902b417e124a0eb23d80808a6a7 (diff)
parent4bd2084ba7b23327c26a2d8b24dc4169c14bfa17 (diff)
Merge pull request #440 from ueokande/background-clean-architecture
Background clean architecture
Diffstat (limited to 'src/background/reducers/setting.js')
-rw-r--r--src/background/reducers/setting.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/background/reducers/setting.js b/src/background/reducers/setting.js
deleted file mode 100644
index 8dbc1b4..0000000
--- a/src/background/reducers/setting.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import actions from 'background/actions';
-
-const defaultState = {
- value: {},
-};
-
-export default function reducer(state = defaultState, action = {}) {
- switch (action.type) {
- case actions.SETTING_SET_SETTINGS:
- return {
- value: action.value,
- };
- case actions.SETTING_SET_PROPERTY:
- return {
- value: { ...state.value,
- properties: { ...state.value.properties, [action.name]: action.value }}
- };
- default:
- return state;
- }
-}
-