debian-mirror-gitlab/app/assets/javascripts/blob/blob_line_permalink_updater.js

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import { getLocationHash } from '../lib/utils/url_utility';
2022-03-02 08:16:31 +05:30
const lineNumberRe = /^(L|LC)[0-9]+/;
2017-08-17 22:00:37 +05:30
2021-03-08 18:12:59 +05:30
const updateLineNumbersOnBlobPermalinks = (linksToUpdate) => {
2018-03-17 18:26:18 +05:30
const hash = getLocationHash();
2017-08-17 22:00:37 +05:30
if (hash && lineNumberRe.test(hash)) {
const hashUrlString = `#${hash}`;
2021-03-08 18:12:59 +05:30
[].concat(Array.prototype.slice.call(linksToUpdate)).forEach((permalinkButton) => {
2018-12-13 13:39:08 +05:30
const baseHref =
permalinkButton.getAttribute('data-original-href') ||
(() => {
const href = permalinkButton.getAttribute('href');
permalinkButton.setAttribute('data-original-href', href);
return href;
})();
2017-08-17 22:00:37 +05:30
permalinkButton.setAttribute('href', `${baseHref}${hashUrlString}`);
});
}
};
function BlobLinePermalinkUpdater(blobContentHolder, lineNumberSelector, elementsToUpdate) {
const updateBlameAndBlobPermalinkCb = () => {
// Wait for the hash to update from the LineHighlighter callback
setTimeout(() => {
updateLineNumbersOnBlobPermalinks(elementsToUpdate);
}, 0);
};
2021-03-08 18:12:59 +05:30
blobContentHolder.addEventListener('click', (e) => {
2017-08-17 22:00:37 +05:30
if (e.target.matches(lineNumberSelector)) {
updateBlameAndBlobPermalinkCb();
}
});
updateBlameAndBlobPermalinkCb();
}
export default BlobLinePermalinkUpdater;