diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-04-26 18:54:40 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 13:54:40 +0300 |
commit | 03eba32bd91533f090a82b62bd9cffd9e448aaa7 (patch) | |
tree | 7625e4d079617e1d6364909a715ca1c213f4abad /web_src/js | |
parent | fef26c159c7f426d7f6331b31e6d4119e47a9188 (diff) | |
download | gitea-03eba32bd91533f090a82b62bd9cffd9e448aaa7.tar.gz gitea-03eba32bd91533f090a82b62bd9cffd9e448aaa7.zip |
Add a new menu in file view to open blame view and fix blame view select range bug (#19500)
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/features/repo-code.js | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/web_src/js/features/repo-code.js b/web_src/js/features/repo-code.js index a4b6e433a5..d7b4baac83 100644 --- a/web_src/js/features/repo-code.js +++ b/web_src/js/features/repo-code.js @@ -15,10 +15,7 @@ function selectRange($list, $select, $from) { // add hashchange to permalink const $issue = $('a.ref-in-new-issue'); const $copyPermalink = $('a.copy-line-permalink'); - - if ($copyPermalink.length === 0) { - return; - } + const $viewGitBlame = $('a.view_git_blame'); const updateIssueHref = function (anchor) { if ($issue.length === 0) { @@ -29,7 +26,22 @@ function selectRange($list, $select, $from) { $issue.attr('href', href); }; + const updateViewGitBlameFragment = function (anchor) { + if ($viewGitBlame.length === 0) { + return; + } + let href = $viewGitBlame.attr('href'); + href = `${href.replace(/#L\d+$|#L\d+-L\d+$/, '')}`; + if (anchor.length !== 0) { + href = `${href}#${anchor}`; + } + $viewGitBlame.attr('href', href); + }; + const updateCopyPermalinkHref = function(anchor) { + if ($copyPermalink.length === 0) { + return; + } let link = $copyPermalink.attr('data-clipboard-text'); link = `${link.replace(/#L\d+$|#L\d+-L\d+$/, '')}#${anchor}`; $copyPermalink.attr('data-clipboard-text', link); @@ -53,6 +65,7 @@ function selectRange($list, $select, $from) { changeHash(`#L${a}-L${b}`); updateIssueHref(`L${a}-L${b}`); + updateViewGitBlameFragment(`L${a}-L${b}`); updateCopyPermalinkHref(`L${a}-L${b}`); return; } @@ -61,6 +74,7 @@ function selectRange($list, $select, $from) { changeHash(`#${$select.attr('rel')}`); updateIssueHref($select.attr('rel')); + updateViewGitBlameFragment($select.attr('rel')); updateCopyPermalinkHref($select.attr('rel')); } |