kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
198 lines (178 loc) • 6.07 kB
JavaScript
// Copyright (c) 2018 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 React, {Component} from 'react';
import PropTypes from 'prop-types';
import Sortable from 'react-anything-sortable';
import styled from 'styled-components';
import {createSelector} from 'reselect';
import LayerPanel from './layer-panel/layer-panel';
import SourceDataCatalog from './source-data-catalog';
import {Add} from 'components/common/icons';
import ItemSelector from 'components/common/item-selector/item-selector';
import {
PanelLabel,
SidePanelDivider,
SidePanelSection,
Button
} from 'components/common/styled-components';
import {LAYER_BLENDINGS} from 'constants/default-settings';
const StyledSortable = styled.div`
.ui-sortable {
display: block;
position: relative;
overflow: visible;
user-select: none;
:before {
content: ' ';
display: table;
}
:after {
content: ' ';
display: table;
}
}
.ui-sortable-item.ui-sortable-dragging {
position: absolute;
z-index: 1688;
cursor: move;
}
.ui-sortable-item.ui-sortable-dragging:hover {
cursor: move;
opacity: 0.5;
}
.ui-sortable-placeholder {
display: none;
}
.ui-sortable-placeholder.visible {
display: block;
opacity: 0;
z-index: -1;
}
`;
export default class LayerManager extends Component {
static propTypes = {
addLayer: PropTypes.func.isRequired,
datasets: PropTypes.object.isRequired,
layerBlending: PropTypes.string.isRequired,
layerClasses: PropTypes.object.isRequired,
layers: PropTypes.arrayOf(PropTypes.any).isRequired,
layerConfigChange: PropTypes.func.isRequired,
layerVisualChannelConfigChange: PropTypes.func.isRequired,
layerTypeChange: PropTypes.func.isRequired,
layerVisConfigChange: PropTypes.func.isRequired,
openModal: PropTypes.func.isRequired,
removeLayer: PropTypes.func.isRequired,
removeDataset: PropTypes.func.isRequired,
showDatasetTable: PropTypes.func.isRequired,
updateLayerBlending: PropTypes.func.isRequired,
updateLayerOrder: PropTypes.func.isRequired
};
layerClassSelector = props => props.layerClasses;
layerTypeOptionsSelector = createSelector(
this.layerClassSelector,
layerClasses => Object.keys(layerClasses).map(key => {
const layer = new layerClasses[key]();
return {
id: key,
label: layer.name,
icon: layer.layerIcon
};
}));
_addEmptyNewLayer = () => {
this.props.addLayer();
};
_handleSort = order => {
this.props.updateLayerOrder(order);
};
render() {
const {layers, datasets, layerOrder, openModal} = this.props;
const defaultDataset = Object.keys(datasets)[0];
const layerTypeOptions = this.layerTypeOptionsSelector(this.props);
const layerActions = {
layerConfigChange: this.props.layerConfigChange,
layerVisualChannelConfigChange: this.props.layerVisualChannelConfigChange,
layerTypeChange: this.props.layerTypeChange,
layerVisConfigChange: this.props.layerVisConfigChange,
removeLayer: this.props.removeLayer
};
const panelProps = {datasets, openModal, layerTypeOptions};
return (
<StyledSortable className="layer-manager">
<SourceDataCatalog
datasets={datasets}
showDatasetTable={this.props.showDatasetTable}
removeDataset={this.props.removeDataset}
showDeleteDataset
/>
<Button
onClick={this.props.showAddDataModal}
isInactive={!defaultDataset}
width="105px"
secondary
>
<Add height="12px" />Add Data
</Button>
<SidePanelDivider />
<SidePanelSection>
<Sortable
onSort={this._handleSort}
direction="vertical"
sortHandle="sort--handle"
dynamic
>
{layerOrder.map(idx => (
<LayerPanel
{...panelProps}
{...layerActions}
sortData={idx}
key={layers[idx].id}
idx={idx}
layer={layers[idx]}
/>
))}
</Sortable>
</SidePanelSection>
<SidePanelSection>
{defaultDataset ? (
<Button onClick={this._addEmptyNewLayer} width="105px">
<Add height="12px" />Add Layer
</Button>
) : null}
</SidePanelSection>
<LayerBlendingSelector
layerBlending={this.props.layerBlending}
updateLayerBlending={this.props.updateLayerBlending}
/>
</StyledSortable>
);
}
}
const LayerBlendingSelector = ({layerBlending, updateLayerBlending}) => (
<SidePanelSection>
<PanelLabel>Layer Blending</PanelLabel>
<ItemSelector
selectedItems={layerBlending}
options={Object.keys(LAYER_BLENDINGS)}
multiSelect={false}
searchable={false}
onChange={updateLayerBlending}
/>
</SidePanelSection>
);