aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-22 00:01:24 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-07-22 00:01:24 +0900
commit89c28d67fd7b961833b557da904bd17aa28660c5 (patch)
tree2af29fb34f81e9dba508a4bccad98fad73dea143 /src/background/controllers
parent0652131de885df3ebb7c9c0e762fd1604486a892 (diff)
Settings as clean architecture
Diffstat (limited to 'src/background/controllers')
-rw-r--r--src/background/controllers/setting.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/background/controllers/setting.js b/src/background/controllers/setting.js
new file mode 100644
index 0000000..9e6019e
--- /dev/null
+++ b/src/background/controllers/setting.js
@@ -0,0 +1,18 @@
+import SettingInteractor from '../usecases/setting';
+import ContentMessageClient from '../infrastructures/content-message-client';
+
+export default class SettingController {
+ constructor() {
+ this.settingInteractor = new SettingInteractor();
+ this.contentMessageClient = new ContentMessageClient();
+ }
+
+ getSetting() {
+ return this.settingInteractor.get();
+ }
+
+ async reload() {
+ await this.settingInteractor.reload();
+ this.contentMessageClient.broadcastSettingsChanged();
+ }
+}