diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-10-31 04:06:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 20:06:36 +0000 |
commit | a4a121c684fdbbad19971ff658166fd47932b192 (patch) | |
tree | c44c7ea6ad5f41251f06b69cff1d69786e48d3d1 /web_src/js/features | |
parent | f4d3aaeeb9e1b11c5495e4608a3f52f316c35758 (diff) | |
download | gitea-a4a121c684fdbbad19971ff658166fd47932b192.tar.gz gitea-a4a121c684fdbbad19971ff658166fd47932b192.zip |
Fix suggestions for issues (#32380)
Diffstat (limited to 'web_src/js/features')
-rw-r--r-- | web_src/js/features/comp/TextExpander.ts | 36 | ||||
-rw-r--r-- | web_src/js/features/contextpopup.ts | 10 |
2 files changed, 17 insertions, 29 deletions
diff --git a/web_src/js/features/comp/TextExpander.ts b/web_src/js/features/comp/TextExpander.ts index 6ac4c4bf32..e0c4abed75 100644 --- a/web_src/js/features/comp/TextExpander.ts +++ b/web_src/js/features/comp/TextExpander.ts @@ -1,39 +1,29 @@ import {matchEmoji, matchMention, matchIssue} from '../../utils/match.ts'; import {emojiString} from '../emoji.ts'; import {svg} from '../../svg.ts'; -import {parseIssueHref} from '../../utils.ts'; +import {parseIssueHref, parseIssueNewHref} from '../../utils.ts'; import {createElementFromAttrs, createElementFromHTML} from '../../utils/dom.ts'; import {getIssueColor, getIssueIcon} from '../issue.ts'; import {debounce} from 'perfect-debounce'; const debouncedSuggestIssues = debounce((key: string, text: string) => new Promise<{matched:boolean; fragment?: HTMLElement}>(async (resolve) => { - const {owner, repo, index} = parseIssueHref(window.location.href); - const matches = await matchIssue(owner, repo, index, text); + let issuePathInfo = parseIssueHref(window.location.href); + if (!issuePathInfo.ownerName) issuePathInfo = parseIssueNewHref(window.location.href); + if (!issuePathInfo.ownerName) return resolve({matched: false}); + + const matches = await matchIssue(issuePathInfo.ownerName, issuePathInfo.repoName, issuePathInfo.indexString, text); if (!matches.length) return resolve({matched: false}); - const ul = document.createElement('ul'); - ul.classList.add('suggestions'); + const ul = createElementFromAttrs('ul', {class: 'suggestions'}); for (const issue of matches) { - const li = createElementFromAttrs('li', { - role: 'option', - 'data-value': `${key}${issue.id}`, - class: 'tw-flex tw-gap-2', - }); - - const icon = svg(getIssueIcon(issue), 16, ['text', getIssueColor(issue)].join(' ')); - li.append(createElementFromHTML(icon)); - - const id = document.createElement('span'); - id.textContent = issue.id.toString(); - li.append(id); - - const nameSpan = document.createElement('span'); - nameSpan.textContent = issue.title; - li.append(nameSpan); - + const li = createElementFromAttrs( + 'li', {role: 'option', class: 'tw-flex tw-gap-2', 'data-value': `${key}${issue.number}`}, + createElementFromHTML(svg(getIssueIcon(issue), 16, ['text', getIssueColor(issue)])), + createElementFromAttrs('span', null, `#${issue.number}`), + createElementFromAttrs('span', null, issue.title), + ); ul.append(li); } - resolve({matched: true, fragment: ul}); }), 100); diff --git a/web_src/js/features/contextpopup.ts b/web_src/js/features/contextpopup.ts index 5af7d176b6..33eead8431 100644 --- a/web_src/js/features/contextpopup.ts +++ b/web_src/js/features/contextpopup.ts @@ -10,12 +10,10 @@ export function initContextPopups() { export function attachRefIssueContextPopup(refIssues) { for (const refIssue of refIssues) { - if (refIssue.classList.contains('ref-external-issue')) { - return; - } + if (refIssue.classList.contains('ref-external-issue')) continue; - const {owner, repo, index} = parseIssueHref(refIssue.getAttribute('href')); - if (!owner) return; + const issuePathInfo = parseIssueHref(refIssue.getAttribute('href')); + if (!issuePathInfo.ownerName) continue; const el = document.createElement('div'); el.classList.add('tw-p-3'); @@ -38,7 +36,7 @@ export function attachRefIssueContextPopup(refIssues) { role: 'dialog', interactiveBorder: 5, onShow: () => { - el.firstChild.dispatchEvent(new CustomEvent('ce-load-context-popup', {detail: {owner, repo, index}})); + el.firstChild.dispatchEvent(new CustomEvent('ce-load-context-popup', {detail: issuePathInfo})); }, }); } |