-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Use git diff-tree for DiffFileTree on diff pages
#33514
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use git diff-tree for DiffFileTree on diff pages
#33514
Conversation
git diff-tree for DiffFileTree on diff pages
4799444 to
5752410
Compare
|
I think you don't need to update all the language files except en_US. |
I am not sure I understand, If I remove it from |
Because other language files will be synced from translate.gitea.com, so basicaly you just need to change the |
b50105b to
0982492
Compare
|
I did a test manually, looks like a modified file can not be selected. |
|
@lunny Apologizes for the delay. I wasn't able to reproduce your issue. Could you provide some more details? Screen.Recording.2025-02-24.at.1.47.47.PM.mov |
0982492 to
705f380
Compare
705f380 to
dbd2c36
Compare
|
ps: no need to force-push when review starts, the final merge is a squash merge. Force-push makes the review difficult because every-line needs to be re-reviewed since everything is in a commit. |
I use jj which makes this behaviour automatic and keeps my "stacked" changes up to date. I can switch to using the git cli and adding commits if its preferred.
I have updated the comment. |
| diffFileInfo.files.push(...diffDataFiles); | ||
| window.config.pageData.diffFileInfo = diffFileInfo; | ||
| </script> | ||
| <div id="diff-file-list"></div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
With this removal, will it not flash wrong content on page load when diff tree is visible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I may be misunderstanding and this was just some data modification that has no reason to be in templates.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it's not related to "content flash" (and this block was marked as "module", it only executes after DOM ready).
Some old PRs used very tricky methods to make the Vue work, now it's the time to make code overall right.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah we should remove all such template js, except those cases that serve the purpose of avoiding flash, but those are better migrated to web components.
* giteaofficial/main: Use pullrequestlist instead of []*pullrequest (go-gitea#33765) Upgrade act to 0.261.4 and actions-proto-go to v0.4.1 (go-gitea#33760) Webhook add X-Gitea-Hook-Installation-Target-Type Header (go-gitea#33752) Fix dynamic content loading init problem (go-gitea#33748) [skip ci] Updated translations via Crowdin Add composor source field (go-gitea#33502) upgrade go-crypto from 1.1.5 to 1.1.6 (go-gitea#33745) Disable go license generation as part of `make tidy` (go-gitea#33747) Refactor repo-diff.ts (go-gitea#33746) Use `git diff-tree` for `DiffFileTree` on diff pages (go-gitea#33514) [skip ci] Updated translations via Crowdin Improve "generate new access token" form (go-gitea#33730) Remove superflous tw-content-center (go-gitea#33741) Clone repository with Tea CLI (go-gitea#33725) allow filtering /repos/{owner}/{repo}/pulls by target base branch queryparam (go-gitea#33684) Show info about maintainers are allowed to edit a PR (go-gitea#33738) Improve admin user view page (go-gitea#33735) [skip ci] Updated translations via Crowdin Align sidebar gears to the right (go-gitea#33721)
Fixes #33514 (comment) Co-authored-by: wxiaoguang <[email protected]>


Modify Diff View FileTree to show all files
Changes
git diff-treeto generate the file tree for the diffDiffFileList.vueand "Show Stats" in diff optionsOpen Questions
Demo
In this demo I set
git.MAX_GIT_DIFF_FILES=1in myapp.inito demonstrate a worst case example. In most cases the behaviour isn't nearly as jarring as we load a bunch of files at a time.Screen.Recording.2025-02-06.at.6.51.03.PM.mov