mirror of
https://github.com/go-gitea/gitea.git
synced 2026-06-28 21:06:14 +02:00
Apply the code changes required by the rules enabled in the previous commit: String() coercions over template literals, location.assign over href assignment, URL#href over toString, Object.entries/values loop forms, and related autofixes. Disable unicorn/no-non-function-verb-prefix, and disable unicorn/no-error-property-assignment for test files. Assisted-by: claude-code:opus-4.8
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import {createTippy} from '../modules/tippy.ts';
|
|
import {toggleElem} from '../utils/dom.ts';
|
|
import {registerGlobalEventFunc, registerGlobalInitFunc} from '../modules/observer.ts';
|
|
|
|
export function initRepoEllipsisButton() {
|
|
registerGlobalEventFunc('click', 'onRepoEllipsisButtonClick', async (el: HTMLInputElement, e: Event) => {
|
|
e.preventDefault();
|
|
const expanded = el.getAttribute('aria-expanded') === 'true';
|
|
toggleElem(el.parentElement!.querySelector('.commit-body')!);
|
|
el.setAttribute('aria-expanded', String(!expanded));
|
|
});
|
|
}
|
|
|
|
export function initCommitStatuses() {
|
|
registerGlobalInitFunc('initCommitStatuses', (el: HTMLElement) => {
|
|
const nextEl = el.nextElementSibling!;
|
|
if (!nextEl.matches('.tippy-target')) throw new Error('Expected next element to be a tippy target');
|
|
createTippy(el, {
|
|
content: nextEl,
|
|
placement: 'bottom-start',
|
|
interactive: true,
|
|
role: 'dialog',
|
|
theme: 'box-with-header',
|
|
});
|
|
});
|
|
}
|
|
|
|
export function initAvatarStackPopup() {
|
|
registerGlobalInitFunc('initAvatarStackPopup', (el: HTMLElement) => {
|
|
const nextEl = el.nextElementSibling!;
|
|
if (!nextEl.matches('.tippy-target')) throw new Error('Expected next element to be a tippy target');
|
|
createTippy(el, {
|
|
content: nextEl,
|
|
placement: 'bottom-start',
|
|
interactive: true,
|
|
role: 'dialog',
|
|
theme: 'menu',
|
|
trigger: 'click',
|
|
hideOnClick: true,
|
|
});
|
|
});
|
|
}
|
|
|
|
export function initCommitFileHistoryFollowRename() {
|
|
registerGlobalInitFunc('initCommitHistoryFollowRename', (el: HTMLInputElement) => {
|
|
el.addEventListener('change', () => {
|
|
const url = new URL(window.location.toString());
|
|
url.searchParams.set('follow-rename', String(el.checked));
|
|
window.location.assign(url.href);
|
|
});
|
|
});
|
|
}
|