2022-01-28 21:00:11 +00:00
|
|
|
import $ from 'jquery';
|
2022-08-09 12:37:34 +00:00
|
|
|
import {createTippy} from '../modules/tippy.js';
|
2023-02-19 04:06:14 +00:00
|
|
|
import {toggleElem} from '../utils/dom.js';
|
2022-01-28 21:00:11 +00:00
|
|
|
|
2021-11-09 09:27:25 +00:00
|
|
|
const {csrfToken} = window.config;
|
|
|
|
|
2021-11-23 02:44:38 +00:00
|
|
|
export function initRepoEllipsisButton() {
|
|
|
|
$('.ellipsis-button').on('click', function (e) {
|
2021-10-16 17:28:04 +00:00
|
|
|
e.preventDefault();
|
2021-11-23 02:44:38 +00:00
|
|
|
const expanded = $(this).attr('aria-expanded') === 'true';
|
2023-02-19 04:06:14 +00:00
|
|
|
toggleElem($(this).parent().find('.commit-body'));
|
2021-11-23 02:44:38 +00:00
|
|
|
$(this).attr('aria-expanded', String(!expanded));
|
2021-10-16 17:28:04 +00:00
|
|
|
});
|
|
|
|
}
|
2021-11-09 09:27:25 +00:00
|
|
|
|
|
|
|
export function initRepoCommitLastCommitLoader() {
|
|
|
|
const entryMap = {};
|
|
|
|
|
|
|
|
const entries = $('table#repo-files-table tr.notready')
|
|
|
|
.map((_, v) => {
|
|
|
|
entryMap[$(v).attr('data-entryname')] = $(v);
|
|
|
|
return $(v).attr('data-entryname');
|
|
|
|
})
|
|
|
|
.get();
|
|
|
|
|
|
|
|
if (entries.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const lastCommitLoaderURL = $('table#repo-files-table').data('lastCommitLoaderUrl');
|
|
|
|
|
|
|
|
if (entries.length > 200) {
|
|
|
|
$.post(lastCommitLoaderURL, {
|
|
|
|
_csrf: csrfToken,
|
|
|
|
}, (data) => {
|
|
|
|
$('table#repo-files-table').replaceWith(data);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.post(lastCommitLoaderURL, {
|
|
|
|
_csrf: csrfToken,
|
|
|
|
'f': entries,
|
|
|
|
}, (data) => {
|
|
|
|
$(data).find('tr').each((_, row) => {
|
|
|
|
if (row.className === 'commit-list') {
|
|
|
|
$('table#repo-files-table .commit-list').replaceWith(row);
|
|
|
|
return;
|
|
|
|
}
|
2022-06-17 09:44:35 +00:00
|
|
|
// there are other <tr> rows in response (eg: <tr class="has-parent">)
|
|
|
|
// at the moment only the "data-entryname" rows should be processed
|
|
|
|
const entryName = $(row).attr('data-entryname');
|
|
|
|
if (entryName) {
|
|
|
|
entryMap[entryName].replaceWith(row);
|
|
|
|
}
|
2021-11-09 09:27:25 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2022-04-26 19:09:46 +00:00
|
|
|
|
|
|
|
export function initCommitStatuses() {
|
2023-02-20 08:43:04 +00:00
|
|
|
$('[data-tippy="commit-statuses"]').each(function () {
|
2022-08-09 21:55:29 +00:00
|
|
|
const top = $('.repository.file.list').length > 0 || $('.repository.diff').length > 0;
|
2022-08-09 12:37:34 +00:00
|
|
|
|
|
|
|
createTippy(this, {
|
2022-08-10 04:08:06 +00:00
|
|
|
content: this.nextElementSibling,
|
2022-08-09 21:55:29 +00:00
|
|
|
placement: top ? 'top-start' : 'bottom-start',
|
2022-08-09 12:37:34 +00:00
|
|
|
interactive: true,
|
2023-06-15 14:52:23 +00:00
|
|
|
role: 'dialog',
|
2022-08-09 12:37:34 +00:00
|
|
|
});
|
2022-04-26 19:09:46 +00:00
|
|
|
});
|
|
|
|
}
|