debian-mirror-gitlab/app/assets/javascripts/issue_show/utils/parse_data.js

24 lines
642 B
JavaScript
Raw Normal View History

2021-01-03 14:25:43 +05:30
import { sanitize } from '~/lib/dompurify';
2021-03-11 19:13:27 +05:30
import * as Sentry from '~/sentry/wrapper';
2019-07-07 11:18:12 +05:30
2020-11-24 15:15:51 +05:30
// We currently load + parse the data from the issue app and related merge request
let cachedParsedData;
2021-03-08 18:12:59 +05:30
export const parseIssuableData = (el) => {
2019-07-07 11:18:12 +05:30
try {
2020-11-24 15:15:51 +05:30
if (cachedParsedData) return cachedParsedData;
2021-02-22 17:27:13 +05:30
const parsedData = JSON.parse(el.dataset.initial);
2020-11-24 15:15:51 +05:30
parsedData.initialTitleHtml = sanitize(parsedData.initialTitleHtml);
parsedData.initialDescriptionHtml = sanitize(parsedData.initialDescriptionHtml);
cachedParsedData = parsedData;
return parsedData;
2019-07-07 11:18:12 +05:30
} catch (e) {
2021-01-03 14:25:43 +05:30
Sentry.captureException(e);
2019-07-07 11:18:12 +05:30
return {};
}
};