Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Form title 28-8832 -> 25-8832 #25283

Merged
merged 22 commits into from
Sep 16, 2023
Merged

Conversation

DLarson-Oddball
Copy link
Contributor

@DLarson-Oddball DLarson-Oddball commented Aug 17, 2023

Summary

Updated form name 28-8832 to 25-8832.
Related PR: department-of-veterans-affairs/content-build#1670

Related issue(s)

department-of-veterans-affairs/va.gov-team#62663

Testing done

  • Previously, the page title and content included references to form 28-8832. There was also a comparison to form 25-8832 noting they are equivalent forms.
  • The page title and content now references form 25-8832. The comparison was also updated to form 28-8832.

Screenshots

Note: This field is mandatory for UI changes (non-component work should NOT have screenshots).

Before After
Mobile image image
Desktop image image

What areas of the site does it impact?

This PR will not impact pages outside of form 25-8832

Acceptance criteria

Quality Assurance & Testing

  • I fixed|updated|added unit tests and integration tests for each feature (if applicable). N/A
  • No sensitive information (i.e. PII/credentials/internal URLs/etc.) is captured in logging, hardcoded, or specs
  • Linting warnings have been addressed
  • Documentation has been updated
  • Screenshot of the developed feature is added
  • Accessibility testing has been performed

Error Handling

  • Browser console contains no warnings or errors.
  • Events are being sent to the appropriate logging solution N/A
  • Feature/bug has a monitor built into Datadog or Grafana (if applicable) N/A

Authentication

  • Did you login to a local build and verify all authenticated routes work as expected with a test user

⚠️ Team Sites (only applies to modifications made to the VA.gov header) ⚠️

  • The vets-website header does not contain any web-components
  • I used the proxy-rewrite steps to test the injected header scenario
  • I reached out in the #sitewide-public-websites Slack channel for questions

Requested Feedback

@DLarson-Oddball DLarson-Oddball marked this pull request as ready for review August 19, 2023 00:34
@DLarson-Oddball DLarson-Oddball requested a review from a team August 19, 2023 00:34
@DLarson-Oddball DLarson-Oddball requested a review from a team as a code owner August 19, 2023 00:34
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 19, 2023 00:35 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change August 19, 2023 00:36 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 23, 2023 18:52 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change August 23, 2023 19:28 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 23, 2023 20:12 In progress
@fred-khoury-oddball fred-khoury-oddball force-pushed the 62663-ch36-form-name-change branch from 614978a to a24d507 Compare August 23, 2023 20:15
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 23, 2023 20:17 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change August 23, 2023 20:32 Inactive
src/applications/vre/28-8832/manifest.json Outdated Show resolved Hide resolved
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 28, 2023 15:27 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change August 28, 2023 15:29 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main August 28, 2023 20:31 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change August 28, 2023 20:42 Inactive
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 14, 2023 02:16 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 14, 2023 02:16 In progress
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 14, 2023 02:20 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 14, 2023 02:22 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 14, 2023 02:23 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 14, 2023 02:27 Inactive
@DLarson-Oddball
Copy link
Contributor Author

@Mottie or @CBonade Hoping you have time to give this another pass. This changes the approach by creating a new app with name 25-8832. Content changes are hosted in this app.

Approach wise, I renamed the original app from 28-8832 to 25-8832 and created a new app named 28-8832. This will preserve git history in an upcoming PR which will remove 28-8832.

Review wise, The new files are copies of those in 28-8832 with some small copy changes.

import React from 'react';
import { expect } from 'chai';
import { mount } from 'enzyme';
import staticClaimantInformation from '../../../config/chapters/claimant-information/staticClaimantComponent.jsx';

Check notice

Code scanning / CodeQL

Unused variable, import, function or class

Unused import staticClaimantInformation.
rootUrl: manifest.rootUrl,
urlPrefix: '/',
submitUrl: `${environment.API_URL}/v0/education_career_counseling_claims`,
trackingPrefix: 'careers-employment-28-8832--',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are you planning on updating this tracking prefix?

Copy link
Contributor Author

@DLarson-Oddball DLarson-Oddball Sep 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not currently unless you feel can include this without impacting other teams.

I'm not sure what it's used for, and our ask really only covers changing the page content.

src/applications/vre/25-8832/config/form.js Show resolved Hide resolved
@@ -0,0 +1,116 @@
import fullSchema from 'vets-json-schema/dist/28-8832-schema.json';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably won't need to update vets-json-schema any time soon

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you expand what you mean by this?

@DLarson-Oddball DLarson-Oddball requested review from a team as code owners September 16, 2023 00:33
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 16, 2023 00:34 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 16, 2023 00:34 Inactive
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 16, 2023 00:35 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 16, 2023 00:39 Inactive
This reverts commit 0d30081.
@DLarson-Oddball DLarson-Oddball removed request for a team September 16, 2023 00:42
@va-vsp-bot va-vsp-bot requested a deployment to master/62663-ch36-form-name-change/main September 16, 2023 00:43 In progress
@va-vfs-bot va-vfs-bot temporarily deployed to master/62663-ch36-form-name-change/62663-ch36-form-name-change September 16, 2023 00:44 Inactive
@DLarson-Oddball DLarson-Oddball merged commit 1afcda4 into main Sep 16, 2023
@DLarson-Oddball DLarson-Oddball deleted the 62663-ch36-form-name-change branch September 16, 2023 01:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants