aboutsummaryrefslogtreecommitdiff
path: root/src/background/repositories/setting.js
blob: 6d485259d51bc9c0a85e59e11ee8d8039119df48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import MemoryStorage from '../infrastructures/memory-storage';

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);
  }
}