aboutsummaryrefslogtreecommitdiff
path: root/src/background/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-01-08 21:54:16 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-01-08 22:04:33 +0900
commit6083e70ea089fa2683741a1118be0e4e6b76f858 (patch)
treede282571884396e961a10cd447572c0fb1e370ea /src/background/actions
parentd23c190cad81ec2109f69b4afa957194d029caaf (diff)
separate setting actions and reducers
Diffstat (limited to 'src/background/actions')
-rw-r--r--src/background/actions/index.js4
-rw-r--r--src/background/actions/setting.js13
2 files changed, 17 insertions, 0 deletions
diff --git a/src/background/actions/index.js b/src/background/actions/index.js
new file mode 100644
index 0000000..8c212c2
--- /dev/null
+++ b/src/background/actions/index.js
@@ -0,0 +1,4 @@
+export default {
+ // Settings
+ SETTING_SET_SETTINGS: 'setting.set.settings',
+};
diff --git a/src/background/actions/setting.js b/src/background/actions/setting.js
new file mode 100644
index 0000000..0454a68
--- /dev/null
+++ b/src/background/actions/setting.js
@@ -0,0 +1,13 @@
+import actions from '../actions';
+import * as settingsStorage from 'shared/settings/storage';
+
+const load = () => {
+ return settingsStorage.loadValue().then((value) => {
+ return {
+ type: actions.SETTING_SET_SETTINGS,
+ value,
+ };
+ });
+};
+
+export { load };