| 'use strict'; |
|
|
| var index = require('./index-a8fa2029.react-server.cjs.js'); |
| var emptyFieldUi = require('./empty-field-ui-563fc621.react-server.cjs.js'); |
| var jsxRuntime = require('react/jsx-runtime'); |
| require('emery'); |
| require('@sindresorhus/slugify'); |
| require('@braintree/sanitize-url'); |
|
|
| function validateInteger(validation, value, label) { |
| if (value !== null && (typeof value !== 'number' || !Number.isFinite(value))) { |
| return `${label} is not a valid whole number`; |
| } |
| if (validation !== null && validation !== void 0 && validation.isRequired && value === null) { |
| return `${label} is required`; |
| } |
| if (value !== null) { |
| if ((validation === null || validation === void 0 ? void 0 : validation.min) !== undefined && value < validation.min) { |
| return `${label} must be at least ${validation.min}`; |
| } |
| if ((validation === null || validation === void 0 ? void 0 : validation.max) !== undefined && value > validation.max) { |
| return `${label} must be at most ${validation.max}`; |
| } |
| } |
| } |
|
|
| function integer({ |
| label, |
| defaultValue, |
| validation, |
| description |
| }) { |
| return index.basicFormFieldWithSimpleReaderParse({ |
| Input(props) { |
| return /*#__PURE__*/jsxRuntime.jsx(emptyFieldUi.IntegerFieldInput, { |
| label: label, |
| description: description, |
| validation: validation, |
| ...props |
| }); |
| }, |
| defaultValue() { |
| return defaultValue !== null && defaultValue !== void 0 ? defaultValue : null; |
| }, |
| parse(value) { |
| if (value === undefined) { |
| return null; |
| } |
| if (typeof value === 'number') { |
| return value; |
| } |
| throw new index.FieldDataError('Must be a number'); |
| }, |
| validate(value) { |
| const message = validateInteger(validation, value, label); |
| if (message !== undefined) { |
| throw new index.FieldDataError(message); |
| } |
| index.assertRequired(value, validation, label); |
| return value; |
| }, |
| serialize(value) { |
| return { |
| value: value === null ? undefined : value |
| }; |
| } |
| }); |
| } |
|
|
| // this is written like this rather than ArrayField<ComponentSchema> to avoid TypeScript erroring about circularity |
| function component(options) { |
| return options; |
| } |
|
|
| exports.component = component; |
| exports.integer = integer; |