Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.js « incidents « components « show « issues « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf790a11b67fd7417741f8c1bc46d9bd2c9f065a (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
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. Allows
 * date.getHours() and similar to return UTC values.
 *
 * @returns {Date}
 */
export const getUtcShiftedDateNow = () => {
  const date = new Date();
  date.setMinutes(date.getMinutes() + date.getTimezoneOffset());
  return date;
};