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';
|
2021-11-09 09:27:25 +00:00
|
|
|
|
2021-11-23 02:44:38 +00:00
|
|
|
export function initRepoEllipsisButton() {
|
2024-02-22 17:13:25 +00:00
|
|
|
for (const button of document.querySelectorAll('.js-toggle-commit-body')) {
|
|
|
|
button.addEventListener('click', function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
const expanded = this.getAttribute('aria-expanded') === 'true';
|
|
|
|
toggleElem(this.parentElement.querySelector('.commit-body'));
|
|
|
|
this.setAttribute('aria-expanded', String(!expanded));
|
|
|
|
});
|
|
|
|
}
|
2021-10-16 17:28:04 +00:00
|
|
|
}
|
2021-11-09 09:27:25 +00:00
|
|
|
|
2022-04-26 19:09:46 +00:00
|
|
|
export function initCommitStatuses() {
|
2024-02-22 17:13:25 +00:00
|
|
|
for (const element of document.querySelectorAll('[data-tippy="commit-statuses"]')) {
|
|
|
|
const top = document.querySelector('.repository.file.list') || document.querySelector('.repository.diff');
|
2022-08-09 12:37:34 +00:00
|
|
|
|
2024-02-22 17:13:25 +00:00
|
|
|
createTippy(element, {
|
|
|
|
content: element.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 08:09:16 +00:00
|
|
|
role: 'dialog',
|
2023-11-02 14:49:02 +00:00
|
|
|
theme: 'box-with-header',
|
2022-08-09 12:37:34 +00:00
|
|
|
});
|
2024-02-22 17:13:25 +00:00
|
|
|
}
|
2022-04-26 19:09:46 +00:00
|
|
|
}
|