Skip to content

Commit

Permalink
Feat: update user personal background
Browse files Browse the repository at this point in the history
Refactor POST PUT call to PUT only
  • Loading branch information
mtreacy002 committed Aug 4, 2020
1 parent 5ab20f7 commit 63f8956
Show file tree
Hide file tree
Showing 2 changed files with 292 additions and 141 deletions.
99 changes: 99 additions & 0 deletions src/backgrounds.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
export const GENDER = [
"Female",
"Male",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const AGE = [
"Under 18",
"Between 18 to 20 yo",
"Between 21 to 24 yo",
"Between 25 to 34 yo",
"Between 35 to 44 yo",
"Between 45 to 54 yo",
"Between 55 to 64 yo",
"Above 65 yo",
"Prefer not to say",
"Not Applicable"
]

export const ETHNICITY = [
"African-American/Black",
"Caucasian/White",
"Hispanic/Latinx",
"Native American/Alaska Native/First Nations",
"Middle Eastern/North African (MENA)",
"Asian",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const SEXUAL_ORIENTATION = [
"Heterosexual/Straight",
"LGBTIA+",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const RELIGION = [
"Christianity",
"Judaism",
"Islam",
"Hinduism",
"Buddhism",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const PHYSICAL_ABILITY = [
"With/had limited physical ability (or with/had some type of physical disability/ies)",
"Without/have no limitation to physical ability/ies",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const MENTAL_ABILITY = [
"With/previously had some type of mental disorders",
"Without/have no mental disorders",
"Other",
"Prefer not to say"
]

export const SOCIO_ECONOMIC = [
"Upper class/Elite",
"Upper Middle class (or High-level Professionals/white collars e.g. enginers/accountants/lawyers/architects/managers/directors",
"Lower Middle class (e.g. blue collars in skilled trades/Paralegals/Bank tellers/Sales/Clerical-Admin/other support workers)",
"Working class (e.g. craft workers, factory labourers, restaurant/delivery services workers",
"Underclass, working but with wages under poverty line, receiving Social Benefit from Government",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const HIGHEST_EDUCATION = [
"Have/did not completed High School",
"High School Diploma",
"Associate Degree",
"Bachelor's Degree",
"Master's Degree",
"PhD or other Doctorate Degrees",
"Other",
"Prefer not to say",
"Not Applicable"
]

export const YEARS_OF_EXPERIENCE = [
"Less than a year",
"Between 1 to 3 years",
"Between 3 to 5 years",
"Between 5 to 10 year",
"Over 10 years of experience",
"Prefer not to say",
"Not Applicable"
]
Loading

0 comments on commit 63f8956

Please sign in to comment.