UNPKG

kepler.gl.geoiq

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

135 lines (119 loc) 4.24 kB
// Copyright (c) 2019 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import ActionTypes from 'constants/action-types'; import {fitBoundsUpdater} from './map-state-updaters'; import {toggleModalUpdater} from './ui-state-updaters'; import {updateVisDataUpdater} from './vis-state-updaters'; import {receiveMapConfigUpdater as stateMapConfigUpdater} from './map-state-updaters'; import {receiveMapConfigUpdater as styleMapConfigUpdater} from './map-style-updaters'; import {findMapBounds} from 'utils/data-utils'; import {filterData} from 'utils/filter-utils'; import KeplerGlSchema from 'schemas'; // compose action to apply result multiple reducers, with the output of one /** * Apply data and config to visState reducer * @param {object} state * @param {object} action * @param {object} action.options * @param {Boolean} action.options.centerMap * @param {Boolean} action.options.readOnly * @param {object} action.config * @returns state new reducer state */ export const updateVisDataComposed = (state, action) => { // keep a copy of oldLayers const oldLayers = state.visState.layers; const defaultOptions = { centerMap: true, disabledAddDefaultLayers: false }; const options = { ...defaultOptions, ...action.options }; action.options = { ...defaultOptions, ...action.options }; const visState = updateVisDataUpdater(state.visState, action); let bounds; if (options.centerMap) { // find map bounds for new layers const newLayers = visState.layers.filter( nl => !oldLayers.find(ol => ol === nl) ); bounds = findMapBounds(newLayers); } return { ...state, visState, mapState: bounds ? fitBoundsUpdater(state.mapState, { payload: bounds }) : state.mapState, uiState: { ...toggleModalUpdater(state.uiState, {payload: null}), ...(options.hasOwnProperty('readOnly') ? {readOnly: options.readOnly} : {}) } }; }; /** * Combine data and full configuration update in a single action * @param state * @param action {datasets, options, config} * @returns state */ export const addDataToMapComposed = (state, action) => { const {datasets, options, config} = action.payload; let parsedConfig = config; if (config && config.config && config.version) { // if passed in saved config parsedConfig = KeplerGlSchema.parseSavedConfig(config); } // Update visState store var mergedState = updateVisDataComposed(state, { datasets, options, config: parsedConfig && parsedConfig.visState }); // Update mapState store mergedState = { ...mergedState, mapState: stateMapConfigUpdater(mergedState.mapState, { payload: {mapState: parsedConfig && parsedConfig.mapState} }) }; // Update mapStyle store mergedState = { ...mergedState, mapStyle: styleMapConfigUpdater(mergedState.mapStyle, { payload: {mapStyle: parsedConfig && parsedConfig.mapStyle} }) }; return mergedState; }; const compostedUpdaters = { [ActionTypes.UPDATE_VIS_DATA]: updateVisDataComposed, [ActionTypes.ADD_DATA_TO_MAP]: addDataToMapComposed }; export default compostedUpdaters;