@wufengteam/wform
Version:
@wufengteam/wform
76 lines • 4.24 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, { useState } from 'react';
import { Modal } from 'antd';
import LocationPC from './LocationPC';
import { prefix } from '../utils';
import LocationMobile from './LocationMobile';
var LocationModal = function LocationModal(_a) {
var _a$title = _a.title,
title = _a$title === void 0 ? '定位' : _a$title,
visible = _a.visible,
initialPoi = _a.initialPoi,
onOk = _a.onOk,
locationRange = _a.locationRange,
radius = _a.radius,
platform = _a.platform,
isAMap = _a.isAMap,
restProps = __rest(_a, ["title", "visible", "initialPoi", "onOk", "locationRange", "radius", "platform", "isAMap"]);
var _useState = useState(initialPoi),
_useState2 = _slicedToArray(_useState, 2),
currentPoi = _useState2[0],
setCurrentPoi = _useState2[1];
var handleOk = function handleOk() {
onOk === null || onOk === void 0 ? void 0 : onOk(currentPoi ? {
id: currentPoi.id,
name: currentPoi.name || '',
location: currentPoi.location,
// 北京、上海等直辖市 pname 和 cityname 相同
address: "".concat(currentPoi.pname || '').concat(currentPoi.pname === currentPoi.cityname ? '' : currentPoi.cityname || '').concat(currentPoi.adname || '').concat(currentPoi.address)
} : undefined);
};
if (platform === 'h5') {
return /*#__PURE__*/React.createElement(Modal, {
className: "".concat(prefix, "-location-modal-mobile"),
visible: visible,
footer: null,
width: "100%",
closable: false
}, /*#__PURE__*/React.createElement(LocationMobile, Object.assign({
poi: currentPoi,
onChange: setCurrentPoi,
locationRange: locationRange,
radius: radius,
// @ts-ignore
onClose: restProps.onCancel,
onOk: handleOk,
isAMap: isAMap
}, restProps)));
}
return /*#__PURE__*/React.createElement(Modal, Object.assign({
className: "".concat(prefix, "-location-modal"),
title: title,
visible: visible,
width: 652,
onOk: handleOk
}, restProps), /*#__PURE__*/React.createElement(LocationPC, Object.assign({
poi: currentPoi,
onChange: setCurrentPoi,
locationRange: locationRange,
radius: radius,
isAMap: isAMap
}, restProps)));
};
export default LocationModal;