Skip to content

Commit 280b6ed

Browse files
authoredOct 4, 2024··
feat: use oclif/table (#932)
* feat: use oclif/table * chore: bump oclif/table * chore: code review
1 parent 9522b93 commit 280b6ed

File tree

4 files changed

+256
-192
lines changed

4 files changed

+256
-192
lines changed
 

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
"dependencies": {
77
"@inquirer/select": "^2.5.0",
88
"@oclif/core": "^4",
9+
"@oclif/table": "^0.1.12",
910
"ansis": "^3.3.2",
1011
"debug": "^4.3.7",
1112
"filesize": "^6.1.0",
1213
"got": "^13",
1314
"proxy-agent": "^6.4.0",
1415
"semver": "^7.6.3",
15-
"tar-fs": "^2.1.1",
16-
"tty-table": "^4.2.3"
16+
"tar-fs": "^2.1.1"
1717
},
1818
"devDependencies": {
1919
"@commitlint/config-conventional": "^19",

‎src/commands/update.ts

+34-27
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import select from '@inquirer/select'
22
import {Args, Command, Flags, Interfaces, ux} from '@oclif/core'
3+
import {printTable} from '@oclif/table'
34
import {got} from 'got'
45
import {basename} from 'node:path'
56
import {sort} from 'semver'
6-
import TtyTable from 'tty-table'
77

88
import {Updater} from '../update.js'
99

@@ -49,6 +49,11 @@ export default class UpdateCommand extends Command {
4949
description: 'Interactively select version to install. This is ignored if a channel is provided.',
5050
exclusive: ['version'],
5151
}),
52+
verbose: Flags.boolean({
53+
char: 'b',
54+
dependsOn: ['available'],
55+
description: 'Show more details about the available versions.',
56+
}),
5257
version: Flags.string({
5358
char: 'v',
5459
description: 'Install a specific version.',
@@ -62,32 +67,34 @@ export default class UpdateCommand extends Command {
6267
if (flags.available) {
6368
const {distTags, index, localVersions} = await lookupVersions(updater, this.config)
6469

65-
const headers = [
66-
{align: 'left', value: 'Location'},
67-
{align: 'left', value: 'Version'},
68-
]
69-
70-
if (distTags) {
71-
headers.push({align: 'left', value: 'Channel'})
72-
}
73-
74-
// eslint-disable-next-line new-cap
75-
const t = TtyTable(
76-
headers,
77-
sort(Object.keys(index))
78-
.reverse()
79-
.map((version) => {
80-
const location = localVersions.find((l) => basename(l).startsWith(version)) || index[version]
81-
if (distTags) {
82-
return [location, version, distTags[version] ?? '']
83-
}
84-
85-
return [location, version]
86-
}),
87-
{compact: true},
88-
)
89-
90-
ux.stdout(t.render())
70+
const data = Object.keys(index).map((version) => {
71+
const location = localVersions.find((l) => basename(l).startsWith(version)) || index[version]
72+
const channel =
73+
distTags[version] === 'latest'
74+
? 'stable'
75+
: distTags[version] === 'latest-rc'
76+
? 'stable-rc'
77+
: distTags[version]
78+
return {
79+
channel,
80+
downloaded: location.includes('http') ? '' : 'true',
81+
location,
82+
version: this.config.version === version ? `${ux.colorize('yellowBright', version)} (current)` : version,
83+
}
84+
})
85+
86+
printTable({
87+
borderStyle: 'vertical-with-outline',
88+
columns: flags.verbose
89+
? ['version', 'channel', 'downloaded', 'location']
90+
: ['version', 'channel', 'downloaded'],
91+
data,
92+
headerOptions: {
93+
formatter: 'capitalCase',
94+
},
95+
overflow: 'wrap',
96+
})
97+
9198
return
9299
}
93100

‎src/update.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ ${binPathEnvVar}="\$DIR/${bin}" ${redirectedEnvVar}=1 "$DIR/../${version}/bin/${
194194
}
195195

196196
private async refreshConfig(version: string): Promise<void> {
197-
this.config = (await Config.load({root: join(this.clientRoot, version)})) as Config
197+
this.config = await Config.load({root: join(this.clientRoot, version)})
198198
}
199199

200200
// removes any unused CLIs

‎yarn.lock

+219-162
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.