Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 12 additions & 0 deletions components/Assessment/applicantScore.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ export default function ApplicantScore(props) {
score={score.ResponseTwoScore}
handleClick={handleClick}
/>
<ScoreInput
maxScore={SCORING.ESSAY3}
label="Written Response Score 3"
score={score.ResponseThreeScore}
handleClick={handleClick}
/>
<ScoreInput
maxScore={SCORING.ESSAY4}
label="Written Response Score 4"
score={score.ResponseFourScore}
handleClick={handleClick}
/>
</Main>
{hasScore && (
<Summary>
Expand Down
30 changes: 15 additions & 15 deletions components/Evaluator/ApplicantResponse.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,28 +99,28 @@ export default function ApplicantResponse({ shouldDisplay, hacker }) {
{/* <ResponseInput url={waiverURL} label="Waiver" response={waiverURL} /> */}

<ResponseInput
label="It's our 10-year anniversary! What would a meaningful and memorable weekend at nwHacks look like for you?"
label="Q1 - Here at cmd-f, we value community, innovation and passion. Tell us about a time where you have shown one or more of these traits. (150 words)"
response={`${hacker?.skills?.longAnswers1}`}
/>

<ResponseInput
label="Share a technical or non-technical project you're proud of. What project would you display in the museum of your life? Tell us what inspired you, how you approached it, and why it matters to you."
label="Q2 - If you had unlimited resources at your disposal, what is one change you would make in the tech industry to make it more inclusive for underrepresented genders and why? (200 words)"
response={`${hacker?.skills?.longAnswers2}`}
/>

{hacker?.skills?.longAnswers3 && (
<ResponseInput
label="Create an acronym from your name or nickname that reveals something about you!"
response={`${hacker?.skills?.longAnswers3}`}
/>
)}

{hacker?.skills?.longAnswers4 && (
<ResponseInput
label="Is there anything we should know to help make you feel comfortable and supported during the event? (not graded, just for nwHacks to see)"
response={`${hacker?.skills?.longAnswers4}`}
/>
)}
{/* {hacker?.skills?.longAnswers3 && ( */}
<ResponseInput
label="Q3 - The sweetest rewards stem from hard work. Tell us about a technical or non-technical project you are proud of — include your inspiration, why you chose this project and what you learnt from it. (200 words)"
response={`${hacker?.skills?.longAnswers3}`}
/>
{/* )} */}

{/* {hacker?.skills?.longAnswers4 && ( */}
<ResponseInput
label="Q4 - If you were a baked good, what would you be and why? (50 words)"
response={`${hacker?.skills?.longAnswers4}`}
/>
{/* )} */}

<ResponseInput url={resumeURL} label="Resume" response={resumeURL} />

Expand Down
30 changes: 21 additions & 9 deletions components/Evaluator/Scoring.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@ export default function Scoring({ shouldDisplay, applicant }) {
case SCORING.ESSAY3.label:
field = 'ResponseThreeScore'
break
case SCORING.ESSAY4.label:
field = 'ResponseFourScore'
break
default:
break
}
Expand Down Expand Up @@ -236,15 +239,24 @@ export default function Scoring({ shouldDisplay, applicant }) {
maxScore={SCORING.ESSAY2}
hasMinusOne
/>
{applicant?.skills?.longAnswers3 && (
<ScoreInput
label={SCORING.ESSAY3.label}
handleClick={handleClick}
score={scores?.ResponseThreeScore}
maxScore={SCORING.ESSAY3}
hasMinusOne
/>
)}
{/* {applicant?.skills?.longAnswers3 && ( */}
<ScoreInput
label={SCORING.ESSAY3.label}
handleClick={handleClick}
score={scores?.ResponseThreeScore}
maxScore={SCORING.ESSAY3}
hasMinusOne
/>
{/* )} */}
{/* {applicant?.skills?.longAnswers4 && ( */}
<ScoreInput
label={SCORING.ESSAY4.label}
handleClick={handleClick}
score={scores?.ResponseFourScore}
maxScore={SCORING.ESSAY4}
hasMinusOne
/>
{/* )} */}
{/* {!applicant?.skills?.hackathonsAttended && (
<Label>First time hacker: +1</Label>
)} */}
Expand Down
9 changes: 7 additions & 2 deletions constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,12 @@ export const SCORING = {
RESUME: {
label: 'Resume',
value: 6,
weight: 1,
weight: 0.5,
},
NUM_EXP: {
label: 'Number of Experiences',
value: 5,
weight: 0,
weight: 0.6,
},
ESSAY1: {
label: 'Long Answer 1',
Expand All @@ -202,6 +202,11 @@ export const SCORING = {
},
ESSAY3: {
label: 'Long Answer 3',
value: 6,
weight: 1,
},
ESSAY4: {
label: 'Long Answer 4',
value: 1,
weight: 1,
},
Expand Down
3 changes: 3 additions & 0 deletions utility/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export const calculateTotalScore = hackerScore => {
case 'ResponseThreeScore':
label = SCORING.ESSAY3.label
break
case 'ResponseFourScore':
label = SCORING.ESSAY4.label
break
default:
break
}
Expand Down
Loading