2022-08-09 06:37:34 -06:00
|
|
|
import {createTippy} from '../modules/tippy.js';
|
2023-02-18 21:06:14 -07:00
|
|
|
import {toggleElem} from '../utils/dom.js';
|
2021-11-09 02:27:25 -07:00
|
|
|
|
2021-11-22 19:44:38 -07:00
|
|
|
export function initRepoEllipsisButton() {
|
2024-02-22 10:13:25 -07: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 11:28:04 -06:00
|
|
|
}
|
2021-11-09 02:27:25 -07:00
|
|
|
|
2022-04-26 13:09:46 -06:00
|
|
|
export function initCommitStatuses() {
|
2024-02-22 10:13:25 -07: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 06:37:34 -06:00
|
|
|
|
2024-02-22 10:13:25 -07:00
|
|
|
createTippy(element, {
|
|
|
|
content: element.nextElementSibling,
|
2022-08-09 15:55:29 -06:00
|
|
|
placement: top ? 'top-start' : 'bottom-start',
|
2022-08-09 06:37:34 -06:00
|
|
|
interactive: true,
|
2023-06-15 02:09:16 -06:00
|
|
|
role: 'dialog',
|
2023-11-02 08:49:02 -06:00
|
|
|
theme: 'box-with-header',
|
2022-08-09 06:37:34 -06:00
|
|
|
});
|
2024-02-22 10:13:25 -07:00
|
|
|
}
|
2022-04-26 13:09:46 -06:00
|
|
|
}
|