mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-30 19:08:37 +00:00 
			
		
		
		
	Highlight viewed files differently in the PR filetree (#24956)
 fixes #24566 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
		| @@ -10,7 +10,7 @@ | ||||
|       /> | ||||
|       <a | ||||
|         v-if="item.isFile" | ||||
|         class="file gt-ellipsis" | ||||
|         :class="['file gt-ellipsis', {'viewed': item.file.IsViewed}]" | ||||
|         :href="item.isFile ? '#diff-' + item.file.NameHash : ''" | ||||
|       >{{ item.name }}</a> | ||||
|       <SvgIcon | ||||
| @@ -148,4 +148,8 @@ a:hover { | ||||
|   text-decoration: none; | ||||
|   color: var(--color-text); | ||||
| } | ||||
|  | ||||
| a.file.viewed { | ||||
|   color: var(--color-text-light-3); | ||||
| } | ||||
| </style> | ||||
|   | ||||
| @@ -1,3 +1,4 @@ | ||||
| import {diffTreeStore} from '../modules/stores.js'; | ||||
| import {setFileFolding} from './file-fold.js'; | ||||
|  | ||||
| const {csrfToken, pageData} = window.config; | ||||
| @@ -53,9 +54,17 @@ export function initViewedCheckboxListenerFor() { | ||||
|       const hasChangedLabel = form.parentNode.querySelector('.changed-since-last-review'); | ||||
|       hasChangedLabel?.remove(); | ||||
|  | ||||
|       const fileName = checkbox.getAttribute('name'); | ||||
|  | ||||
|       // check if the file is in our difftreestore and if we find it -> change the IsViewed status | ||||
|       const fileInPageData = diffTreeStore().files.find((x) => x.Name === fileName); | ||||
|       if (fileInPageData) { | ||||
|         fileInPageData.IsViewed = this.checked; | ||||
|       } | ||||
|  | ||||
|       // Unfortunately, actual forms cause too many problems, hence another approach is needed | ||||
|       const files = {}; | ||||
|       files[checkbox.getAttribute('name')] = this.checked; | ||||
|       files[fileName] = this.checked; | ||||
|       const data = {files}; | ||||
|       const headCommitSHA = form.getAttribute('data-headcommit'); | ||||
|       if (headCommitSHA) data.headCommitSHA = headCommitSHA; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user