@ryo-98/react-api-bridge
Version:
A registry for component imperative api
38 lines (37 loc) • 1.61 kB
JavaScript
;
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);
var useUpperAPI_exports = {};
__export(useUpperAPI_exports, {
useUpperAPI: () => useUpperAPI
});
module.exports = __toCommonJS(useUpperAPI_exports);
var import_core = require("../../core/index.js");
var import_react = require("react");
function useUpperAPI(apiBridge, name, hookOptions, bridgeOptions) {
const {
onInit
} = hookOptions || {};
const contextValue = (0, import_core.useFinalContextValue)(hookOptions, apiBridge.BridgeContext);
const _apiNList = (0, import_react.useMemo)(() => {
return (0, import_core.getUpperApiDesc)(contextValue, name, hookOptions, bridgeOptions)?.apiNList;
}, []);
if (!_apiNList) return;
(0, import_core.useInitEffect)(onInit, name, _apiNList, contextValue, apiBridge.cacheInitCbMap, bridgeOptions, apiBridge.initializedOnInitMap);
return _apiNList;
}