mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
6068537f8a
- Use case in `repo-commit` was tested until the point where the POST request was sent with the same payload. - Use case in `repo-legacy` was tested completely with comment editing. - `jquery/no-fade` was disabled as well to stay in sync with `no-jquery/no-fade`, had no violations. (cherry picked from commit a5c570c1e02302212a5d8f7cf7d91f24ab0578d5)
70 lines
2 KiB
JavaScript
70 lines
2 KiB
JavaScript
import $ from 'jquery';
|
|
import {createTippy} from '../modules/tippy.js';
|
|
import {toggleElem} from '../utils/dom.js';
|
|
|
|
const {csrfToken} = window.config;
|
|
|
|
export function initRepoEllipsisButton() {
|
|
$('.js-toggle-commit-body').on('click', function (e) {
|
|
e.preventDefault();
|
|
const expanded = $(this).attr('aria-expanded') === 'true';
|
|
toggleElem($(this).parent().find('.commit-body'));
|
|
$(this).attr('aria-expanded', String(!expanded));
|
|
});
|
|
}
|
|
|
|
export function initRepoCommitLastCommitLoader() {
|
|
const notReadyEls = document.querySelectorAll('table#repo-files-table tr.notready');
|
|
if (!notReadyEls.length) return;
|
|
|
|
const entryMap = {};
|
|
const entries = [];
|
|
for (const el of notReadyEls) {
|
|
const entryname = el.getAttribute('data-entryname');
|
|
entryMap[entryname] = $(el);
|
|
entries.push(entryname);
|
|
}
|
|
|
|
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;
|
|
}
|
|
// 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);
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
export function initCommitStatuses() {
|
|
$('[data-tippy="commit-statuses"]').each(function () {
|
|
const top = $('.repository.file.list').length > 0 || $('.repository.diff').length > 0;
|
|
|
|
createTippy(this, {
|
|
content: this.nextElementSibling,
|
|
placement: top ? 'top-start' : 'bottom-start',
|
|
interactive: true,
|
|
role: 'dialog',
|
|
theme: 'box-with-header',
|
|
});
|
|
});
|
|
}
|