1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-07-31 21:43:05 +08:00

Convert frontend code to typescript ()

None of the frontend js/ts files was touched besides these two commands
(edit: no longer true, I touched one file in
61105d0618
because of a deprecation that was not showing before the rename).

`tsc` currently reports 778 errors, so I have disabled it in CI as
planned.

Everything appears to work fine.
This commit is contained in:
silverwind
2024-07-07 17:32:30 +02:00
committed by GitHub
parent 5115c278ff
commit 5791a73e75
168 changed files with 562 additions and 386 deletions
.eslintrc.yamlMakefilepackage-lock.jsonpackage.jsontsconfig.jsontypes.d.tsvitest.config.ts
web_src/js
bootstrap.test.tsbootstrap.ts
components
features
globals.tshtmx.tsindex.ts
markup
modules
render
standalone
svg.test.tssvg.tsutils.test.tsutils.ts
utils
vendor
vitest.setup.ts
webcomponents
webpack.config.js

@ -0,0 +1,19 @@
import {svg} from '../svg.ts';
// Hides the file if newFold is true, and shows it otherwise. The actual hiding is performed using CSS.
//
// The fold arrow is the icon displayed on the upper left of the file box, especially intended for components having the 'fold-file' class.
// The file content box is the box that should be hidden or shown, especially intended for components having the 'file-content' class.
//
export function setFileFolding(fileContentBox, foldArrow, newFold) {
foldArrow.innerHTML = svg(`octicon-chevron-${newFold ? 'right' : 'down'}`, 18);
fileContentBox.setAttribute('data-folded', newFold);
if (newFold && fileContentBox.getBoundingClientRect().top < 0) {
fileContentBox.scrollIntoView();
}
}
// Like `setFileFolding`, except that it automatically inverts the current file folding state.
export function invertFileFolding(fileContentBox, foldArrow) {
setFileFolding(fileContentBox, foldArrow, fileContentBox.getAttribute('data-folded') !== 'true');
}