refactor(cli): remove unused Spinner import
The unnecessary Spinner import from 'ink-spinner' was removed in the SearchBox component. This reduces clutter and enhances code readability.
This commit is contained in:
parent
36f465f2cf
commit
803659a06b
@ -2,7 +2,6 @@ import React, {useEffect, useState} from 'react'
|
|||||||
import {getSuggestion} from '../helpers/search.js'
|
import {getSuggestion} from '../helpers/search.js'
|
||||||
import Input from 'ink-text-input'
|
import Input from 'ink-text-input'
|
||||||
import {Divider} from './Divider.js'
|
import {Divider} from './Divider.js'
|
||||||
import Spinner from 'ink-spinner'
|
|
||||||
import {Box, Text, useInput, useApp, type Key} from 'ink'
|
import {Box, Text, useInput, useApp, type Key} from 'ink'
|
||||||
|
|
||||||
export function SearchBox<T extends {key: string; displayName: string}>({
|
export function SearchBox<T extends {key: string; displayName: string}>({
|
||||||
@ -68,9 +67,6 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
|||||||
<Input value={query} onChange={(v) => setQuery(v)} showCursor placeholder={'query'} onSubmit={onSubmit} />
|
<Input value={query} onChange={(v) => setQuery(v)} showCursor placeholder={'query'} onSubmit={onSubmit} />
|
||||||
</Box>
|
</Box>
|
||||||
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
||||||
{isLoading ? (
|
|
||||||
<Spinner />
|
|
||||||
) : (
|
|
||||||
<Box display={'flex'} flexDirection={'column'}>
|
<Box display={'flex'} flexDirection={'column'}>
|
||||||
{suggestions.map((name, index) => {
|
{suggestions.map((name, index) => {
|
||||||
return (
|
return (
|
||||||
@ -82,7 +78,6 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
|||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
|
||||||
</Box>
|
</Box>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user