43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import {Command, Args, Flags} from '@oclif/core'
|
|
import {render} from 'ink'
|
|
import {SearchBox} from '../components/SearchBox.js'
|
|
import {getAvailableComponentNames, getRegistry} from '../helpers/registry.js'
|
|
import React from 'react'
|
|
|
|
export default class Search extends Command {
|
|
static override args = {
|
|
query: Args.string({description: 'search query'}),
|
|
}
|
|
|
|
static override flags = {
|
|
registry: Flags.string({char: 'r', description: 'override registry url'})
|
|
}
|
|
|
|
static override description = 'Search components.'
|
|
|
|
static override examples = ['<%= config.bin %> <%= command.id %>']
|
|
|
|
public async run(): Promise<void> {
|
|
const {args, flags} = await this.parse(Search)
|
|
|
|
if (flags.registry) {
|
|
this.log(`Using ${flags.registry} for registry.`)
|
|
}
|
|
const registryResult = await getRegistry(flags.registry)
|
|
if (!registryResult.ok) {
|
|
this.error(registryResult.message)
|
|
}
|
|
const registry = registryResult.registry
|
|
const componentNames = await getAvailableComponentNames(registry)
|
|
|
|
await render(
|
|
<SearchBox
|
|
components={componentNames.map((v) => ({key: v, displayName: v}))}
|
|
initialQuery={args.query}
|
|
helper={'Press ESC to quit'}
|
|
onKeyDown={(_, k, app) => k.escape && app.exit()}
|
|
/>,
|
|
).waitUntilExit()
|
|
}
|
|
}
|