debian-mirror-gitlab/app/assets/javascripts/diffs/utils/merge_request.js
2023-03-04 22:38:38 +05:30

38 lines
822 B
JavaScript

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 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,
};
}