Stop calling variables "which"; affects [chocolatey codeclimate conda crates debug gem github mozillaobservatory nuget powershellgallery pub resharper vaadindirectory] (#3495)

* which --> variant

* which --> alias

* which --> format

* improve param names in codeclimate

* improve param names in github-issue-detail

* update github-issue-detail unit tests
This commit is contained in:
chris48s
2019-05-28 23:00:12 +01:00
committed by GitHub
parent 52e90af310
commit 65dba94fa8
25 changed files with 175 additions and 175 deletions

View File

@@ -27,7 +27,7 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
static get route() {
return {
base: 'github/status',
pattern: ':which(s|contexts)/pulls/:user/:repo/:number(\\d+)',
pattern: ':variant(s|contexts)/pulls/:user/:repo/:number(\\d+)',
}
}
@@ -41,7 +41,7 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
repo: 'shields',
number: '1110',
},
staticPreview: this.render({ which: 's', state: 'pending' }),
staticPreview: this.render({ variant: 's', state: 'pending' }),
keywords,
documentation,
},
@@ -54,7 +54,7 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
number: '1110',
},
staticPreview: this.render({
which: 'contexts',
variant: 'contexts',
state: 'pending',
stateCounts: { passed: 5, pending: 1 },
}),
@@ -71,9 +71,9 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
}
}
static render({ which, state, stateCounts }) {
static render({ variant, state, stateCounts }) {
let message
if (which === 'contexts') {
if (variant === 'contexts') {
message = Object.entries(stateCounts)
.map(([state, count]) => `${count} ${state}`)
.join(', ')
@@ -97,7 +97,7 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
}
}
async handle({ which, user, repo, number }) {
async handle({ variant, user, repo, number }) {
const {
head: { sha: ref },
} = await fetchIssue(this, { user, repo, number })
@@ -110,6 +110,6 @@ module.exports = class GithubPullRequestCheckState extends GithubAuthService {
})
const { state, stateCounts } = this.constructor.transform(json)
return this.constructor.render({ which, state, stateCounts })
return this.constructor.render({ variant, state, stateCounts })
}
}