2022-01-28 22:00:11 +01:00
|
|
|
import $ from 'jquery';
|
2023-09-10 12:27:23 +02:00
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2022-01-28 22:00:11 +01:00
|
|
|
|
2021-10-21 09:37:43 +02:00
|
|
|
const {csrfToken} = window.config;
|
2021-10-16 19:28:04 +02:00
|
|
|
|
|
|
|
function getArchive($target, url, first) {
|
|
|
|
$.ajax({
|
|
|
|
url,
|
|
|
|
type: 'POST',
|
|
|
|
data: {
|
2021-10-21 09:37:43 +02:00
|
|
|
_csrf: csrfToken,
|
2021-10-16 19:28:04 +02:00
|
|
|
},
|
|
|
|
complete(xhr) {
|
|
|
|
if (xhr.status === 200) {
|
|
|
|
if (!xhr.responseJSON) {
|
|
|
|
// XXX Shouldn't happen?
|
|
|
|
$target.closest('.dropdown').children('i').removeClass('loading');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!xhr.responseJSON.complete) {
|
|
|
|
$target.closest('.dropdown').children('i').addClass('loading');
|
|
|
|
// Wait for only three quarters of a second initially, in case it's
|
|
|
|
// quickly archived.
|
|
|
|
setTimeout(() => {
|
|
|
|
getArchive($target, url, false);
|
|
|
|
}, first ? 750 : 2000);
|
|
|
|
} else {
|
|
|
|
// We don't need to continue checking.
|
|
|
|
$target.closest('.dropdown').children('i').removeClass('loading');
|
|
|
|
window.location.href = url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoArchiveLinks() {
|
|
|
|
$('.archive-link').on('click', function (event) {
|
|
|
|
event.preventDefault();
|
2021-11-29 14:50:43 +01:00
|
|
|
const url = $(this).attr('href');
|
2021-10-16 19:28:04 +02:00
|
|
|
if (!url) return;
|
|
|
|
getArchive($(event.target), url, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-29 05:21:30 +02:00
|
|
|
export function initRepoCloneLink() {
|
|
|
|
const $repoCloneSsh = $('#repo-clone-ssh');
|
|
|
|
const $repoCloneHttps = $('#repo-clone-https');
|
|
|
|
const $inputLink = $('#repo-clone-url');
|
|
|
|
|
|
|
|
if ((!$repoCloneSsh.length && !$repoCloneHttps.length) || !$inputLink.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$repoCloneSsh.on('click', () => {
|
2021-10-16 19:28:04 +02:00
|
|
|
localStorage.setItem('repo-clone-protocol', 'ssh');
|
2022-07-31 20:29:55 +02:00
|
|
|
window.updateCloneStates();
|
2021-10-16 19:28:04 +02:00
|
|
|
});
|
2022-03-29 05:21:30 +02:00
|
|
|
$repoCloneHttps.on('click', () => {
|
|
|
|
localStorage.setItem('repo-clone-protocol', 'https');
|
2022-07-31 20:29:55 +02:00
|
|
|
window.updateCloneStates();
|
2021-10-16 19:28:04 +02:00
|
|
|
});
|
2022-03-29 05:21:30 +02:00
|
|
|
|
2022-08-08 01:15:11 +02:00
|
|
|
$inputLink.on('focus', () => {
|
2023-04-20 11:28:27 +02:00
|
|
|
$inputLink.trigger('select');
|
2021-10-16 19:28:04 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonBranchOrTagDropdown(selector) {
|
2022-01-16 12:19:26 +01:00
|
|
|
$(selector).each(function () {
|
2021-10-16 19:28:04 +02:00
|
|
|
const $dropdown = $(this);
|
|
|
|
$dropdown.find('.reference.column').on('click', function () {
|
2023-02-19 05:06:14 +01:00
|
|
|
hideElem($dropdown.find('.scrolling.reference-list-menu'));
|
|
|
|
showElem($($(this).data('target')));
|
2021-10-16 19:28:04 +02:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonFilterSearchDropdown(selector) {
|
2022-01-16 12:19:26 +01:00
|
|
|
const $dropdown = $(selector);
|
2021-10-16 19:28:04 +02:00
|
|
|
$dropdown.dropdown({
|
2022-06-04 18:02:10 +02:00
|
|
|
fullTextSearch: 'exact',
|
2021-10-16 19:28:04 +02:00
|
|
|
selectOnKeydown: false,
|
|
|
|
onChange(_text, _value, $choice) {
|
2022-06-04 18:02:10 +02:00
|
|
|
if ($choice.attr('data-url')) {
|
|
|
|
window.location.href = $choice.attr('data-url');
|
2021-10-16 19:28:04 +02:00
|
|
|
}
|
|
|
|
},
|
2022-06-04 18:02:10 +02:00
|
|
|
message: {noResults: $dropdown.attr('data-no-results')},
|
2021-10-16 19:28:04 +02:00
|
|
|
});
|
|
|
|
}
|