summaryrefslogtreecommitdiffstats
path: root/src/services
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-10-03 15:41:01 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2019-10-03 15:41:01 +0200
commit07e3d2e771ce02595e257e40113f1cfdc973c945 (patch)
tree158666723a249b98bde0ff6f5f1ce3c488215123 /src/services
parentefca8f66b9609a267d7311905682341d207ceb11 (diff)
Provide our own initialstate
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'src/services')
-rw-r--r--src/services/initialstate.js42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/services/initialstate.js b/src/services/initialstate.js
new file mode 100644
index 00000000..6687236f
--- /dev/null
+++ b/src/services/initialstate.js
@@ -0,0 +1,42 @@
+/**
+ * @copyright Copyright (c) 2019 Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @author Roeland Jago Douma <roeland@famdouma.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+/**
+ * @namespace OCP.InitialState
+ */
+
+export function loadState(app, key) {
+ const elem = document.querySelector(`#initial-state-${app}-${key}`)
+ if (elem === null) {
+ const msg = `Could not find initial state ${key} of ${app}`
+ console.debug(msg)
+ throw new Error(msg)
+ }
+
+ try {
+ return JSON.parse(atob(elem.value))
+ } catch (e) {
+ const msg = `Could not parse initial state ${key} of ${app}`
+ console.debug(msg)
+ throw new Error(msg)
+ }
+}