Skip to content
This repository was archived by the owner on May 7, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
8ec2817
working FormArrayControl component and Adapters for radio and checkboxes
amazingphilippe Feb 6, 2020
43b350c
broken, but added a Field component to ease markup
amazingphilippe Feb 10, 2020
224e8dd
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 10, 2020
0554387
rebuilt the howdiditstart page using checkbox component.
amazingphilippe Feb 10, 2020
984bb3f
lint and passing tests. Not all new components have tests
amazingphilippe Feb 11, 2020
aa7c496
added a test for FormArrayControl
amazingphilippe Feb 11, 2020
082a5fc
merged with master
amazingphilippe Feb 11, 2020
9747eba
cleaned up inputs, they also work properly now.
amazingphilippe Feb 12, 2020
c027e39
tweaked input and text-area to accept attributes from react-final-form
amazingphilippe Feb 12, 2020
555f53e
passing tests
amazingphilippe Feb 12, 2020
0c3aca6
added condition to prevent rendering of node if conditional field doe…
amazingphilippe Feb 12, 2020
572b87b
some tweaks to ensure correct labelling of fields
amazingphilippe Feb 13, 2020
8370911
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 13, 2020
f46b572
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 14, 2020
76c0995
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 14, 2020
5bcaa44
#1312- Added the privacy consent checkbox fixes
khalidelaggan Feb 18, 2020
ca03257
#1312- Added whatWasAffected checkbox fixes
khalidelaggan Feb 18, 2020
7c2fdd5
cleanups
khalidelaggan Feb 18, 2020
e031580
Added the money lost checkbox fixes
khalidelaggan Feb 18, 2020
5e9cada
Added the missing UI container
khalidelaggan Feb 18, 2020
7d857e8
Added the information page checkbox fixes
khalidelaggan Feb 18, 2020
1a09825
merged again. Failing tests
amazingphilippe Feb 18, 2020
162fbe8
Added the conditional form for single field
khalidelaggan Feb 18, 2020
d124ba8
Merge branch 'master' into checkbox-component
khalidelaggan Feb 18, 2020
edede7e
Merge branch 'master' into checkbox-component
khalidelaggan Feb 18, 2020
51949c9
merge with branch
amazingphilippe Feb 18, 2020
21bd04b
Merge conflicts
khalidelaggan Feb 18, 2020
f9bbb27
Merge branch 'checkbox-component' of github.com:cds-snc/report-a-cybe…
khalidelaggan Feb 18, 2020
5d5d02a
Added missing dependencies
khalidelaggan Feb 18, 2020
fe34926
Merge branch 'master' into checkbox-component
khalidelaggan Feb 18, 2020
1901598
merge with branch
amazingphilippe Feb 18, 2020
e62c2fa
merge
amazingphilippe Feb 18, 2020
3546d4f
validation appearance
amazingphilippe Feb 18, 2020
d1c8520
draft of validation error component. whatwasaffectedpage
amazingphilippe Feb 21, 2020
d5bc9c5
added translations
amazingphilippe Feb 21, 2020
b18e925
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 21, 2020
7b480c5
ErrorSummary component. Needs a test
amazingphilippe Feb 21, 2020
10d9e00
added a test for error summary
amazingphilippe Feb 24, 2020
12647a2
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Feb 24, 2020
fc731fd
merged and fixed translations on wwaffected page
amazingphilippe Feb 24, 2020
17cdd78
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Mar 13, 2020
5f82d2a
fixed lgtm issues
amazingphilippe Mar 13, 2020
73a3f10
linted
amazingphilippe Mar 13, 2020
f6b2d89
a11y fix for aria-atomic
amazingphilippe Mar 13, 2020
41eea6b
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Mar 16, 2020
bfac219
removed ref in what happened form
amazingphilippe Mar 16, 2020
4ec5b44
scroll to error summary on render
amazingphilippe Mar 17, 2020
14fe6c9
Merge branch 'master' of github.com:cds-snc/report-a-cybercrime into …
amazingphilippe Mar 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into checkbox-component
  • Loading branch information
khalidelaggan authored Feb 18, 2020
commit d124ba8bf148177f7298a80dc769f7ec1b1a8c48
1 change: 1 addition & 0 deletions f2/src/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { FinalFeedbackThanksPage } from './FinalFeedbackThanksPage'
import { StartPage } from './StartPage'
import { ConfirmCancelPage } from './ConfirmCancelPage'
import { CancelPage } from './CancelPage'
import { TermsAndConditions } from './TermsAndConditions'

export const Home = () => (
<Router>
Expand Down
7 changes: 0 additions & 7 deletions f2/src/forms/HowDidItStartForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,6 @@ export const HowDidItStartForm = props => {
const [data] = useStateValue()
const howdiditstart = {
howDidTheyReachYou: [],
email: '',
phone: '',
online: '',
application: '',
others: '',
whenDidItStart: '',
howManyTimes: '',
...data.formData.howdiditstart,
}
//TODO: Move this form data to some sort of a schema file instead?
Expand Down
24 changes: 0 additions & 24 deletions f2/src/forms/InformationForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ export const InformationForm = props => {
const [data] = useStateValue()
const information = {
typeOfInfoReq: [],
infoReqOther: '',
typeOfInfoObtained: [],
infoObtainedOther: '',
tellUsMore: '',
...data.formData.personalInformation,
}
Expand Down Expand Up @@ -180,28 +178,6 @@ export const InformationForm = props => {
</FormControl>
)}
</Field>
<Alert status="success" backgroundColor="blue.100">
<AlertIcon name="info-outline" color="blue.800" />
<Trans id="informationPage.tip">
<A
href={
i18n.locale === 'en'
? 'https://www.consumer.equifax.ca/personal/'
: 'https://www.consumer.equifax.ca/personnel/'
}
isExternal // Opens new tab
/>

<A
href={
i18n.locale === 'en'
? 'https://www.transunion.ca/'
: 'https://www.transunion.ca/fr'
}
isExternal // Opens new tab
/>
</Trans>
</Alert>
<NextAndCancelButtons
next={<Trans id="informationPage.nextStep" />}
button={<Trans id="informationPage.nextButton" />}
Expand Down
1 change: 0 additions & 1 deletion f2/src/forms/WhatWasAffectedForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const WhatWasAffectedForm = props => {
const [data] = useStateValue()
const whatWasAffected = {
affectedOptions: [],
optionOther: '',
...data.formData.whatWasAffected,
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.