@vtx/cs-map
Version:
React components for Vortex
114 lines (109 loc) • 6.93 kB
JavaScript
;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = _default;
var _react = _interopRequireWildcard(require("react"));
var _reactDom = _interopRequireDefault(require("react-dom"));
var _ahooks = require("ahooks");
var _useProps2 = _interopRequireDefault(require("../use-props"));
var _Dom = _interopRequireDefault(require("./Dom"));
var _excluded = ["data", "getParentContainer", "style", "cssText", "show", "avoid", "children", "_registerDomLayer"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
// 将 jsx 的 style 小驼峰的 key 属性,转化为 cssText 的 -
var convertCamelToCSS = function convertCamelToCSS(style) {
var cssText = '';
for (var property in style) {
if (style.hasOwnProperty(property)) {
var value = style[property];
if (value && typeof value === 'number' && !isNaN(value)) {
value = value + 'px';
}
var cssProperty = property.replace(/([A-Z])/g, '-$1').toLowerCase();
cssText += "".concat(cssProperty, ": ").concat(value, "; ");
}
}
return cssText;
};
function _default(props) {
var data = props.data,
getParentContainer = props.getParentContainer,
style = props.style,
cssText = props.cssText,
_props$show = props.show,
show = _props$show === void 0 ? true : _props$show,
_props$avoid = props.avoid,
avoid = _props$avoid === void 0 ? true : _props$avoid,
children = props.children,
_registerDomLayer = props._registerDomLayer,
otherProps = _objectWithoutProperties(props, _excluded);
var _useProps = (0, _useProps2["default"])(),
map = _useProps.map;
var domRef = (0, _react.useRef)(document.createElement('div'));
var overlay = (0, _react.useRef)();
var unregisterRef = (0, _react.useRef)();
(0, _react.useEffect)(function () {
setStyle(cssText, style);
overlay.current = new _Dom["default"](_objectSpread({
map: map,
position: data,
element: domRef.current,
positioning: "bottom-center",
offset: [0, -10]
}, otherProps));
var parentDom = getParentContainer ? getParentContainer() : map._element;
parentDom.appendChild(domRef.current);
// 如果有DomLayer注册函数,则注册此DOM元素
if (_registerDomLayer) {
unregisterRef.current = _registerDomLayer(domRef.current, {
avoid: avoid
});
}
return function () {
overlay.current.destroy();
// 调用注销函数
if (unregisterRef.current) {
unregisterRef.current();
}
parentDom.removeChild(domRef.current);
};
}, []);
(0, _ahooks.useUpdateEffect)(function () {
setStyle(cssText, style);
}, [cssText, JSON.stringify(style)]);
(0, _ahooks.useUpdateEffect)(function () {
overlay.current.setPosition(data);
}, [JSON.stringify(data)]);
(0, _ahooks.useUpdateEffect)(function () {
domRef.current.style.display = show ? 'block' : 'none';
}, [show]);
var setStyle = function setStyle(_cssText, _style) {
var _domRef$current;
var cssText = ((_domRef$current = domRef.current) === null || _domRef$current === void 0 || (_domRef$current = _domRef$current.style) === null || _domRef$current === void 0 ? void 0 : _domRef$current.cssText) || "\n display: ".concat(show ? 'block' : 'none', ";\n position: absolute;\n user-select: none;\n pointer-events: none;\n ");
// 兼容css未加;
if (_cssText) {
var lastStr = _cssText[_cssText.length - 1];
if (lastStr !== ';') {
_cssText = "".concat(_cssText, "; ");
}
cssText = "\n ".concat(cssText, "\n ").concat(_cssText, "\n ");
}
if (_style) {
// 转换为CSS文本
var styleToCss = convertCamelToCSS(_style);
cssText = "\n ".concat(cssText, "\n ").concat(styleToCss, "\n ");
}
domRef.current.style.cssText = cssText;
};
return /*#__PURE__*/_reactDom["default"].createPortal(children, domRef.current);
}
//# sourceMappingURL=index.js.map