UNPKG

react-naver-maps

Version:

React Navermaps API integration for modern development.

64 lines (61 loc) 2.53 kB
"use strict"; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/container.tsx var container_exports = {}; __export(container_exports, { Container: () => Container }); module.exports = __toCommonJS(container_exports); var import_react2 = require("react"); // src/contexts/container.ts var import_react = require("react"); var ContainerContext = (0, import_react.createContext)({ element: null }); // src/container.tsx var import_jsx_runtime = require("react/jsx-runtime"); var innerDefaultStyle = { top: 0, left: 0, width: "100%", height: "100%", position: "absolute", zIndex: 0 }; function Container({ children, fallback, innerStyle = innerDefaultStyle, ...restProps }) { const ref = (0, import_react2.useRef)(null); const [isMounted, setIsMounted] = (0, import_react2.useState)(false); (0, import_react2.useEffect)(() => { setIsMounted(true); }, []); const containerContext = (0, import_react2.useMemo)(() => ({ element: ref.current }), [ref.current]); return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)("div", { ...restProps, style: { position: "relative", ...restProps.style }, children: [ /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ref, style: innerStyle }, "mapdiv"), isMounted && ref.current ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(ContainerContext.Provider, { value: containerContext, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react2.Suspense, { fallback: null, children: typeof children === "function" ? (0, import_react2.createElement)(children) : children }) }) : fallback ] }); } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { Container }); //# sourceMappingURL=container.js.map