"use strict"; "use client"; var __create = Object.create; var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __getProtoOf = Object.getPrototypeOf; 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 __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( // If the importer is in node compatibility mode or this is not an ESM // file that has been converted to a CommonJS file using a Babel- // compatible transform (i.e. "__esModule" has not been set), then set // "default" to the CommonJS "module.exports" for node compatibility. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod )); var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); // src/index.tsx var src_exports = {}; __export(src_exports, { SakanaWidget: () => SakanaWidget }); module.exports = __toCommonJS(src_exports); var import_react2 = require("react"); var import_sakana_widget = __toESM(require("sakana-widget"), 1); // src/hooks/use-consistent-reference.ts var import_dequal = require("dequal"); var import_react = require("react"); var useConsistentReference = (arg) => { const ref = (0, import_react.useRef)(); if (ref.current) { const { memoized, prev } = ref.current; if (arg === prev) { return memoized; } if ((0, import_dequal.dequal)(memoized, arg)) { ref.current = { ...ref.current, prev: arg }; return memoized; } } ref.current = { memoized: arg, prev: arg }; return arg; }; // src/index.tsx var import_jsx_runtime = require("react/jsx-runtime"); var SakanaWidget = (props) => { const { disableBounceOnMount = false, state, ...divAttrs } = props; const ref = (0, import_react2.useRef)(null); const instanceRef = (0, import_react2.useRef)(); const options = useConsistentReference(props.options); (0, import_react2.useEffect)(() => { let hasUnmounted = false; const instance = new import_sakana_widget.default(options); const originalUnmount = instance.unmount; instance.unmount = () => { hasUnmounted = true; return originalUnmount(); }; const domApp = instance._domApp; const githubIconDom = domApp.querySelector( "a.sakana-widget-ctrl-item" ); if (githubIconDom) { githubIconDom.href = "https://github.com/p-toy-factory/sakana-widget-react"; } instanceRef.current = instance; if (disableBounceOnMount) { instance.setState({ r: 0, y: 0.06 }); } const div = document.createElement("div"); ref.current.replaceChildren(div); instance.mount(div); return () => { instanceRef.current = void 0; if (!hasUnmounted) { instance.unmount(); } }; }, [disableBounceOnMount, options]); (0, import_react2.useEffect)(() => { if (state) { instanceRef.current.setState(state); } }, [state]); return /* @__PURE__ */ (0, import_jsx_runtime.jsx)("div", { ref, ...divAttrs }); }; // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { SakanaWidget });