Skip to content

Commit

Permalink
fix: for TimeSlots (jquense#1462)
Browse files Browse the repository at this point in the history
* Fix for TimeSlots

* Fixes tests
  • Loading branch information
MincedCutlet committed Mar 11, 2020
1 parent 70b3e96 commit c31639a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/utils/TimeSlots.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export function getSlotMetrics({ min: start, max: end, step, timeslots }) {
const rangeStartMin = positionFromDate(rangeStart)
const rangeEndMin = positionFromDate(rangeEnd)
const top =
rangeEndMin - rangeStartMin < step && !dates.eq(end, rangeEnd)
rangeEndMin > step * (numSlots - 1) && !dates.eq(end, rangeEnd)
? ((rangeStartMin - step) / (step * numSlots)) * 100
: (rangeStartMin / (step * numSlots)) * 100

Expand Down
8 changes: 4 additions & 4 deletions test/utils/TimeSlots.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { getSlotMetrics } from '../../src/utils/TimeSlots'
import * as dates from '../../src/utils/dates'

describe('getSlotMetrics', () => {
const min = dates.startOf(new Date(), 'day')
const max = dates.endOf(new Date(), 'day')
const min = dates.startOf(new Date(2018, 0, 29, 0, 0, 0), 'day')
const max = dates.endOf(new Date(2018, 0, 29, 59, 59, 59), 'day')
const slotMetrics = getSlotMetrics({ min, max, step: 60, timeslots: 1 })
test('getSlotMetrics.closestSlotToPosition: always returns timeslot if valid percentage is given', () => {
expect(slotMetrics.closestSlotToPosition(0)).toBeDefined()
Expand All @@ -24,8 +24,8 @@ describe('getSlotMetrics', () => {
})

describe('getRange', () => {
const min = dates.startOf(new Date(), 'day')
const max = dates.endOf(new Date(), 'day')
const min = dates.startOf(new Date(2018, 0, 29, 0, 0, 0), 'day')
const max = dates.endOf(new Date(2018, 0, 29, 59, 59, 59), 'day')
const slotMetrics = getSlotMetrics({ min, max, step: 60, timeslots: 1 })

test('getRange: 15 minute start of day appointment stays within calendar', () => {
Expand Down

0 comments on commit c31639a

Please sign in to comment.