department-of-veterans-affairs/vets-website

View on GitHub
src/applications/pensions/config/chapters/03-health-and-employment-information/currentEmployment.js

Summary

Maintainability
A
0 mins
Test Coverage
import {
  titleUI,
  yesNoUI,
} from 'platform/forms-system/src/js/web-component-patterns';
import fullSchemaPensions from 'vets-json-schema/dist/21P-527EZ-schema.json';
import { isUnder65 } from './helpers';
import { showMultiplePageResponse } from '../../../helpers';

const { currentEmployment } = fullSchemaPensions.properties;

/** @type {PageSchema} */
export default {
  title: 'Current employment',
  path: 'employment/current',
  depends: formData => !showMultiplePageResponse() && isUnder65(formData),
  uiSchema: {
    ...titleUI('Current employment'),
    currentEmployment: yesNoUI({
      title: 'Are you currently employed?',
      classNames: 'vads-u-margin-bottom--2',
    }),
  },
  schema: {
    type: 'object',
    required: ['currentEmployment'],
    properties: {
      currentEmployment,
    },
  },
};