department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ask-va/config/chapters/categoryAndTopic/selectSubtopic.js

Summary

Maintainability
A
0 mins
Test Coverage
import CatAndTopicSummary from '../../../components/CatAndTopicSummary';
import FormElementTitle from '../../../components/FormElementTitle';
import SubtopicSelect from '../../../components/FormFields/SubtopicSelect';
import PageFieldSummary from '../../../components/PageFieldSummary';
import { CHAPTER_1 } from '../../../constants';

const selectSubtopicPage = {
  uiSchema: {
    'ui:title': form =>
      CatAndTopicSummary({
        category: form.formData.selectCategory,
        topic: form.formData.selectTopic,
      }),
    'ui:description': FormElementTitle({
      title: CHAPTER_1.PAGE_3.PAGE_DESCRIPTION,
    }),
    'ui:objectViewField': PageFieldSummary,
    selectSubtopic: {
      'ui:title': CHAPTER_1.PAGE_3.QUESTION_1,
      'ui:widget': SubtopicSelect,
      'ui:errorMessages': {
        required: 'Please select a subtopic',
      },
    },
  },
  schema: {
    type: 'object',
    required: ['selectSubtopic'],
    properties: {
      selectSubtopic: {
        type: 'string',
      },
    },
  },
};

export default selectSubtopicPage;