From ffe368afed853f43c9ab8851c1edc86160db8486 Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Tue, 22 Apr 2025 18:25:03 -0700 Subject: Refactor tool confirmation radio buttons to own component. - I plan to utilize these radio buttons for theme selection in the future. Refactoring them into their own component. Part of https://b.corp.google.com/issues/412797985 --- .../src/ui/components/shared/RadioButtonSelect.tsx | 90 ++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 packages/cli/src/ui/components/shared/RadioButtonSelect.tsx (limited to 'packages/cli/src/ui/components/shared/RadioButtonSelect.tsx') diff --git a/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx new file mode 100644 index 00000000..7fef19c6 --- /dev/null +++ b/packages/cli/src/ui/components/shared/RadioButtonSelect.tsx @@ -0,0 +1,90 @@ +/** + * @license + * Copyright 2025 Google LLC + * SPDX-License-Identifier: Apache-2.0 + */ + +import React from 'react'; +import { Box, Text } from 'ink'; +import SelectInput, { + type ItemProps as InkSelectItemProps, + type IndicatorProps as InkSelectIndicatorProps, +} from 'ink-select-input'; +import { Colors } from '../../colors.js'; + +/** + * Represents a single option for the RadioButtonSelect. + * Requires a label for display and a value to be returned on selection. + */ +export interface RadioSelectItem { + label: string; + value: T; +} + +/** + * Props for the RadioButtonSelect component. + * @template T The type of the value associated with each radio item. + */ +export interface RadioButtonSelectProps { + /** An array of items to display as radio options. */ + items: Array>; + + /** The initial index selected */ + initialIndex?: number; + + /** Function called when an item is selected. Receives the `value` of the selected item. */ + onSelect: (value: T) => void; +} + +/** + * Custom indicator component displaying radio button style (◉/○). + */ +function RadioIndicator({ + isSelected = false, +}: InkSelectIndicatorProps): React.JSX.Element { + return ( + + + {isSelected ? '◉' : '○'} + + + ); +} + +/** + * Custom item component for displaying the label with appropriate color. + */ +function RadioItem({ + isSelected = false, + label, +}: InkSelectItemProps): React.JSX.Element { + return ( + {label} + ); +} + +/** + * A specialized SelectInput component styled to look like radio buttons. + * It uses '◉' for selected and '○' for unselected items. + * + * @template T The type of the value associated with each radio item. + */ +export function RadioButtonSelect({ + items, + initialIndex, + onSelect, +}: RadioButtonSelectProps): React.JSX.Element { + const handleSelect = (item: RadioSelectItem) => { + onSelect(item.value); + }; + initialIndex = initialIndex ?? 0; + return ( + + ); +} -- cgit v1.2.3