-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPlotInfoTool.jsx
335 lines (327 loc) · 15.1 KB
/
PlotInfoTool.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/**
* Copyright 2019-2021 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 React from 'react';
import {connect} from 'react-redux';
import axios from 'axios';
import FileSaver from 'file-saver';
import isEmpty from 'lodash.isempty';
import PropTypes from 'prop-types';
import {LayerRole, addThemeSublayer, addLayerFeatures, removeLayer} from 'qwc2/actions/layers';
import {logAction} from 'qwc2/actions/logging';
import {zoomToPoint} from 'qwc2/actions/map';
import {setCurrentTask} from 'qwc2/actions/task';
import Icon from 'qwc2/components/Icon';
import MapSelection from 'qwc2/components/MapSelection';
import ResizeableWindow from 'qwc2/components/ResizeableWindow';
import Spinner from 'qwc2/components/widgets/Spinner';
import ConfigUtils from 'qwc2/utils/ConfigUtils';
import CoordinatesUtils from 'qwc2/utils/CoordinatesUtils';
import LocaleUtils from 'qwc2/utils/LocaleUtils';
import MapUtils from 'qwc2/utils/MapUtils';
import {UrlParams} from 'qwc2/utils/PermaLinkUtils';
import VectorLayerUtils from 'qwc2/utils/VectorLayerUtils';
import './style/PlotInfoTool.css';
class PlotInfoTool extends React.Component {
static propTypes = {
addLayerFeatures: PropTypes.func,
addThemeSublayer: PropTypes.func,
currentTask: PropTypes.string,
customInfoComponents: PropTypes.object,
infoQueries: PropTypes.array,
logAction: PropTypes.func,
map: PropTypes.object,
removeLayer: PropTypes.func,
setCurrentTask: PropTypes.func,
theme: PropTypes.object,
themeLayerRestorer: PropTypes.func,
toolLayers: PropTypes.array,
windowSize: PropTypes.object,
zoomToPoint: PropTypes.func
};
static defaultProps = {
toolLayers: [],
infoQueries: [],
customInfoComponents: {},
windowSize: {width: 500, height: 800}
};
state = {
plotInfo: null,
currentPlot: null,
expandedInfo: null,
expandedInfoData: null,
pendingPdfs: []
};
componentDidUpdate(prevProps, prevState) {
if (this.props.theme && !prevProps.theme) {
if (UrlParams.getParam('realty') !== undefined) {
this.props.setCurrentTask('PlotInfoTool');
} else {
for (const entry of this.props.infoQueries) {
if (entry.urlKey && UrlParams.getParam(entry.urlKey)) {
this.props.setCurrentTask('PlotInfoTool');
this.queryInfoByEgrid(entry, UrlParams.getParam(entry.urlKey));
UrlParams.updateParams({[entry.urlKey]: undefined});
break;
}
}
}
} else if (this.props.currentTask === 'PlotInfoTool' && prevProps.currentTask !== 'PlotInfoTool') {
this.activated();
} else if (this.props.currentTask !== 'PlotInfoTool' && prevProps.currentTask === 'PlotInfoTool') {
this.deactivated();
}
if (this.state.plotInfo) {
if (
this.state.plotInfo !== prevState.plotInfo ||
this.state.currentPlot !== prevState.currentPlot
) {
const layer = {
id: "plotselection",
role: LayerRole.SELECTION
};
const wkt = this.state.plotInfo[this.state.currentPlot].geom;
const feature = VectorLayerUtils.wktToGeoJSON(wkt, "EPSG:2056", this.props.map.projection);
feature.styleName = 'default';
feature.styleOptions = {
fillColor: [0, 0, 0, 0],
strokeColor: [242, 151, 84, 0.75],
strokeWidth: 8,
strokeDash: []
};
this.props.addLayerFeatures(layer, [feature], true);
}
} else if (prevState.plotInfo && !this.state.plotInfo) {
this.props.removeLayer("plotselection");
}
}
render() {
if (this.props.currentTask !== 'PlotInfoTool') {
return null;
}
let resultDialog = null;
if (!isEmpty(this.state.plotInfo)) {
let scrollable = false;
if (this.state.expandedInfo) {
const entry = this.props.infoQueries.find(e => e.key === this.state.expandedInfo);
if (entry) {
scrollable = entry.scrollmode === "parent";
}
}
resultDialog = (
<ResizeableWindow icon="plot_info" initialHeight={this.props.windowSize.height}
initialWidth={this.props.windowSize.width} initialX={0}
initialY={0} key="PlotInfoWindow" onClose={() => this.props.setCurrentTask(null)}
scrollable={scrollable} title={LocaleUtils.tr("appmenu.items.PlotInfoTool")}
>
{this.renderBody()}
</ResizeableWindow>
);
}
const assetsPath = ConfigUtils.getAssetsPath();
const selectionStyleOptions = {
fillColor: [0, 0, 0, 0],
strokeColor: [0, 0, 0, 0]
};
return [resultDialog, (
<MapSelection
active cursor={'url("' + assetsPath + '/img/plot-info-marker.png") 12 12, default'}
geomType="Point"
geometryChanged={geom => this.queryBasicInfoAtPoint(geom.coordinates)} key="MapSelection"
styleOptions={selectionStyleOptions}
/>
)];
}
renderBody = () => {
const plotServiceUrl = ConfigUtils.getConfigProp("plotInfoService").replace(/\/$/, '');
const plot = this.state.plotInfo[this.state.currentPlot];
return (
<div className="plot-info-dialog-body" role="body">
<div className="plot-info-dialog-header">
{this.state.plotInfo.map((entry, idx) => ([(
<div className="plot-info-result-header" key={"result-header-" + idx} onClick={() => this.toggleCurrentPlot(idx)}>
<Icon icon={this.state.currentPlot === idx ? "collapse" : "expand"} />
<span>{entry.label}</span>
</div>
), this.state.currentPlot !== idx ? null : (
<div className="plot-info-result-body" key={"result-body-" + idx}>
<table><tbody>
{plot.fields.map(e => (
<tr key={e.key}>
<td dangerouslySetInnerHTML={{__html: e.key}} />
<td><div dangerouslySetInnerHTML={{__html: e.value}} /></td>
</tr>
))}
</tbody></table>
</div>
)]))}
</div>
<div className="plot-info-dialog-queries">
{this.props.infoQueries.map((entry) => {
let query = entry.query.replace('$egrid$', plot.egrid);
if (!query.startsWith('http')) {
query = plotServiceUrl + query;
}
let pdfQuery = entry.pdfQuery ? entry.pdfQuery.replace('$egrid$', plot.egrid) : null;
if (pdfQuery && !pdfQuery.startsWith('http')) {
pdfQuery = plotServiceUrl + pdfQuery;
}
const pdfTooltip = entry.pdfTooltip ? LocaleUtils.tr(entry.pdfTooltip) : "";
const expanded = this.state.expandedInfo === entry.key;
return [
(
<div className="plot-info-dialog-query-title" key={entry.key + "-title"} onClick={() => this.toggleEgridInfo(entry, query)}>
<Icon icon={expanded ? "collapse" : "expand"} />
<span>{entry.titleMsgId ? LocaleUtils.tr(entry.titleMsgId) : entry.title}</span>
{entry.pdfQuery ?
this.state.pendingPdfs.includes(pdfQuery) ? (<Spinner />) :
(<Icon icon="pdf" onClick={ev => this.queryPdf(ev, entry, pdfQuery)} title={pdfTooltip} />)
: null}
</div>
),
expanded ? (
<div className="plot-info-dialog-query-result" key={entry.key + "-result"}>
{!this.state.expandedInfoData ? this.renderWait() : this.state.expandedInfoData.failed ? this.renderError() : this.renderInfoData()}
</div>
) : null
];
})}
</div>
</div>
);
};
toggleCurrentPlot = (idx) => {
if (this.state.currentPlot !== idx) {
this.setState({currentPlot: idx, expandedInfo: null, expandedInfoData: null, pendingPdfs: []});
}
};
renderWait = () => {
return (
<div className="plot-info-dialog-query-loading">
<Spinner />
<span>{LocaleUtils.tr("plotinfotool.loading")}</span>
</div>
);
};
renderError = () => {
return (
<div className="plot-info-dialog-query-failed">
{this.state.expandedInfoData.failed === true ? LocaleUtils.tr("plotinfotool.failed") : LocaleUtils.tr(this.state.expandedInfoData.failed)}
</div>
);
};
renderInfoData = () => {
if (this.props.customInfoComponents[this.state.expandedInfo]) {
const Component = this.props.customInfoComponents[this.state.expandedInfo];
const config = (this.props.infoQueries.find(entry => entry.key === this.state.expandedInfo) || {}).cfg || {};
return (<Component config={config} data={this.state.expandedInfoData} />);
} else {
const assetsPath = ConfigUtils.getAssetsPath();
const src = assetsPath + "/templates/blank.html";
return (
<iframe onLoad={ev => this.setIframeContent(ev.target, this.state.expandedInfoData)} src={src} />
);
}
};
setIframeContent = (iframe, html) => {
if (!iframe.getAttribute("identify-content-set")) {
iframe.setAttribute("identify-content-set", true);
const doc = iframe.contentDocument || iframe.contentWindow.document;
doc.open();
doc.write(html);
doc.close();
}
};
activated = () => {
this.props.themeLayerRestorer(this.props.toolLayers, null, layers => {
this.props.addThemeSublayer({sublayers: layers});
});
};
deactivated = () => {
this.setState({plotInfo: null, currentPlot: null, expandedInfo: null, expandedInfoData: null, pendingPdfs: []});
};
queryBasicInfoAtPoint = (point) => {
const serviceUrl = ConfigUtils.getConfigProp("plotInfoService").replace(/\/$/, '') + '/';
const params = {
x: point[0],
y: point[1]
};
axios.get(serviceUrl, {params}).then(response => {
const plotInfo = !isEmpty(response.data.plots) ? response.data.plots : null;
this.setState({plotInfo: plotInfo, currentPlot: 0, expandedInfo: null, expandedInfoData: null});
}).catch(() => {});
};
queryInfoByEgrid = (query, egrid) => {
const serviceUrl = ConfigUtils.getConfigProp("plotInfoService").replace(/\/$/, '');
axios.get(serviceUrl + '/query/' + egrid).then(response => {
const plotInfo = !isEmpty(response.data.plots) ? response.data.plots : null;
this.setState({plotInfo: plotInfo, currentPlot: 0, expandedInfo: null, expandedInfoData: null});
if (plotInfo) {
const bounds = CoordinatesUtils.reprojectBbox(plotInfo[0].bbox, 'EPSG:2056', this.props.map.projection);
const zoom = MapUtils.getZoomForExtent(bounds, this.props.map.resolutions, this.props.map.size, 0, this.props.map.scales.length - 1) - 1;
this.props.zoomToPoint([0.5 * (bounds[0] + bounds[2]), 0.5 * (bounds[1] + bounds[3])], zoom, 'EPSG:2056');
let url = query.query.replace('$egrid$', egrid);
if (!url.startsWith('http')) {
url = serviceUrl + url;
}
this.toggleEgridInfo(query, url);
}
}).catch(e => {
// eslint-disable-next-line
alert("Query failed");
// eslint-disable-next-line
console.warn(e);
});
};
queryPdf = (ev, infoEntry, queryUrl) => {
this.props.logAction("PLOTINFO_PDF_QUERY", {info: infoEntry.key});
ev.stopPropagation();
this.setState((state) => ({pendingPdfs: [...state.pendingPdfs, queryUrl]}));
axios.get(queryUrl, {responseType: 'blob', validateStatus: status => status >= 200 && status < 300 && status !== 204}).then(response => {
const contentType = response.headers["content-type"];
let filename = infoEntry.key + '.pdf';
try {
const contentDisposition = response.headers["content-disposition"];
filename = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/.exec(contentDisposition)[1];
} catch (e) {
/* Pass */
}
FileSaver.saveAs(new Blob([response.data], {type: contentType}), filename);
this.setState((state) => ({pendingPdfs: state.pendingPdfs.filter(entry => entry !== queryUrl)}));
}).catch(() => {
this.setState((state) => ({pendingPdfs: state.pendingPdfs.filter(entry => entry !== queryUrl)}));
const errorMsg = infoEntry.failMsgId ? LocaleUtils.tr(infoEntry.failMsgId) : "";
// eslint-disable-next-line
alert(errorMsg || "Print failed");
});
};
toggleEgridInfo = (infoEntry, queryUrl) => {
if (this.state.expandedInfo === infoEntry.key) {
this.setState({expandedInfo: null, expandedInfoData: null});
} else {
this.props.logAction("PLOTINFO_QUERY", {info: infoEntry.key});
this.setState({expandedInfo: infoEntry.key, expandedInfoData: null});
axios.get(queryUrl).then(response => {
this.setState({expandedInfoData: response.data || {failed: infoEntry.failMsgId || true}});
}).catch(() => {
this.setState({expandedInfoData: {failed: infoEntry.failMsgId || true}});
});
}
};
}
export default connect(state => ({
map: state.map,
theme: state.theme.current,
currentTask: state.task.id
}), {
setCurrentTask: setCurrentTask,
addThemeSublayer: addThemeSublayer,
addLayerFeatures: addLayerFeatures,
removeLayer: removeLayer,
zoomToPoint: zoomToPoint,
logAction: logAction
})(PlotInfoTool);