aboutsummaryrefslogtreecommitdiff
path: root/src/background/repositories/SettingRepository.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-05-07 21:16:47 +0900
committerGitHub <noreply@github.com>2019-05-07 21:16:47 +0900
commit05ef6a8ca35aaa801c11eb6b4896caa3690058af (patch)
tree2c7708ca91ac2b462cc86aa28612e3d3943496f3 /src/background/repositories/SettingRepository.js
parent457d954e08923b4accd28a919c72d0b61db1bb98 (diff)
parent27d0a7f37d24a0ad68a8ccb7dee18fc1d00eea58 (diff)
Merge pull request #578 from ueokande/move-to-typescript
Move to TypeScript
Diffstat (limited to 'src/background/repositories/SettingRepository.js')
-rw-r--r--src/background/repositories/SettingRepository.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/background/repositories/SettingRepository.js b/src/background/repositories/SettingRepository.js
deleted file mode 100644
index c4667a9..0000000
--- a/src/background/repositories/SettingRepository.js
+++ /dev/null
@@ -1,23 +0,0 @@
-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);
- }
-}