UNPKG

qwc2

Version:
128 lines (127 loc) 7.58 kB
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); } function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); } function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); } function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); } function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } } function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; } function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } } function _arrayWithHoles(r) { if (Array.isArray(r)) return r; } function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; } function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } /** * Copyright 2016 GeoSolutions Sas * Copyright 2016-2024 Sourcepole AG * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. */ import { LOCAL_CONFIG_LOADED, SET_STARTUP_PARAMETERS, SET_COLOR_SCHEME, SET_USER_INFO_FIELDS, SET_PERMALINK_PARAMETERS, REGISTER_CUSTOM_PLUGIN, UNREGISTER_CUSTOM_PLUGIN } from '../actions/localConfig'; import ConfigUtils from '../utils/ConfigUtils'; import { UrlParams } from '../utils/PermaLinkUtils'; var defaultState = _objectSpread(_objectSpread({}, ConfigUtils.getDefaults()), {}, { customPlugins: [], startupParams: {}, startupState: {}, permalinkParams: {}, colorScheme: 'default' }); export default function localConfig() { var state = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultState; var action = arguments.length > 1 ? arguments[1] : undefined; switch (action.type) { case LOCAL_CONFIG_LOADED: { return _objectSpread(_objectSpread({}, state), action.config); } case SET_STARTUP_PARAMETERS: { return _objectSpread(_objectSpread({}, state), {}, { startupParams: action.params, startupState: action.state }); } case SET_COLOR_SCHEME: { var root = document.querySelector(':root'); if (state.colorScheme) { root.classList.remove(state.colorScheme); } var newColorScheme = action.colorScheme || state.defaultColorScheme || "default"; if (newColorScheme) { root.classList.add(newColorScheme); } if (UrlParams.getParam("style")) { UrlParams.updateParams({ style: newColorScheme }); } if (action.storeInLocalStorage) { localStorage.setItem('qwc2-color-scheme', newColorScheme); } return _objectSpread(_objectSpread({}, state), {}, { colorScheme: newColorScheme }); } case SET_USER_INFO_FIELDS: { return _objectSpread(_objectSpread({}, state), {}, { user_infos: _objectSpread(_objectSpread({}, state.user_infos), action.fields) }); } case SET_PERMALINK_PARAMETERS: { return _objectSpread(_objectSpread({}, state), {}, { permalinkParams: Object.entries(_objectSpread(_objectSpread({}, state.permalinkParams), action.params)).reduce(function (res, _ref) { var _ref2 = _slicedToArray(_ref, 2), key = _ref2[0], value = _ref2[1]; if (value !== undefined) { res[key] = value; } return res; }, {}) }); } case REGISTER_CUSTOM_PLUGIN: { return _objectSpread(_objectSpread({}, state), {}, { customPlugins: [].concat(_toConsumableArray(state.customPlugins), _toConsumableArray(action.name)), plugins: { desktop: state.plugins.desktop.map(function (entry) { if (entry.name === action.name) { return _objectSpread(_objectSpread({}, entry), {}, { availableIn3D: action.availableIn3D }); } return entry; }), mobile: state.plugins.mobile.map(function (entry) { if (entry.name === action.name) { return _objectSpread(_objectSpread({}, entry), {}, { availableIn3D: action.availableIn3D }); } return entry; }) } }); } case UNREGISTER_CUSTOM_PLUGIN: { return _objectSpread(_objectSpread({}, state), {}, { customPlugins: state.customPlugins.filter(function (el) { return el !== action.name; }) }); } default: return state; } }