debian-mirror-gitlab/app/assets/javascripts/diffs/utils/merge_request.js
2023-06-20 00:43:36 +05:30

51 lines
1.2 KiB
JavaScript

import { ZERO_CHANGES_ALT_DISPLAY } from '../constants';
const endpointRE = /^(\/?(.+?)\/(.+?)\/-\/merge_requests\/(\d+)).*$/i;
function getVersionInfo({ endpoint } = {}) {
const dummyRoot = 'https://gitlab.com';
const endpointUrl = new URL(endpoint, dummyRoot);
const params = Object.fromEntries(endpointUrl.searchParams.entries());
const { start_sha: startSha, diff_id: diffId } = params;
return {
diffId,
startSha,
};
}
export function updateChangesTabCount({
count,
badge = document.querySelector('.js-diffs-tab .gl-badge'),
} = {}) {
if (badge) {
// The purpose of this function is to assign to this parameter
/* eslint-disable-next-line no-param-reassign */
badge.textContent = count || ZERO_CHANGES_ALT_DISPLAY;
}
}
export function getDerivedMergeRequestInformation({ endpoint } = {}) {
let mrPath;
let userOrGroup;
let project;
let id;
let diffId;
let startSha;
const matches = endpointRE.exec(endpoint);
if (matches) {
[, mrPath, userOrGroup, project, id] = matches;
({ diffId, startSha } = getVersionInfo({ endpoint }));
}
return {
mrPath,
userOrGroup,
project,
id,
diffId,
startSha,
};
}