diff --git a/packages/cli/src/components/Divider.tsx b/packages/cli/src/components/Divider.tsx new file mode 100644 index 0000000..28b8274 --- /dev/null +++ b/packages/cli/src/components/Divider.tsx @@ -0,0 +1,24 @@ +import React from 'react' +import {Box, Text} from 'ink' + +export function Divider({width = 50, padding = 1, title}: {width?: number; padding?: number; title: string}) { + const length = Math.floor((width - title.length - padding * 2) / 2) + + return ( + + {Array.from(Array(length)).map((_, i) => ( + + ))} + {Array.from(Array(padding)).map((_, i) => ( + + ))} + {title} + {Array.from(Array(padding)).map((_, i) => ( + + ))} + {Array.from(Array(length)).map((_, i) => ( + + ))} + + ) +} diff --git a/packages/cli/src/components/SearchBox.tsx b/packages/cli/src/components/SearchBox.tsx new file mode 100644 index 0000000..61b5c20 --- /dev/null +++ b/packages/cli/src/components/SearchBox.tsx @@ -0,0 +1,45 @@ +import React, {useEffect, useState} from 'react' +import {getSuggestion} from '../helpers/search.js' +import Input from 'ink-text-input' +import {Divider} from './Divider.js' +import Spinner from 'ink-spinner' +import {Box, Text} from 'ink' + +export function SearchBox({components}: {components: string[]}) { + const [query, setQuery] = useState('') + const [isLoading, setLoading] = useState(false) + const [suggestions, setSuggestions] = useState([]) + + useEffect(() => { + setLoading(true) + getSuggestion(components, query).then((result) => { + setSuggestions(result) + setLoading(false) + }) + }, [query]) + + return ( + + + + ? + + setQuery(v)} /> + + + {isLoading ? ( + + ) : ( + + {suggestions.map((name) => { + return ( + + {name} + + ) + })} + + )} + + ) +}