UNPKG

qwc2

Version:
7 lines 7.43 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 2020-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{SHOW_IFRAME_DIALOG,SHOW_NOTIFICATION,CLOSE_WINDOW,CLOSE_ALL_WINDOWS,REGISTER_WINDOW,UNREGISTER_WINDOW,RAISE_WINDOW,SET_SPLIT_SCREEN,SET_MENU_MARGIN,SET_TOPBAR_HEIGHT,SET_BOTTOMBAR_HEIGHT}from"../actions/windows";var defaultState={stacking:[],splitScreen:{},mapMargins:{left:0,top:0,right:0,bottom:0},windowMargins:{left:0,top:0,right:0,bottom:0},menuMargins:{left:0,right:0},topbarHeight:0,bottombarHeight:0,entries:{}};function computeMapMargins(windowMargins,menuMargins){return{left:windowMargins.left+menuMargins.left,top:windowMargins.top,right:windowMargins.right+menuMargins.right,bottom:windowMargins.bottom,splitTopAndBottomBar:windowMargins.splitTopAndBottomBar}}export default function windows(){var state=arguments.length>0&&arguments[0]!==undefined?arguments[0]:defaultState;var action=arguments.length>1?arguments[1]:undefined;switch(action.type){case SHOW_IFRAME_DIALOG:{return _objectSpread(_objectSpread({},state),{},{entries:_objectSpread(_objectSpread({},state.entries),{},_defineProperty({},action.name,{type:"iframedialog",url:action.url,options:action.options||{}}))})}case SHOW_NOTIFICATION:{return _objectSpread(_objectSpread({},state),{},{entries:_objectSpread(_objectSpread({},state.entries),{},_defineProperty({},action.name,{type:"notification",text:action.text,notificationType:action.notificationType,sticky:action.sticky}))})}case CLOSE_WINDOW:{var newState=_objectSpread(_objectSpread({},state),{},{entries:_objectSpread({},state.entries)});delete newState.entries[action.name];return newState}case CLOSE_ALL_WINDOWS:{return _objectSpread(_objectSpread({},state),{},{entries:Object.entries(state.entries).reduce(function(res,_ref){var _ref2=_slicedToArray(_ref,2),name=_ref2[0],entry=_ref2[1];if(entry.sticky){res[name]=entry}return res},{})})}case REGISTER_WINDOW:{return _objectSpread(_objectSpread({},state),{},{stacking:[].concat(_toConsumableArray(state.stacking),[action.id])})}case UNREGISTER_WINDOW:{return _objectSpread(_objectSpread({},state),{},{stacking:state.stacking.filter(function(x){return x!==action.id})})}case RAISE_WINDOW:{return _objectSpread(_objectSpread({},state),{},{stacking:[].concat(_toConsumableArray(state.stacking.filter(function(x){return x!==action.id})),[action.id])})}case SET_SPLIT_SCREEN:{var newSplitScreen=_objectSpread({},state.splitScreen);if(action.side===null){delete newSplitScreen[action.windowId]}else{newSplitScreen[action.windowId]={side:action.side,size:action.size,splitTopAndBottomBar:action.splitTopAndBottomBar}}var splitWindows=Object.values(newSplitScreen);var windowMargins={right:splitWindows.filter(function(entry){return entry.side==="right"}).reduce(function(res,e){return Math.max(e.size,res)},0),bottom:splitWindows.filter(function(entry){return entry.side==="bottom"}).reduce(function(res,e){return Math.max(e.size,res)},0),left:splitWindows.filter(function(entry){return entry.side==="left"}).reduce(function(res,e){return Math.max(e.size,res)},0),top:splitWindows.filter(function(entry){return entry.side==="top"}).reduce(function(res,e){return Math.max(e.size,res)},0),splitTopAndBottomBar:splitWindows.find(function(x){return x.splitTopAndBottomBar===true})!==undefined};return _objectSpread(_objectSpread({},state),{},{splitScreen:newSplitScreen,windowMargins:windowMargins,mapMargins:computeMapMargins(windowMargins,state.menuMargins)})}case SET_MENU_MARGIN:{var menuMargins={right:action.right,left:action.left};return _objectSpread(_objectSpread({},state),{},{menuMargins:menuMargins,mapMargins:computeMapMargins(state.windowMargins,menuMargins)})}case SET_TOPBAR_HEIGHT:{document.querySelector(":root").style.setProperty("--topbar-height",action.height+"px");if(action.height<=0){return state}return _objectSpread(_objectSpread({},state),{},{topbarHeight:action.height})}case SET_BOTTOMBAR_HEIGHT:{document.querySelector(":root").style.setProperty("--bottombar-height",action.height+"px");if(action.height<=0){return state}return _objectSpread(_objectSpread({},state),{},{bottombarHeight:action.height})}default:return state}}