summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-10-03 16:17:26 +0200
committerGitHub <noreply@github.com>2019-10-03 16:17:26 +0200
commitd518de728b18dbde70b7d4b7879eddd75331422e (patch)
tree158666723a249b98bde0ff6f5f1ce3c488215123
parentefca8f66b9609a267d7311905682341d207ceb11 (diff)
parent07e3d2e771ce02595e257e40113f1cfdc973c945 (diff)
Provide our own initialstate (#1292)
Provide our own initialstate
-rw-r--r--src/models/rfcProps.js3
-rw-r--r--src/services/initialstate.js42
2 files changed, 44 insertions, 1 deletions
diff --git a/src/models/rfcProps.js b/src/models/rfcProps.js
index b908b63d..89361a43 100644
--- a/src/models/rfcProps.js
+++ b/src/models/rfcProps.js
@@ -20,7 +20,8 @@
*
*/
import { VCardTime } from 'ical.js'
-import { loadState } from 'nextcloud-initial-state'
+// import { loadState } from 'nextcloud-initial-state'
+import { loadState } from '../services/initialstate'
import ActionCopyNtoFN from '../components/Actions/ActionCopyNtoFN'
import ActionToggleYear from '../components/Actions/ActionToggleYear'
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)
+ }
+}