Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 9b8b32f

Browse files
author
maralv
committed
Enhanced the report issue link derivation to care about the package.json
bugs field, according to the NPM package specification. The respository default issue url is used as fallback.
1 parent fec6b30 commit 9b8b32f

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

lib/package-detail-view.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ export default class PackageDetailView {
5050

5151
const issueButtonClickHandler = (event) => {
5252
event.preventDefault()
53-
const repoUrl = this.packageManager.getRepositoryUrl(this.pack)
54-
if (repoUrl) {
55-
shell.openExternal(`${repoUrl}/issues/new`)
53+
let bugUri = this.packageManager.getRepositoryBugUri(this.pack)
54+
if (bugUri) {
55+
shell.openExternal(bugUri)
5656
}
5757
}
5858
this.refs.issueButton.addEventListener('click', issueButtonClickHandler)

lib/package-manager.coffee

+10
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,16 @@ class PackageManager
402402
repoUrl = "https://github.com/#{repoName}"
403403
repoUrl.replace(/\.git$/, '').replace(/\/+$/, '').replace(/^git\+/, '')
404404

405+
getRepositoryBugUri: ({metadata}) ->
406+
{bugs} = metadata
407+
if typeof bugs is 'string'
408+
bugUri = bugs
409+
else
410+
bugUri = bugs?.url ? bugs?.email ? this.getRepositoryUrl({metadata}) + '/issues/new'
411+
if bugUri.includes('@')
412+
bugUri = 'mailto:' + bugUri
413+
bugUri
414+
405415
checkNativeBuildTools: ->
406416
new Promise (resolve, reject) =>
407417
apmProcess = @runCommand ['install', '--check'], (code, stdout, stderr) ->

0 commit comments

Comments
 (0)