forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from oskar-binary/personal_details
Personal details
- Loading branch information
Showing
13 changed files
with
718 additions
and
12 deletions.
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
5 changes: 5 additions & 0 deletions
5
packages/trader/src/App/Containers/AccountManagementModal/Components/layout-components.jsx
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,5 @@ | ||
import React from 'react'; | ||
|
||
export const FormFooter = ({ children }) => ( | ||
<div className='account-management-form-footer'>{children}</div> | ||
); |
313 changes: 313 additions & 0 deletions
313
...ader/src/App/Containers/AccountManagementModal/Profile/constants-financial-information.js
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,313 @@ | ||
export const experience_list = [ | ||
{ | ||
text : '0-1 year', | ||
value : '0-1 year', | ||
}, | ||
{ | ||
text : '1-2 years', | ||
value : '1-2 years', | ||
}, | ||
{ | ||
text : 'Over 3 years', | ||
value : 'Over 3 years', | ||
}, | ||
]; | ||
|
||
export const income_source_list = [ | ||
{ | ||
text: 'Salaried Employee', | ||
value: 'Salaried Employee' | ||
}, | ||
{ | ||
text: 'Self-Employed', | ||
value: 'Self-Employed' | ||
}, | ||
{ | ||
text: 'Investments & Dividends', | ||
value: 'Investments & Dividends' | ||
}, | ||
{ | ||
text: 'Pension', | ||
value: 'Pension' | ||
}, | ||
{ | ||
text: 'State Benefits', | ||
value: 'State Benefits' | ||
}, | ||
{ | ||
text: 'Savings & Inheritance', | ||
value: 'Savings & Inheritance' | ||
} | ||
]; | ||
|
||
export const employment_status_list = [ | ||
{ | ||
text: 'Please select', | ||
value: '' | ||
}, | ||
{ | ||
text: 'Employed', | ||
value: 'Employed' | ||
}, | ||
{ | ||
text: 'Pensioner', | ||
value: 'Pensioner' | ||
}, | ||
{ | ||
text: 'Self-Employed', | ||
value: 'Self-Employed' | ||
}, | ||
{ | ||
text: 'Student', | ||
value: 'Student' | ||
}, | ||
{ | ||
text: 'Unemployed', | ||
value: 'Unemployed' | ||
} | ||
]; | ||
|
||
export const employment_industry_list = [ | ||
{ | ||
text: 'Please select', | ||
value: '' | ||
}, | ||
{ | ||
text: 'Construction', | ||
value: 'Construction' | ||
}, | ||
{ | ||
text: 'Education', | ||
value: 'Education' | ||
}, | ||
{ | ||
text: 'Finance', | ||
value: 'Finance' | ||
}, | ||
{ | ||
text: 'Health', | ||
value: 'Health' | ||
}, | ||
{ | ||
text: 'Tourism', | ||
value: 'Tourism' | ||
}, | ||
{ | ||
text: 'Information & Communications Technology', | ||
value: 'Information & Communications Technology' | ||
}, | ||
{ | ||
text: 'Science & Engineering', | ||
value: 'Science & Engineering' | ||
}, | ||
{ | ||
text: 'Legal', | ||
value: 'Legal' | ||
}, | ||
{ | ||
text: 'Social & Cultural', | ||
value: 'Social & Cultural' | ||
}, | ||
{ | ||
text: 'Agriculture', | ||
value: 'Agriculture' | ||
}, | ||
{ | ||
text: 'Real Estate', | ||
value: 'Real Estate' | ||
}, | ||
{ | ||
text: 'Food Services', | ||
value: 'Food Services' | ||
}, | ||
{ | ||
text: 'Manufacturing', | ||
value: 'Manufacturing' | ||
}, | ||
{ | ||
text: 'Unemployed', | ||
value: 'Unemployed' | ||
} | ||
]; | ||
|
||
export const occupation_list = [ | ||
{ | ||
text: 'Please select', | ||
value: '' | ||
}, | ||
{ | ||
text: 'Chief Executives, Senior Officials and Legislators', | ||
value: 'Chief Executives, Senior Officials and Legislators' | ||
}, | ||
{ | ||
text: 'Managers', | ||
value: 'Managers' | ||
}, | ||
{ | ||
text: 'Professionals', | ||
value: 'Professionals' | ||
}, | ||
{ | ||
text: 'Clerks', | ||
value: 'Clerks' | ||
}, | ||
{ | ||
text: 'Personal Care, Sales and Service Workers', | ||
value: 'Personal Care, Sales and Service Workers' | ||
}, | ||
{ | ||
text: 'Agricultural, Forestry and Fishery Workers', | ||
value: 'Agricultural, Forestry and Fishery Workers' | ||
}, | ||
{ | ||
text: 'Craft, Metal, Electrical and Electronics Workers', | ||
value: 'Craft, Metal, Electrical and Electronics Workers' | ||
}, | ||
{ | ||
text: 'Plant and Machine Operators and Assemblers', | ||
value: 'Plant and Machine Operators and Assemblers' | ||
}, | ||
{ | ||
text: 'Cleaners and Helpers', | ||
value: 'Cleaners and Helpers' | ||
}, | ||
{ | ||
text: 'Mining, Construction, Manufacturing and Transport Workers', | ||
value: 'Mining, Construction, Manufacturing and Transport Workers' | ||
}, | ||
{ | ||
text: 'Armed Forces', | ||
value: 'Armed Forces' | ||
}, | ||
{ | ||
text: 'Government Officers', | ||
value: 'Government Officers' | ||
}, | ||
{ | ||
text: 'Students', | ||
value: 'Students' | ||
}, | ||
{ | ||
text: 'Unemployed', | ||
value: 'Unemployed' | ||
} | ||
]; | ||
|
||
export const source_of_wealth_list = [ | ||
{ | ||
text: 'Accumulation of Income/Savings', | ||
value: 'Accumulation of Income/Savings' | ||
}, | ||
{ | ||
text: 'Cash Business', | ||
value: 'Cash Business' | ||
}, | ||
{ | ||
text: 'Company Ownership', | ||
value: 'Company Ownership' | ||
}, | ||
{ | ||
text: 'Divorce Settlement', | ||
value: 'Divorce Settlement' | ||
}, | ||
{ | ||
text: 'Inheritance', | ||
value: 'Inheritance' | ||
}, | ||
{ | ||
text: 'Investment Income', | ||
value: 'Investment Income' | ||
}, | ||
{ | ||
text: 'Sale of Property', | ||
value: 'Sale of Property' | ||
} | ||
]; | ||
|
||
export const education_level_list = [ | ||
{ | ||
text: 'Please select', | ||
value: '' | ||
}, | ||
{ | ||
text: 'Primary', | ||
value: 'Primary' | ||
}, | ||
{ | ||
text: 'Secondary', | ||
value: 'Secondary' | ||
}, | ||
{ | ||
text: 'Tertiary', | ||
value: 'Tertiary' | ||
} | ||
]; | ||
|
||
export const net_income_list = [ | ||
{ | ||
text: 'Less than $25,000', | ||
value: 'Less than $25,000' | ||
}, | ||
{ | ||
text: '$25,000 - $50,000', | ||
value: '$25,000 - $50,000' | ||
}, | ||
{ | ||
text: '$50,001 - $100,000', | ||
value: '$50,001 - $100,000' | ||
}, | ||
{ | ||
text: '$100,001 - $500,000', | ||
value: '$100,001 - $500,000' | ||
}, | ||
{ | ||
text: 'Over $500,000', | ||
value: 'Over $500,000' | ||
} | ||
]; | ||
|
||
export const estimated_worth_list = [ | ||
{ | ||
text: 'Less than $100,000', | ||
value: 'Less than $100,000' | ||
}, | ||
{ | ||
text: '$100,000 - $250,000', | ||
value: '$100,000 - $250,000' | ||
}, | ||
{ | ||
text: '$250,001 - $500,000', | ||
value: '$250,001 - $500,000' | ||
}, | ||
{ | ||
text: '$500,001 - $1,000,000', | ||
value: '$500,001 - $1,000,000' | ||
}, | ||
{ | ||
text: 'Over $1,000,000', | ||
value: 'Over $1,000,000' | ||
} | ||
]; | ||
|
||
export const account_turnover_list = [ | ||
{ | ||
text: 'Less than $25,000', | ||
value: 'Less than $25,000' | ||
}, | ||
{ | ||
text: '$25,000 - $50,000', | ||
value: '$25,000 - $50,000' | ||
}, | ||
{ | ||
text: '$50,001 - $100,000', | ||
value: '$50,001 - $100,000' | ||
}, | ||
{ | ||
text: '$100,001 - $500,000', | ||
value: '$100,001 - $500,000' | ||
}, | ||
{ | ||
text: 'Over $500,000', | ||
value: 'Over $500,000' | ||
} | ||
]; |
33 changes: 33 additions & 0 deletions
33
.../trader/src/App/Containers/AccountManagementModal/Profile/constants-trading-experience.js
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 @@ | ||
export const trading_experience_list = [ | ||
{ | ||
text: '0-1 year', | ||
value: '0-1 year' | ||
}, | ||
{ | ||
text: '1-2 years', | ||
value: '1-2 years' | ||
}, | ||
{ | ||
text: 'Over 3 years', | ||
value: 'Over 3 years' | ||
} | ||
]; | ||
|
||
export const trading_frequency_list = [ | ||
{ | ||
text: '0-5 transactions in the past 12 months', | ||
value: '0-5 transactions in the past 12 months' | ||
}, | ||
{ | ||
text: '6-10 transactions in the past 12 months', | ||
value: '6-10 transactions in the past 12 months' | ||
}, | ||
{ | ||
text: '11-39 transactions in the past 12 months', | ||
value: '11-39 transactions in the past 12 months' | ||
}, | ||
{ | ||
text: '40 transactions or more in the past 12 months', | ||
value: '40 transactions or more in the past 12 months' | ||
} | ||
]; |
Oops, something went wrong.