From 07e3d2e771ce02595e257e40113f1cfdc973c945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Thu, 3 Oct 2019 15:41:01 +0200 Subject: Provide our own initialstate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- src/models/rfcProps.js | 3 ++- src/services/initialstate.js | 42 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 src/services/initialstate.js 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 + * + * @author Roeland Jago Douma + * + * @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 . + * + */ + +/** + * @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) + } +} -- cgit v1.2.3