Skip to content

Commit

Permalink
fix: calculation of slots number for date when DST ends. (jquense#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-kartynnik authored and jquense committed Nov 2, 2018
1 parent 4e04fc8 commit 2ca0226
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/TimeSlots.js
@@ -1,7 +1,7 @@
import dates from './dates'

const getDstOffset = (start, end) =>
Math.abs(start.getTimezoneOffset() - end.getTimezoneOffset())
start.getTimezoneOffset() - end.getTimezoneOffset()

const getKey = (min, max, step, slots) =>
`${+dates.startOf(min, 'minutes')}` +
Expand Down Expand Up @@ -105,7 +105,7 @@ export function getSlotMetrics({ min: start, max: end, step, timeslots }) {
if (dates.lt(date, start, 'minutes')) return slots[0]

const diffMins = dates.diff(start, date, 'minutes')
return slots[(diffMins - diffMins % step) / step + offset]
return slots[(diffMins - (diffMins % step)) / step + offset]
},

startsBeforeDay(date) {
Expand All @@ -130,11 +130,11 @@ export function getSlotMetrics({ min: start, max: end, step, timeslots }) {

const rangeStartMin = positionFromDate(rangeStart)
const rangeEndMin = positionFromDate(rangeEnd)
const top = rangeStartMin / totalMin * 100
const top = (rangeStartMin / totalMin) * 100

return {
top,
height: rangeEndMin / totalMin * 100 - top,
height: (rangeEndMin / totalMin) * 100 - top,
start: positionFromDate(rangeStart),
startDate: rangeStart,
end: positionFromDate(rangeEnd),
Expand Down

0 comments on commit 2ca0226

Please sign in to comment.