Skip to content

Commit 2ed0cc8

Browse files
committed
chore(refactor): promisify completion scripts
We also removed the "none" script because we handle a missing script just fine. There is no need to put an empty one in PR-URL: #2759 Credit: @wraithgar Close: #2759 Reviewed-by: @nlf
1 parent 983d218 commit 2ed0cc8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+497
-809
lines changed

lib/access.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -59,17 +59,17 @@ const access = async ([cmd, ...args], cb) => {
5959
return fn(args, { ...npm.flatOptions })
6060
}
6161

62-
const completion = function (opts, cb) {
63-
var argv = opts.conf.argv.remain
62+
const completion = async (opts) => {
63+
const argv = opts.conf.argv.remain
6464
if (argv.length === 2)
65-
return cb(null, subcommands)
65+
return subcommands
6666

6767
switch (argv[2]) {
6868
case 'grant':
6969
if (argv.length === 3)
70-
return cb(null, ['read-only', 'read-write'])
70+
return ['read-only', 'read-write']
7171
else
72-
return cb(null, [])
72+
return []
7373

7474
case 'public':
7575
case 'restricted':
@@ -79,9 +79,9 @@ const completion = function (opts, cb) {
7979
case '2fa-required':
8080
case '2fa-not-required':
8181
case 'revoke':
82-
return cb(null, [])
82+
return []
8383
default:
84-
return cb(new Error(argv[2] + ' not recognized'))
84+
throw new Error(argv[2] + ' not recognized')
8585
}
8686
}
8787

lib/adduser.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ const usage = usageUtil(
1515
'npm adduser [--registry=url] [--scope=@orgname] [--always-auth]'
1616
)
1717

18-
const completion = require('./utils/completion/none.js')
19-
2018
const cmd = (args, cb) => adduser(args).then(() => cb()).catch(cb)
2119

2220
const getRegistry = ({ scope, registry }) => {
@@ -74,4 +72,4 @@ const adduser = async (args) => {
7472
output(message)
7573
}
7674

77-
module.exports = Object.assign(cmd, { completion, usage })
75+
module.exports = Object.assign(cmd, { usage })

lib/audit.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ const usage = usageUtil(
3838
'[--force|--package-lock-only|--dry-run|--production|--only=(dev|prod)]'
3939
)
4040

41-
const completion = (opts, cb) => {
41+
const completion = async (opts) => {
4242
const argv = opts.conf.argv.remain
4343

4444
if (argv.length === 2)
45-
return cb(null, ['fix'])
45+
return ['fix']
4646

4747
switch (argv[2]) {
4848
case 'fix':
49-
return cb(null, [])
49+
return []
5050
default:
51-
return cb(new Error(argv[2] + ' not recognized'))
51+
throw new Error(argv[2] + ' not recognized')
5252
}
5353
}
5454

lib/bin.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
const npm = require('./npm.js')
22
const output = require('./utils/output.js')
33
const usageUtil = require('./utils/usage.js')
4-
const completion = require('./utils/completion/none.js')
54
const PATH = require('./utils/path.js')
65
const cmd = (args, cb) => bin(args).then(() => cb()).catch(cb)
76
const usage = usageUtil('bin', 'npm bin [-g]')
@@ -11,4 +10,4 @@ const bin = async (args, cb) => {
1110
if (npm.flatOptions.global && !PATH.includes(b))
1211
console.error('(not in PATH env variable)')
1312
}
14-
module.exports = Object.assign(cmd, { usage, completion })
13+
module.exports = Object.assign(cmd, { usage })

lib/bugs.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const npm = require('./npm.js')
77
const hostedFromMani = require('./utils/hosted-git-info-from-manifest.js')
88

99
const usage = usageUtil('bugs', 'npm bugs [<pkgname>]')
10-
const completion = require('./utils/completion/none.js')
1110

1211
const cmd = (args, cb) => bugs(args).then(() => cb()).catch(cb)
1312

@@ -44,4 +43,4 @@ const getBugs = async pkg => {
4443
await openUrl(url, `${mani.name} bug list available at the following URL`)
4544
}
4645

47-
module.exports = Object.assign(cmd, { usage, completion })
46+
module.exports = Object.assign(cmd, { usage })

lib/cache.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ const usage = usageUtil('cache',
1919
'\nnpm cache verify'
2020
)
2121

22-
const completion = (opts, cb) => {
22+
const completion = async (opts) => {
2323
const argv = opts.conf.argv.remain
2424
if (argv.length === 2)
25-
return cb(null, ['add', 'clean', 'verify'])
25+
return ['add', 'clean', 'verify']
2626

2727
// TODO - eventually...
2828
switch (argv[2]) {
2929
case 'verify':
3030
case 'clean':
3131
case 'add':
32-
return cb(null, [])
32+
return []
3333
}
3434
}
3535

lib/ci.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const npm = require('./npm.js')
1111
const usageUtil = require('./utils/usage.js')
1212

1313
const usage = usageUtil('ci', 'npm ci')
14-
const completion = require('./utils/completion/none.js')
1514

1615
const cmd = (args, cb) => ci().then(() => cb()).catch(cb)
1716

@@ -76,4 +75,4 @@ const ci = async () => {
7675
await reifyFinish(arb)
7776
}
7877

79-
module.exports = Object.assign(cmd, { completion, usage })
78+
module.exports = Object.assign(cmd, {usage})

lib/completion.js

+9-15
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@
2828
// one per line for the shell completion method to consume in IFS=$'\n' mode
2929
// as an array.
3030
//
31-
// TODO: make all the implementation completion methods promise-returning
32-
// instead of callback-taking.
3331

3432
const npm = require('./npm.js')
3533
const { types, shorthands } = require('./utils/config.js')
@@ -52,9 +50,9 @@ const { promisify } = require('util')
5250
const cmd = (args, cb) => compl(args).then(() => cb()).catch(cb)
5351

5452
// completion for the completion command
55-
const completion = async (opts, cb) => {
53+
const completion = async (opts) => {
5654
if (opts.w > 2)
57-
return cb()
55+
return
5856

5957
const { resolve } = require('path')
6058
const [bashExists, zshExists] = await Promise.all([
@@ -68,7 +66,7 @@ const completion = async (opts, cb) => {
6866
if (bashExists)
6967
out.push(['>>', '~/.bashrc'])
7068

71-
cb(null, out)
69+
return out
7270
}
7371

7472
const compl = async args => {
@@ -121,18 +119,16 @@ const compl = async args => {
121119
raw: args,
122120
}
123121

124-
const wrap = getWrap(opts)
125-
126122
if (partialWords.slice(0, -1).indexOf('--') === -1) {
127123
if (word.charAt(0) === '-')
128-
return wrap(configCompl(opts))
124+
return wrap(opts, configCompl(opts))
129125

130126
if (words[w - 1] &&
131127
words[w - 1].charAt(0) === '-' &&
132128
!isFlag(words[w - 1])) {
133129
// awaiting a value for a non-bool config.
134130
// don't even try to do this for now
135-
return wrap(configValueCompl(opts))
131+
return wrap(opts, configValueCompl(opts))
136132
}
137133
}
138134

@@ -146,7 +142,7 @@ const compl = async args => {
146142
// check if there's a command already.
147143
const cmd = parsed.argv.remain[1]
148144
if (!cmd)
149-
return wrap(cmdCompl(opts))
145+
return wrap(opts, cmdCompl(opts))
150146

151147
Object.keys(parsed).forEach(k => npm.config.set(k, parsed[k]))
152148

@@ -155,10 +151,8 @@ const compl = async args => {
155151
// otherwise, do nothing
156152
const impl = npm.commands[cmd]
157153
if (impl && impl.completion) {
158-
// XXX promisify all the cmd.completion functions
159-
return await new Promise((res, rej) => {
160-
impl.completion(opts, (er, comps) => er ? rej(er) : res(wrap(comps)))
161-
})
154+
const comps = await impl.completion(opts)
155+
return wrap(opts, comps)
162156
}
163157
}
164158

@@ -215,7 +209,7 @@ const escape = w => !/\s+/.test(w) ? w
215209
// If any of the items are arrays, then join them with a space.
216210
// Ie, returning ['a', 'b c', ['d', 'e']] would allow it to expand
217211
// to: 'a', 'b c', or 'd' 'e'
218-
const getWrap = opts => compls => {
212+
const wrap = (opts, compls) => {
219213
if (!Array.isArray(compls))
220214
compls = compls ? [compls] : []
221215

lib/config.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const usage = usageUtil(
2626

2727
const cmd = (args, cb) => config(args).then(() => cb()).catch(cb)
2828

29-
const completion = (opts, cb) => {
29+
const completion = async (opts) => {
3030
const argv = opts.conf.argv.remain
3131
if (argv[1] !== 'config')
3232
argv.unshift('config')
@@ -36,27 +36,27 @@ const completion = (opts, cb) => {
3636
if (opts.partialWord !== 'l')
3737
cmds.push('list')
3838

39-
return cb(null, cmds)
39+
return cmds
4040
}
4141

4242
const action = argv[2]
4343
switch (action) {
4444
case 'set':
4545
// todo: complete with valid values, if possible.
4646
if (argv.length > 3)
47-
return cb(null, [])
47+
return []
4848

4949
// fallthrough
5050
/* eslint no-fallthrough:0 */
5151
case 'get':
5252
case 'delete':
5353
case 'rm':
54-
return cb(null, Object.keys(types))
54+
return Object.keys(types)
5555
case 'edit':
5656
case 'list':
5757
case 'ls':
5858
default:
59-
return cb(null, [])
59+
return []
6060
}
6161
}
6262

lib/dedupe.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ const usageUtil = require('./utils/usage.js')
55
const reifyFinish = require('./utils/reify-finish.js')
66

77
const usage = usageUtil('dedupe', 'npm dedupe')
8-
const completion = require('./utils/completion/none.js')
98

109
const cmd = (args, cb) => dedupe(args).then(() => cb()).catch(cb)
1110

@@ -27,4 +26,4 @@ const dedupe = async (args) => {
2726
await reifyFinish(arb)
2827
}
2928

30-
module.exports = Object.assign(cmd, { usage, completion })
29+
module.exports = Object.assign(cmd, { usage })

lib/deprecate.js

+9-11
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,17 @@ const usage = usageUtil(
1717
'npm deprecate <pkg>[@<version>] <message>'
1818
)
1919

20-
const completion = (opts, cb) => {
20+
const completion = async (opts) => {
2121
if (opts.conf.argv.remain.length > 1)
22-
return cb(null, [])
22+
return []
2323

24-
return getIdentity(npm.flatOptions).then((username) => {
25-
return libaccess.lsPackages(username, npm.flatOptions).then((packages) => {
26-
return Object.keys(packages)
27-
.filter((name) => packages[name] === 'write' &&
28-
(opts.conf.argv.remain.length === 0 ||
29-
name.startsWith(opts.conf.argv.remain[0]))
30-
)
31-
})
32-
}).then((list) => cb(null, list), (err) => cb(err))
24+
const username = await getIdentity(npm.flatOptions)
25+
const packages = await libaccess.lsPackages(username, npm.flatOptions)
26+
return Object.keys(packages)
27+
.filter((name) =>
28+
packages[name] === 'write' &&
29+
(opts.conf.argv.remain.length === 0 ||
30+
name.startsWith(opts.conf.argv.remain[0])))
3331
}
3432

3533
const cmd = (args, cb) =>

lib/diff.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const pickManifest = require('npm-pick-manifest')
1111
const npm = require('./npm.js')
1212
const usageUtil = require('./utils/usage.js')
1313
const output = require('./utils/output.js')
14-
const completion = require('./utils/completion/none.js')
1514
const readLocalPkg = require('./utils/read-local-package.js')
1615

1716
const usage = usageUtil(
@@ -263,4 +262,4 @@ const findVersionsByPackageName = async (specs) => {
263262
})
264263
}
265264

266-
module.exports = Object.assign(cmd, { completion, usage })
265+
module.exports = Object.assign(cmd, { usage })

lib/dist-tag.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ const usage = usageUtil(
1616
'\nnpm dist-tag ls [<pkg>]'
1717
)
1818

19-
const completion = function (opts, cb) {
19+
const completion = async (opts) => {
2020
const argv = opts.conf.argv.remain
2121
if (argv.length === 2)
22-
return cb(null, ['add', 'rm', 'ls'])
22+
return ['add', 'rm', 'ls']
2323

2424
switch (argv[2]) {
2525
default:
26-
return cb()
26+
return []
2727
}
2828
}
2929

lib/docs.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const npm = require('./npm.js')
77
const hostedFromMani = require('./utils/hosted-git-info-from-manifest.js')
88

99
const usage = usageUtil('docs', 'npm docs [<pkgname> [<pkgname> ...]]')
10-
const completion = require('./utils/completion/none.js')
1110

1211
const cmd = (args, cb) => docs(args).then(() => cb()).catch(cb)
1312

@@ -37,4 +36,4 @@ const getDocs = async pkg => {
3736
await openUrl(url, `${mani.name} docs available at the following URL`)
3837
}
3938

40-
module.exports = Object.assign(cmd, { usage, completion })
39+
module.exports = Object.assign(cmd, { usage })

lib/doctor.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ const chalk = require('chalk')
44
const ansiTrim = require('./utils/ansi-trim.js')
55
const table = require('text-table')
66
const output = require('./utils/output.js')
7-
const completion = require('./utils/completion/none.js')
87
const usageUtil = require('./utils/usage.js')
98
const usage = usageUtil('doctor', 'npm doctor')
109
const { resolve } = require('path')
@@ -285,4 +284,4 @@ const doctor = async args => {
285284
throw 'Some problems found. See above for recommendations.'
286285
}
287286

288-
module.exports = Object.assign(cmd, { completion, usage })
287+
module.exports = Object.assign(cmd, { usage })

lib/exec.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ const usage = usageUtil('exec',
2121
'-c <cmd> --call=<cmd> (may not be mixed with positional arguments)'
2222
)
2323

24-
const completion = require('./utils/completion/installed-shallow.js')
25-
2624
const { promisify } = require('util')
2725
const read = promisify(require('read'))
2826

@@ -284,4 +282,4 @@ const getHash = packages =>
284282
.digest('hex')
285283
.slice(0, 16)
286284

287-
module.exports = Object.assign(cmd, { completion, usage })
285+
module.exports = Object.assign(cmd, { usage })

lib/find-dupes.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ const dedupe = require('./dedupe.js')
33
const usageUtil = require('./utils/usage.js')
44

55
const usage = usageUtil('find-dupes', 'npm find-dupes')
6-
const completion = require('./utils/completion/none.js')
76
const cmd = (args, cb) => dedupe({ dryRun: true }, cb)
87

9-
module.exports = Object.assign(cmd, { usage, completion })
8+
module.exports = Object.assign(cmd, { usage })

lib/get.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
const npm = require('./npm.js')
2+
const config = require('./config.js')
23
const usageUtil = require('./utils/usage.js')
34

45
const usage = usageUtil(
56
'get',
67
'npm get [<key> ...] (See `npm config`)'
78
)
89

9-
const completion = npm.commands.config.completion
10+
const completion = config.completion
1011

1112
const cmd = (args, cb) =>
1213
npm.commands.config(['get'].concat(args), cb)

0 commit comments

Comments
 (0)