UNPKG

zent

Version:

一套前端设计语言和基于React的实现

63 lines (62 loc) 2.86 kB
import { __extends } from "tslib"; import { typeOfModel } from './models/is'; import { isArray } from './utils'; var FormulrError = (function (_super) { __extends(FormulrError, _super); function FormulrError(message, reason) { var _this = _super.call(this, message + ".\n" + 'The possible reason(s) for this error: \n' + (isArray(reason) ? reason.map(function (it, index) { return " " + (index + 1) + ". " + it; }).join('\n') : " " + reason) + '\n') || this; _this.name = 'FormulrError'; return _this; } return FormulrError; }(Error)); export { FormulrError }; export var FormContextNotFoundError = new FormulrError('FormContext not found', [ 'Using form hooks outside the form context', 'There are two copies of zent in your project, run `yarn list zent` to check', 'Mixed use of Form from zent and formulr, formulr is a deprecate package', ]); function getErrorMessage(error, defaultMessage) { if (!error) { return defaultMessage; } if (error instanceof Error) { return error.name + ": " + error.message + "\n" + error.stack; } try { return JSON.stringify(error, null, 2); } catch (_a) { if (typeof error.toString === 'function') { return error.toString(); } return defaultMessage; } } export var createFormValidatorRuntimeError = function (runtimeError) { var msg = getErrorMessage(runtimeError, 'Unknown validator runtime error'); return new FormulrError("A runtime error occurred in a form validator\n" + msg, [ 'Make sure custom validators do not throw runtime errors', 'The returned Promise object of async validators should never be rejected', ]); }; export var createUnexpectedModelTypeError = function (name, expectedType, model) { return new FormulrError('Model type mismatch', "Model '" + name + "' is expected to be a '" + expectedType + "', but got a '" + typeOfModel(model) + "'."); }; export var createModelNotFoundError = function (name) { return new FormulrError('Model not found', "Model '" + name + "' is not found in this form. Make sure model name is correct."); }; export var createUnexpectedModelError = function (it) { return new FormulrError("Expected a 'ModelRef' instance or 'BasicModel' instance, got " + typeof it, "The first argument to form hooks is an unexpected type rather than string or 'Model'"); }; export var createModelDisposedError = function (name) { return new FormulrError('Model is disposed', [ "You are swapping two different Fields with the same 'name' in View mode and 'destroyOnUnmount' is set on the Field being swapped out", "You are using a disposed " + name + " in your view, your UI and models are likely in a broken state", ]); };