2021-10-21 13:07:43 +05:30
|
|
|
const {csrfToken} = window.config;
|
2021-10-08 18:38:22 +05:30
|
|
|
|
|
|
|
export async function initLastCommitLoader() {
|
|
|
|
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, {
|
2021-10-21 13:07:43 +05:30
|
|
|
_csrf: csrfToken,
|
2021-10-08 18:38:22 +05:30
|
|
|
}, (data) => {
|
|
|
|
$('table#repo-files-table').replaceWith(data);
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.post(lastCommitLoaderURL, {
|
2021-10-21 13:07:43 +05:30
|
|
|
_csrf: csrfToken,
|
2021-10-08 18:38:22 +05:30
|
|
|
'f': entries,
|
|
|
|
}, (data) => {
|
|
|
|
$(data).find('tr').each((_, row) => {
|
|
|
|
if (row.className === 'commit-list') {
|
|
|
|
$('table#repo-files-table .commit-list').replaceWith(row);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
entryMap[$(row).attr('data-entryname')].replaceWith(row);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|