@croct/plug
Version:
A fully-featured devkit for building natively personalized applications.
65 lines (64 loc) • 2.03 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 globalVariable_exports = {};
__export(globalVariable_exports, {
GlobalVariablePlugin: () => GlobalVariablePlugin,
factory: () => factory
});
module.exports = __toCommonJS(globalVariable_exports);
class GlobalVariablePlugin {
constructor(configuration) {
this.globallyAvailable = true;
this.plug = configuration.plug;
}
enable() {
if (window.croct === void 0) {
window.croct = this.plug;
this.globallyAvailable = false;
}
let callback = window.onCroctLoad;
Object.defineProperty(window, "onCroctLoad", {
configurable: true,
get: () => callback,
set: (listener) => {
this.notify(listener);
callback = listener;
}
});
this.notify(callback);
}
disable() {
if (!this.globallyAvailable) {
delete window.croct;
}
const callback = window.onCroctLoad;
delete window.onCroctLoad;
window.onCroctLoad = callback;
}
notify(callback) {
if (typeof callback === "function") {
callback(this.plug);
}
}
}
const factory = ((props) => new GlobalVariablePlugin({ plug: props.sdk.plug }));
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
GlobalVariablePlugin,
factory
});