mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
985 B
26 lines
985 B
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', |
|
}); |
|
}); |
|
}
|
|
|