@wordpress/core-data
Version:
Access to and manipulation of core WordPress entities.
54 lines (52 loc) • 1.84 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/core-data/src/hooks/utils.ts
var utils_exports = {};
__export(utils_exports, {
getResolutionStatus: () => getResolutionStatus
});
module.exports = __toCommonJS(utils_exports);
var import_constants = require("./constants.cjs");
function getResolutionStatus(resolutionStatus) {
let status;
switch (resolutionStatus) {
case "resolving":
status = import_constants.Status.Resolving;
break;
case "finished":
status = import_constants.Status.Success;
break;
case "error":
status = import_constants.Status.Error;
break;
default:
status = import_constants.Status.Idle;
}
return {
status,
isResolving: status === import_constants.Status.Resolving,
hasStarted: status !== import_constants.Status.Idle,
hasResolved: status === import_constants.Status.Success || status === import_constants.Status.Error
};
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
getResolutionStatus
});
//# sourceMappingURL=utils.cjs.map