aboutsummaryrefslogtreecommitdiff
path: root/src/background/repositories/SettingRepository.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-02-24 22:45:47 +0900
committerGitHub <noreply@github.com>2019-02-24 22:45:47 +0900
commitdfeb7e75498384af5e24255ee0fe7f8af37ac489 (patch)
tree12094b3a72d20d07c4cb040c37849c4680fd222b /src/background/repositories/SettingRepository.js
parent83684a78e6e54b1e15bd4280553e28eb1d21df09 (diff)
parent80a4a347ec92f3e702075e448aba191ad3627cf6 (diff)
Merge pull request #544 from ueokande/refactor-background
Refactor background
Diffstat (limited to 'src/background/repositories/SettingRepository.js')
-rw-r--r--src/background/repositories/SettingRepository.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/background/repositories/SettingRepository.js b/src/background/repositories/SettingRepository.js
new file mode 100644
index 0000000..c4667a9
--- /dev/null
+++ b/src/background/repositories/SettingRepository.js
@@ -0,0 +1,23 @@
+import MemoryStorage from '../infrastructures/MemoryStorage';
+
+const CACHED_SETTING_KEY = 'setting';
+
+export default class SettingRepository {
+ constructor() {
+ this.cache = new MemoryStorage();
+ }
+
+ get() {
+ return Promise.resolve(this.cache.get(CACHED_SETTING_KEY));
+ }
+
+ update(value) {
+ return this.cache.set(CACHED_SETTING_KEY, value);
+ }
+
+ async setProperty(name, value) {
+ let current = await this.get();
+ current.properties[name] = value;
+ return this.update(current);
+ }
+}