-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Create Functions that Use This #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ASPhillips8
wants to merge
8
commits into
learn-co-curriculum:master
Choose a base branch
from
ASPhillips8:context-lab-asp
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4dc9244
Create function for employee record
ASPhillips8 46ab92e
Create Employees Record
ASPhillips8 53ee67f
Create time in Event
ASPhillips8 3a831ca
Create time out function
ASPhillips8 ad66380
Create function for hours worked on date
ASPhillips8 bf3e109
Create wages earned on function
ASPhillips8 bf48926
Create Payroll function
ASPhillips8 190561a
Clean up comments and white space
ASPhillips8 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 hidden or 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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,5 +1,56 @@ | ||||||||||
| /* Your Code Here */ | ||||||||||
| function createEmployeeRecord(employee) { | ||||||||||
| return { | ||||||||||
| firstName: employee[0], | ||||||||||
| familyName: employee[1], | ||||||||||
| title: employee[2], | ||||||||||
| payPerHour: employee[3], | ||||||||||
| timeInEvents: [], | ||||||||||
| timeOutEvents: [], | ||||||||||
| } | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function createEmployeeRecords(employees){ | ||||||||||
| let employeeList = employees.map((employee) => createEmployeeRecord(employee)) | ||||||||||
| return employeeList | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function createTimeInEvent (dateStamp) { | ||||||||||
| let [date, time] = dateStamp.split(" ") | ||||||||||
| let clockIn = { | ||||||||||
| type: "TimeIn", | ||||||||||
| hour: parseInt(time, 10), | ||||||||||
| date: date | ||||||||||
| } | ||||||||||
| this.timeInEvents.push(clockIn) | ||||||||||
|
|
||||||||||
| return this | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function createTimeOutEvent (dateStamp) { | ||||||||||
| let [date, time] = dateStamp.split(" ") | ||||||||||
| let clockOut = { | ||||||||||
| type: "TimeOut", | ||||||||||
| hour: parseInt(time, 10), | ||||||||||
| date: date | ||||||||||
| } | ||||||||||
| this.timeOutEvents.push(clockOut) | ||||||||||
|
|
||||||||||
| return this | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function hoursWorkedOnDate (enteredDate) { | ||||||||||
| const hourIn = this.timeInEvents.find((inEvent) => inEvent.date === enteredDate) | ||||||||||
| const hourOut = this.timeOutEvents.find((outEvent) => outEvent.date === enteredDate) | ||||||||||
|
|
||||||||||
| return (hourOut.hour - hourIn.hour)/100 | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function wagesEarnedOnDate (enteredDate) { | ||||||||||
| const payRate = this.payPerHour | ||||||||||
| const hoursWork = hoursWorkedOnDate.call(this, enteredDate) | ||||||||||
|
|
||||||||||
| return hoursWork * payRate | ||||||||||
| } | ||||||||||
| /* | ||||||||||
| We're giving you this function. Take a look at it, you might see some usage | ||||||||||
| that's new and different. That's because we're avoiding a well-known, but | ||||||||||
|
|
@@ -21,3 +72,13 @@ const allWagesFor = function () { | |||||||||
| return payable | ||||||||||
| } | ||||||||||
|
|
||||||||||
| function findEmployeeByFirstName (srcArray, firstNameString) { | ||||||||||
|
|
||||||||||
| return srcArray.find((employeeRecord) => employeeRecord.firstName = firstNameString) | ||||||||||
|
Comment on lines
+76
to
+77
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.
Suggested change
|
||||||||||
| } | ||||||||||
|
|
||||||||||
| function calculatePayroll (employeeRecords) { | ||||||||||
| let payRoll = employeeRecords.reduce((total, employeeRecord) => total + allWagesFor.call(employeeRecord), 0) | ||||||||||
|
|
||||||||||
| return payRoll | ||||||||||
|
Comment on lines
+81
to
+83
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.
Suggested change
|
||||||||||
| } | ||||||||||
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.