@wordpress/commands
Version:
Handles the commands menu.
42 lines (40 loc) • 1.8 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);
// packages/commands/src/hooks/use-command-context.js
var use_command_context_exports = {};
__export(use_command_context_exports, {
default: () => useCommandContext
});
module.exports = __toCommonJS(use_command_context_exports);
var import_element = require("@wordpress/element");
var import_data = require("@wordpress/data");
var import_store = require("../store");
var import_lock_unlock = require("../lock-unlock");
function useCommandContext(context) {
const { getContext } = (0, import_data.useSelect)(import_store.store);
const initialContext = (0, import_element.useRef)(getContext());
const { setContext } = (0, import_lock_unlock.unlock)((0, import_data.useDispatch)(import_store.store));
(0, import_element.useEffect)(() => {
setContext(context);
}, [context, setContext]);
(0, import_element.useEffect)(() => {
const initialContextRef = initialContext.current;
return () => setContext(initialContextRef);
}, [setContext]);
}
//# sourceMappingURL=use-command-context.js.map