debian-mirror-gitlab/app/assets/javascripts/issues/show/components/incidents/utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
896 B
JavaScript
Raw Normal View History

2022-07-23 23:45:48 +05:30
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',
2022-08-13 15:12:31 +05:30
issues: 'issues',
2022-08-27 11:52:29 +05:30
label: 'label',
2022-08-13 15:12:31 +05:30
status: 'status',
2022-07-23 23:45:48 +05:30
default: 'comment',
};
export const getEventIcon = (actionName) => {
return EVENT_ICONS[actionName] ?? EVENT_ICONS.default;
};
2022-08-13 15:12:31 +05:30
/**
2022-10-11 01:57:18 +05:30
* 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
2022-08-13 15:12:31 +05:30
* @returns {Date}
*/
2022-10-11 01:57:18 +05:30
export const getUtcShiftedDate = (ISOString = null) => {
const date = ISOString ? new Date(ISOString) : new Date();
2022-08-13 15:12:31 +05:30
date.setMinutes(date.getMinutes() + date.getTimezoneOffset());
2022-10-11 01:57:18 +05:30
2022-08-13 15:12:31 +05:30
return date;
};