2022-01-28 14:00:11 -07:00
|
|
|
import $ from 'jquery';
|
2023-09-10 04:27:23 -06:00
|
|
|
import {hideElem, showElem} from '../utils/dom.js';
|
2024-02-25 09:53:44 -07:00
|
|
|
import {POST} from '../modules/fetch.js';
|
2022-01-28 14:00:11 -07:00
|
|
|
|
2024-02-25 09:53:44 -07:00
|
|
|
async function getArchive($target, url, first) {
|
2024-03-27 14:05:49 -06:00
|
|
|
const dropdownBtn = $target[0].closest('.ui.dropdown.button') ?? $target[0].closest('.ui.dropdown.btn');
|
2024-03-21 10:31:15 -06:00
|
|
|
|
2024-02-25 09:53:44 -07:00
|
|
|
try {
|
2024-03-21 10:31:15 -06:00
|
|
|
dropdownBtn.classList.add('is-loading');
|
2024-02-25 09:53:44 -07:00
|
|
|
const response = await POST(url);
|
|
|
|
if (response.status === 200) {
|
|
|
|
const data = await response.json();
|
|
|
|
if (!data) {
|
|
|
|
// XXX Shouldn't happen?
|
2024-03-21 10:31:15 -06:00
|
|
|
dropdownBtn.classList.remove('is-loading');
|
2024-02-25 09:53:44 -07:00
|
|
|
return;
|
|
|
|
}
|
2021-10-16 11:28:04 -06:00
|
|
|
|
2024-02-25 09:53:44 -07:00
|
|
|
if (!data.complete) {
|
|
|
|
// 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.
|
2024-03-21 10:31:15 -06:00
|
|
|
dropdownBtn.classList.remove('is-loading');
|
2024-02-25 09:53:44 -07:00
|
|
|
window.location.href = url;
|
2021-10-16 11:28:04 -06:00
|
|
|
}
|
2024-02-25 09:53:44 -07:00
|
|
|
}
|
|
|
|
} catch {
|
2024-03-21 10:31:15 -06:00
|
|
|
dropdownBtn.classList.remove('is-loading');
|
2024-02-25 09:53:44 -07:00
|
|
|
}
|
2021-10-16 11:28:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoArchiveLinks() {
|
|
|
|
$('.archive-link').on('click', function (event) {
|
|
|
|
event.preventDefault();
|
2024-03-19 18:04:24 -06:00
|
|
|
const url = this.getAttribute('href');
|
2021-10-16 11:28:04 -06:00
|
|
|
if (!url) return;
|
|
|
|
getArchive($(event.target), url, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-28 21:21:30 -06: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 11:28:04 -06:00
|
|
|
localStorage.setItem('repo-clone-protocol', 'ssh');
|
2022-07-31 12:29:55 -06:00
|
|
|
window.updateCloneStates();
|
2021-10-16 11:28:04 -06:00
|
|
|
});
|
2022-03-28 21:21:30 -06:00
|
|
|
$repoCloneHttps.on('click', () => {
|
|
|
|
localStorage.setItem('repo-clone-protocol', 'https');
|
2022-07-31 12:29:55 -06:00
|
|
|
window.updateCloneStates();
|
2021-10-16 11:28:04 -06:00
|
|
|
});
|
2022-03-28 21:21:30 -06:00
|
|
|
|
2022-08-07 17:15:11 -06:00
|
|
|
$inputLink.on('focus', () => {
|
2023-04-20 03:28:27 -06:00
|
|
|
$inputLink.trigger('select');
|
2021-10-16 11:28:04 -06:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonBranchOrTagDropdown(selector) {
|
2022-01-16 04:19:26 -07:00
|
|
|
$(selector).each(function () {
|
2021-10-16 11:28:04 -06:00
|
|
|
const $dropdown = $(this);
|
|
|
|
$dropdown.find('.reference.column').on('click', function () {
|
2023-02-18 21:06:14 -07:00
|
|
|
hideElem($dropdown.find('.scrolling.reference-list-menu'));
|
|
|
|
showElem($($(this).data('target')));
|
2021-10-16 11:28:04 -06:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonFilterSearchDropdown(selector) {
|
2022-01-16 04:19:26 -07:00
|
|
|
const $dropdown = $(selector);
|
2024-03-21 04:16:11 -06:00
|
|
|
if (!$dropdown.length) return;
|
|
|
|
|
2021-10-16 11:28:04 -06:00
|
|
|
$dropdown.dropdown({
|
2022-06-04 10:02:10 -06:00
|
|
|
fullTextSearch: 'exact',
|
2021-10-16 11:28:04 -06:00
|
|
|
selectOnKeydown: false,
|
|
|
|
onChange(_text, _value, $choice) {
|
2024-03-19 18:04:24 -06:00
|
|
|
if ($choice[0].getAttribute('data-url')) {
|
|
|
|
window.location.href = $choice[0].getAttribute('data-url');
|
2021-10-16 11:28:04 -06:00
|
|
|
}
|
|
|
|
},
|
2024-03-19 18:04:24 -06:00
|
|
|
message: {noResults: $dropdown[0].getAttribute('data-no-results')},
|
2021-10-16 11:28:04 -06:00
|
|
|
});
|
|
|
|
}
|