@wufengteam/wform
Version:
@wufengteam/wform
86 lines • 5.46 kB
JavaScript
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _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(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
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(arr) { if (Array.isArray(arr)) return arr; }
var __rest = this && this.__rest || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
import React, { useEffect, useRef, useState } from 'react';
import { Typography, Row, Col, Space, Button } from 'antd';
import { prefix } from '../utils';
import AMapContainer from './AMapContainer';
import * as Map from './libs/Map';
import BMapContainer from './BMapContainer';
var LocationResult = function LocationResult(_a) {
var _b, _c, _d, _e;
var poi = _a.poi,
onDelete = _a.onDelete,
readOnly = _a.readOnly,
showLngLat = _a.showLngLat,
showMap = _a.showMap,
isAMap = _a.isAMap,
activeKey = _a.activeKey,
restProps = __rest(_a, ["poi", "onDelete", "readOnly", "showLngLat", "showMap", "isAMap", "activeKey"]);
var mapRef = useRef(null);
var _useState = useState(false),
_useState2 = _slicedToArray(_useState, 2),
loaded = _useState2[0],
setLoaded = _useState2[1];
useEffect(function () {
var _a;
if (loaded && poi) {
Map.addMarker((_a = mapRef.current) === null || _a === void 0 ? void 0 : _a.map, poi);
}
}, [poi, loaded]);
useEffect(function () {
if (!showMap) setLoaded(false);
}, [showMap]);
return /*#__PURE__*/React.createElement("div", {
className: "".concat(prefix, "-location-description")
}, /*#__PURE__*/React.createElement(Row, {
gutter: [10, 10]
}, /*#__PURE__*/React.createElement(Col, {
span: 24
}, /*#__PURE__*/React.createElement(Typography.Text, null, poi.name)), showLngLat && ( /*#__PURE__*/React.createElement(Col, {
span: 24
}, /*#__PURE__*/React.createElement(Space, {
direction: "horizontal"
}, /*#__PURE__*/React.createElement(Typography.Text, {
type: "secondary"
}, "\u7ECF\u5EA6\uFF1A", (_b = poi === null || poi === void 0 ? void 0 : poi.location) === null || _b === void 0 ? void 0 : _b.lng), /*#__PURE__*/React.createElement(Typography.Text, {
type: "secondary"
}, "\u7EF4\u5EA6\uFF1A", (_c = poi === null || poi === void 0 ? void 0 : poi.location) === null || _c === void 0 ? void 0 : _c.lat)))), showMap && ( /*#__PURE__*/React.createElement(Col, {
span: 24
}, isAMap ? ( /*#__PURE__*/React.createElement(AMapContainer, {
ref: mapRef,
renderType: restProps === null || restProps === void 0 ? void 0 : restProps.renderType,
customEngineApi: restProps === null || restProps === void 0 ? void 0 : restProps.customEngineApi,
className: "".concat(prefix, "-location-description-map-container"),
center: [(_d = poi === null || poi === void 0 ? void 0 : poi.location) === null || _d === void 0 ? void 0 : _d.lng, (_e = poi === null || poi === void 0 ? void 0 : poi.location) === null || _e === void 0 ? void 0 : _e.lat],
onMapLoaded: function onMapLoaded() {
setLoaded(true);
},
activeKey: activeKey
})) : ( /*#__PURE__*/React.createElement(BMapContainer, {
renderType: restProps === null || restProps === void 0 ? void 0 : restProps.renderType,
customEngineApi: restProps === null || restProps === void 0 ? void 0 : restProps.customEngineApi,
className: "".concat(prefix, "-location-description-map-container"),
currentPoi: Object.assign(Object.assign({}, poi), {
point: poi.location
})
})))), !readOnly && ( /*#__PURE__*/React.createElement(Col, {
span: 24
}, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, {
flex: 1
}), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Button, {
onClick: onDelete
}, "\u5220\u9664")))))));
};
export default LocationResult;