This repository has been archived by the owner on Jul 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Added checkbox for terms and conditions #802
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { DataTypes, QueryInterface } from 'sequelize' | ||
|
||
export const up = async (queryInterface: QueryInterface) => { | ||
await queryInterface.addColumn(`Groups`, 'termsAndConditionsAcceptedAt', { | ||
allowNull: false, | ||
type: DataTypes.DATE, | ||
}) | ||
} | ||
export const down = async (queryInterface: QueryInterface) => { | ||
await queryInterface.removeColumn(`Groups`, 'termsAndConditionsAcceptedAt') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { FunctionComponent } from 'react' | ||
import CloseIcon from './alert/CloseIcon' | ||
|
||
interface Props { | ||
close: () => void | ||
} | ||
|
||
const TermsAndConditions: FunctionComponent<Props> = ({ close }) => { | ||
return ( | ||
<div className="bg-gray-300 inset-1/4 fixed text-justify rounded-md"> | ||
<div className="absolute top-0 right-0"> | ||
<CloseIcon | ||
color="text-black" | ||
onClick={() => { | ||
close() | ||
}} | ||
/> | ||
</div> | ||
<div className="p-4"> | ||
<h3 className="text-center text-2xl">Terms & Conditions</h3> | ||
Placeholder text for terms and conitions | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default TermsAndConditions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { FunctionComponent } from 'react' | ||
import CheckboxField from '../../components/forms/CheckboxField' | ||
|
||
interface Props { | ||
timeTcChecked: Date | null | ||
handleTcChange: () => void | ||
setShowTermsAndCond: (tc: boolean) => void | ||
} | ||
|
||
const TermAndCondCheckbox: FunctionComponent<Props> = ({ | ||
timeTcChecked, | ||
handleTcChange, | ||
setShowTermsAndCond, | ||
}) => { | ||
return ( | ||
<div className="flex flex-row"> | ||
<CheckboxField | ||
label="" | ||
checked={timeTcChecked === null ? false : true} | ||
onChange={handleTcChange} | ||
className="cursor-pointer" | ||
/> | ||
<a | ||
className="cursor-pointer text-blue-500" | ||
onClick={() => setShowTermsAndCond(true)} | ||
> | ||
I accept terms and conditions | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nitpick: use CSS to add spacing, not content. |
||
</a> | ||
</div> | ||
) | ||
} | ||
|
||
export default TermAndCondCheckbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ const commonGroupData = { | |
primaryLocation: { country: 'FR', city: 'Calais' }, | ||
primaryContact: { name: 'Contact', email: '[email protected]' }, | ||
website: 'http://www.example.com', | ||
termsAndConditionsAcceptedAt: new Date(), | ||
} as const | ||
|
||
describe('Groups API', () => { | ||
|
@@ -77,6 +78,7 @@ describe('Groups API', () => { | |
$primaryLocation: LocationInput! | ||
$primaryContact: ContactInfoInput! | ||
$website: String | ||
$termsAndConditionsAcceptedAt: DateTime! | ||
) { | ||
addGroup( | ||
input: { | ||
|
@@ -86,6 +88,7 @@ describe('Groups API', () => { | |
primaryLocation: $primaryLocation | ||
primaryContact: $primaryContact | ||
website: $website | ||
termsAndConditionsAcceptedAt: $termsAndConditionsAcceptedAt | ||
} | ||
) { | ||
id | ||
|
@@ -96,10 +99,28 @@ describe('Groups API', () => { | |
} | ||
` | ||
|
||
const params1 = { | ||
...group1Params, | ||
termsAndConditionsAcceptedAt: | ||
group1Params.termsAndConditionsAcceptedAt.toISOString(), | ||
} | ||
|
||
const params2 = { | ||
...group2Params, | ||
termsAndConditionsAcceptedAt: | ||
group2Params.termsAndConditionsAcceptedAt.toISOString(), | ||
} | ||
|
||
const daHubParams = { | ||
...daHub, | ||
termsAndConditionsAcceptedAt: | ||
daHub.termsAndConditionsAcceptedAt.toISOString(), | ||
} | ||
|
||
it('adds a new group', async () => { | ||
const res = await testServer.executeOperation({ | ||
query: ADD_GROUP, | ||
variables: group1Params, | ||
variables: params1, | ||
}) | ||
|
||
expect(res.errors).toBeUndefined() | ||
|
@@ -110,12 +131,12 @@ describe('Groups API', () => { | |
it('prevents group captains from creating more than 1 group', async () => { | ||
await testServer.executeOperation({ | ||
query: ADD_GROUP, | ||
variables: group1Params, | ||
variables: params2, | ||
}) | ||
|
||
const res = await testServer.executeOperation({ | ||
query: ADD_GROUP, | ||
variables: group2Params, | ||
variables: params2, | ||
}) | ||
|
||
expect(res.errors).not.toBeUndefined() | ||
|
@@ -129,7 +150,7 @@ describe('Groups API', () => { | |
it('allows admins to create DA hubs', async () => { | ||
const res = await adminTestServer.executeOperation({ | ||
query: ADD_GROUP, | ||
variables: daHub, | ||
variables: daHubParams, | ||
}) | ||
|
||
expect(res.errors).toBeUndefined() | ||
|
@@ -143,6 +164,8 @@ describe('Groups API', () => { | |
variables: { | ||
...groupWithDescription, | ||
...commonGroupData, | ||
termsAndConditionsAcceptedAt: | ||
commonGroupData.termsAndConditionsAcceptedAt.toISOString(), | ||
}, | ||
}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ describe('LineItems API', () => { | |
primaryLocation: { country: 'GB', city: 'Bristol' }, | ||
primaryContact: { name: 'Contact', email: '[email protected]' }, | ||
captainId: captain.id, | ||
termsAndConditionsAcceptedAt: new Date(), | ||
}) | ||
|
||
shipment = await Shipment.create({ | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
problem: this needs to be a User property, not a Group property.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, what if one user creates multiple groups?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's fine. In that case they have already accepted the Terms & Conditions. They apply to humans, not to groups. Groups are legally represented by humans, so the humans have to accept the terms.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for explanation! I'll work on change and create new PR