department-of-veterans-affairs/vets-website

View on GitHub
src/applications/ask-va/config/chapters/personalInformation/yourCountry.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import CountrySelect from '../../../components/FormFields/CountrySelect';
import { CHAPTER_3 } from '../../../constants';

const title = <h4>{CHAPTER_3.YOUR_COUNTRY.TITLE}</h4>;

const yourCountryPage = {
  uiSchema: {
    'ui:title': title,
    onBaseOutsideUS: {
      'ui:title': CHAPTER_3.YOUR_COUNTRY.QUESTION_1,
    },
    country: {
      'ui:title': 'Country',
      'ui:widget': CountrySelect,
      'ui:required': form => !form.onBaseOutsideUS,
    },
  },
  schema: {
    type: 'object',
    required: ['country'],
    properties: {
      onBaseOutsideUS: {
        type: 'boolean',
        default: false,
      },
      country: {
        type: 'string',
      },
    },
  },
};

export default yourCountryPage;