summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/monitoring/utils.js
blob: c3e854c5367da33bbd0508cb72834954fcae60f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { timeWindows, msPerMinute } from './constants';

export const getTimeDifferenceMinutes = timeWindow => {
  switch (timeWindow) {
    case timeWindows.thirtyMinutes:
      return 30;
    case timeWindows.threeHours:
      return 60 * 3;
    case timeWindows.eightHours:
      return 60 * 8;
    case timeWindows.oneDay:
      return 60 * 24 * 1;
    case timeWindows.threeDays:
      return 60 * 24 * 3;
    case timeWindows.oneWeek:
      return 60 * 24 * 7 * 1;
    default:
      return 60 * 8;
  }
};

export const getTimeDiff = selectedTimeWindow => {
  const end = Date.now();
  const timeDifferenceMinutes = getTimeDifferenceMinutes(selectedTimeWindow);
  const start = new Date(end - timeDifferenceMinutes * msPerMinute).getTime();

  return { start, end };
};

export default {};