summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues/show/components/incidents/utils.js
blob: 5a009debd758e1d688b62c6829fe1232bfabdb08 (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
31
32
33
34
import { createAlert } from '~/flash';
import { s__ } from '~/locale';

export const displayAndLogError = (error) =>
  createAlert({
    message: s__('Incident|Something went wrong while fetching incident timeline events.'),
    captureError: true,
    error,
  });

const EVENT_ICONS = {
  comment: 'comment',
  issues: 'issues',
  label: 'label',
  status: 'status',
  default: 'comment',
};

export const getEventIcon = (actionName) => {
  return EVENT_ICONS[actionName] ?? EVENT_ICONS.default;
};

/**
 * Returns a date shifted by the current timezone offset set to now
 * by default but can accept an existing date as an ISO date string
 * @param {string} ISOString
 * @returns {Date}
 */
export const getUtcShiftedDate = (ISOString = null) => {
  const date = ISOString ? new Date(ISOString) : new Date();
  date.setMinutes(date.getMinutes() + date.getTimezoneOffset());

  return date;
};