UNPKG

@open-formulieren/formio-builder

Version:

An opinionated Formio webform builder for Open Forms

84 lines (83 loc) 4.63 kB
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { useFormikContext } from 'formik'; import { FormattedMessage, useIntl } from 'react-intl'; import { BuilderTabs, ClearOnHide, Description, Hidden, IsSensitiveData, Key, Label, Multiple, PresentationConfig, ReadOnly, Registration, SimpleConditional, Tooltip, Translations, Validate, useDeriveComponentKey, } from '../../components/builder'; import { LABELS } from '../../components/builder/messages'; import { TabList, TabPanel, Tabs, TimeField } from '../../components/formio'; import { useErrorChecker } from '../../utils/errors'; /** * Form to configure a Formio 'date' type component. */ const EditForm = () => { const intl = useIntl(); const [isKeyManuallySetRef, generatedKey] = useDeriveComponentKey(); const { values: { multiple = false }, } = useFormikContext(); const { hasAnyError } = useErrorChecker(); Validate.useManageValidatorsTranslations([ 'required', 'minTime', 'maxTime', 'invalid_time', ]); return (_jsxs(Tabs, { children: [_jsxs(TabList, { children: [_jsx(BuilderTabs.Basic, { hasErrors: hasAnyError('label', 'key', 'description', 'tooltip', 'showInSummary', 'showInEmail', 'showInPDF', 'multiple', 'hidden', 'clearOnHide', 'isSensitiveData', 'defaultValue', 'disabled') }), _jsx(BuilderTabs.Advanced, { hasErrors: hasAnyError('conditional') }), _jsx(BuilderTabs.Validation, { hasErrors: hasAnyError('validate') }), _jsx(BuilderTabs.Registration, { hasErrors: hasAnyError('registration') }), _jsx(BuilderTabs.Translations, { hasErrors: hasAnyError('openForms.translations') })] }), _jsxs(TabPanel, { children: [_jsx(Label, {}), _jsx(Key, { isManuallySetRef: isKeyManuallySetRef, generatedValue: generatedKey }), _jsx(Description, {}), _jsx(Tooltip, {}), _jsx(PresentationConfig, {}), _jsx(Multiple, {}), _jsx(Hidden, {}), _jsx(ClearOnHide, {}), _jsx(IsSensitiveData, {}), _jsx(DefaultValue, { multiple: multiple }), _jsx(ReadOnly, {})] }), _jsx(TabPanel, { children: _jsx(SimpleConditional, {}) }), _jsxs(TabPanel, { children: [_jsx(Validate.Required, {}), _jsx(Validate.ValidatorPluginSelect, {}), _jsx(MinTime, {}), _jsx(MaxTime, {}), _jsx(Validate.ValidationErrorTranslations, {})] }), _jsx(TabPanel, { children: _jsx(Registration.RegistrationAttributeSelect, {}) }), _jsx(TabPanel, { children: _jsx(Translations.ComponentTranslations, { propertyLabels: { label: intl.formatMessage(LABELS.label), description: intl.formatMessage(LABELS.description), tooltip: intl.formatMessage(LABELS.tooltip), } }) })] })); }; EditForm.defaultValues = { format: 'HH:mm', validateOn: 'blur', inputType: 'text', // basic tab label: '', key: '', description: '', tooltip: '', showInSummary: true, showInEmail: false, showInPDF: true, multiple: false, hidden: false, clearOnHide: true, isSensitiveData: false, defaultValue: '', disabled: false, // Advanced tab conditional: { show: undefined, when: '', eq: '', }, // Validation tab validate: { required: false, plugins: [], minTime: '', maxTime: '', }, translatedErrors: {}, openForms: { translations: {}, }, // Registration tab registration: { attribute: '', }, }; const DefaultValue = ({ multiple }) => { const intl = useIntl(); const tooltip = intl.formatMessage({ id: "FffJxu", defaultMessage: [{ type: 0, value: "This will be the initial value for this field before user interaction." }] }); return (_jsx(TimeField, { name: "defaultValue", label: _jsx(FormattedMessage, Object.assign({}, LABELS.defaultValue)), tooltip: tooltip, multiple: multiple })); }; const MinTime = () => { const intl = useIntl(); const tooltip = intl.formatMessage({ id: "tU1UVF", defaultMessage: [{ type: 0, value: "The earliest possible value that can be entered." }] }); return (_jsx(TimeField, { name: "validate.minTime", label: _jsx(FormattedMessage, { id: 'Un5b5T', defaultMessage: [{ type: 0, value: "Minimum time" }] }), tooltip: tooltip })); }; const MaxTime = () => { const intl = useIntl(); const tooltip = intl.formatMessage({ id: "eg8uKC", defaultMessage: [{ type: 0, value: "The latest possible value that can be entered." }] }); return (_jsx(TimeField, { name: "validate.maxTime", label: _jsx(FormattedMessage, { id: '5yP7G/', defaultMessage: [{ type: 0, value: "Maximum time" }] }), tooltip: tooltip })); }; export default EditForm;