department-of-veterans-affairs/vets-website

View on GitHub
src/applications/hca/config/chapters/militaryService/otherToxicExposureDetails.js

Summary

Maintainability
A
0 mins
Test Coverage
import fullSchemaHca from 'vets-json-schema/dist/10-10EZ-schema.json';
import { titleUI } from 'platform/forms-system/src/js/web-component-patterns';
import { OtherToxicExposureDescription } from '../../../components/FormDescriptions';

const { otherToxicExposure } = fullSchemaHca.properties;

export default {
  uiSchema: {
    ...titleUI(
      'Other toxic exposure',
      'You selected that you were exposed to other toxins or hazards.',
    ),
    'ui:description': OtherToxicExposureDescription,
    otherToxicExposure: {
      'ui:title': 'Enter any toxins or hazards you\u2019ve been exposed to',
      'ui:errorMessages': {
        pattern:
          'You entered a character we can\u2019t accept. You can use only these characters: . , ! ?',
      },
    },
  },
  schema: {
    type: 'object',
    properties: {
      otherToxicExposure,
    },
  },
};