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: ce33e91c3b8332b083cbec55529c07a6ea5986f0 (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
35
36
37
38
39
40
41
42
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;
};

/**
 * Returns an array of previously set event tags
 * @param {array} timelineEventTagsNodes
 * @returns {array}
 */
export const getPreviousEventTags = (timelineEventTagsNodes = []) =>
  timelineEventTagsNodes.map(({ name }) => name);