2022-01-29 02:30:11 +05:30
|
|
|
import $ from 'jquery';
|
|
|
|
|
2021-10-21 13:07:43 +05:30
|
|
|
const {csrfToken} = window.config;
|
2021-10-16 22:58:04 +05:30
|
|
|
|
|
|
|
function getArchive($target, url, first) {
|
|
|
|
$.ajax({
|
|
|
|
url,
|
|
|
|
type: 'POST',
|
|
|
|
data: {
|
2021-10-21 13:07:43 +05:30
|
|
|
_csrf: csrfToken,
|
2021-10-16 22:58:04 +05:30
|
|
|
},
|
|
|
|
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 19:20:43 +05:30
|
|
|
const url = $(this).attr('href');
|
2021-10-16 22:58:04 +05:30
|
|
|
if (!url) return;
|
|
|
|
getArchive($(event.target), url, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-29 08:51:30 +05:30
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2022-07-31 23:59:55 +05:30
|
|
|
// restore animation after first init
|
2022-03-29 08:51:30 +05:30
|
|
|
setTimeout(() => {
|
|
|
|
$repoCloneSsh.removeClass('no-transition');
|
|
|
|
$repoCloneHttps.removeClass('no-transition');
|
|
|
|
}, 100);
|
|
|
|
|
|
|
|
$repoCloneSsh.on('click', () => {
|
2021-10-16 22:58:04 +05:30
|
|
|
localStorage.setItem('repo-clone-protocol', 'ssh');
|
2022-07-31 23:59:55 +05:30
|
|
|
window.updateCloneStates();
|
2021-10-16 22:58:04 +05:30
|
|
|
});
|
2022-03-29 08:51:30 +05:30
|
|
|
$repoCloneHttps.on('click', () => {
|
|
|
|
localStorage.setItem('repo-clone-protocol', 'https');
|
2022-07-31 23:59:55 +05:30
|
|
|
window.updateCloneStates();
|
2021-10-16 22:58:04 +05:30
|
|
|
});
|
2022-03-29 08:51:30 +05:30
|
|
|
|
2022-08-08 04:45:11 +05:30
|
|
|
$inputLink.on('focus', () => {
|
2022-03-29 08:51:30 +05:30
|
|
|
$inputLink.select();
|
2021-10-16 22:58:04 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonBranchOrTagDropdown(selector) {
|
2022-01-16 16:49:26 +05:30
|
|
|
$(selector).each(function () {
|
2021-10-16 22:58:04 +05:30
|
|
|
const $dropdown = $(this);
|
|
|
|
$dropdown.find('.reference.column').on('click', function () {
|
|
|
|
$dropdown.find('.scrolling.reference-list-menu').hide();
|
2022-01-16 16:49:26 +05:30
|
|
|
$($(this).data('target')).show();
|
2021-10-16 22:58:04 +05:30
|
|
|
return false;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonFilterSearchDropdown(selector) {
|
2022-01-16 16:49:26 +05:30
|
|
|
const $dropdown = $(selector);
|
2021-10-16 22:58:04 +05:30
|
|
|
$dropdown.dropdown({
|
2022-06-04 21:32:10 +05:30
|
|
|
fullTextSearch: 'exact',
|
2021-10-16 22:58:04 +05:30
|
|
|
selectOnKeydown: false,
|
|
|
|
onChange(_text, _value, $choice) {
|
2022-06-04 21:32:10 +05:30
|
|
|
if ($choice.attr('data-url')) {
|
|
|
|
window.location.href = $choice.attr('data-url');
|
2021-10-16 22:58:04 +05:30
|
|
|
}
|
|
|
|
},
|
2022-06-04 21:32:10 +05:30
|
|
|
message: {noResults: $dropdown.attr('data-no-results')},
|
2021-10-16 22:58:04 +05:30
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function initRepoCommonLanguageStats() {
|
|
|
|
// Language stats
|
|
|
|
if ($('.language-stats').length > 0) {
|
|
|
|
$('.language-stats').on('click', (e) => {
|
|
|
|
e.preventDefault();
|
|
|
|
$('.language-stats-details, .repository-menu').slideToggle();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|