From 53891495d6f6b901da3058b1227d326313d922e9 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 27 Aug 2021 14:54:19 +0200 Subject: put simplest, asynchronous local storage operations in a separate file --- common/storage_raw.js | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 common/storage_raw.js (limited to 'common') diff --git a/common/storage_raw.js b/common/storage_raw.js new file mode 100644 index 0000000..9ce3980 --- /dev/null +++ b/common/storage_raw.js @@ -0,0 +1,49 @@ +/** + * part of Hachette + * Basic wrappers for storage API functions. + * + * Copyright (C) 2021 Wojtek Kosior + * Redistribution terms are gathered in the `copyright' file. + */ + +/* + * IMPORTS_START + * IMPORT TYPE_PREFIX + * IMPORT browser + * IMPORT is_chrome + * IMPORTS_END + */ + +async function get(key) +{ + /* Fix for fact that Chrome does not use promises here */ + const promise = is_chrome ? + new Promise(resolve => chrome.storage.local.get(key, resolve)) : + browser.storage.local.get(key); + + return (await promise)[key]; +} + +async function set(key_or_object, value) +{ + return browser.storage.local.set(typeof key_or_object === "object" ? + key_or_object : {[key]: value}); +} + +async function set_var(name, value) +{ + return set(TYPE_PREFIX.VAR + name, value); +} + +async function get_var(name) +{ + return get(TYPE_PREFIX.VAR + name); +} + +const raw_storage = {get, set, get_var, set_var}; + +/* + * EXPORTS_START + * EXPORT raw_storage + * EXPORTS_END + */ -- cgit v1.2.3