@sanity/desk-tool
Version:
Tool for managing all sorts of content in a structured manner
30 lines (29 loc) • 1.53 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PaneResolutionError = void 0;
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
/**
* An error thrown during pane resolving. This error is meant to be bubbled up
* through react and handled in an error boundary. It includes a `cause`
* property which is the original error caught
*/
class PaneResolutionError extends Error {
constructor(_ref) {
var message = _ref.message,
context = _ref.context,
helpId = _ref.helpId,
cause = _ref.cause;
super(message);
_defineProperty(this, "cause", void 0);
_defineProperty(this, "context", void 0);
_defineProperty(this, "helpId", void 0);
this.context = context;
this.helpId = helpId;
this.cause = cause;
}
}
exports.PaneResolutionError = PaneResolutionError;