@visulima/tui 0.0.1 → 1.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +200 -0
- package/LICENSE.md +303 -0
- package/README.md +173 -29
- package/dist/core/app.d.ts +50 -0
- package/dist/core/cell.d.ts +33 -0
- package/dist/core/index.d.ts +5 -0
- package/dist/core/index.js +5 -0
- package/dist/core/inline.d.ts +22 -0
- package/dist/core/input.d.ts +18 -0
- package/dist/core/native-binding.d.ts +22 -0
- package/dist/ink/ansi-to-cell.d.ts +5 -0
- package/dist/ink/ansi-tokenizer.d.ts +38 -0
- package/dist/ink/clipboard.d.ts +29 -0
- package/dist/ink/color-matrix.d.ts +49 -0
- package/dist/ink/color-utils.d.ts +30 -0
- package/dist/ink/colorize.d.ts +4 -0
- package/dist/ink/components/AccessibilityContext.d.ts +4 -0
- package/dist/ink/components/Alert.d.ts +30 -0
- package/dist/ink/components/AnimationContext.d.ts +10 -0
- package/dist/ink/components/App.d.ts +19 -0
- package/dist/ink/components/AppContext.d.ts +38 -0
- package/dist/ink/components/BackgroundContext.d.ts +5 -0
- package/dist/ink/components/Badge.d.ts +27 -0
- package/dist/ink/components/BigText.d.ts +71 -0
- package/dist/ink/components/Box.d.ts +58 -0
- package/dist/ink/components/Code.d.ts +46 -0
- package/dist/ink/components/ConfirmInput.d.ts +40 -0
- package/dist/ink/components/ConsoleOverlay.d.ts +52 -0
- package/dist/ink/components/Cursor.d.ts +43 -0
- package/dist/ink/components/CursorContext.d.ts +12 -0
- package/dist/ink/components/Dialog.d.ts +93 -0
- package/dist/ink/components/DiffView.d.ts +71 -0
- package/dist/ink/components/ErrorBoundary.d.ts +17 -0
- package/dist/ink/components/ErrorOverview.d.ts +6 -0
- package/dist/ink/components/FocusContext.d.ts +17 -0
- package/dist/ink/components/Gradient.d.ts +38 -0
- package/dist/ink/components/Help.d.ts +49 -0
- package/dist/ink/components/Link.d.ts +34 -0
- package/dist/ink/components/Markdown.d.ts +34 -0
- package/dist/ink/components/MultiSelect.d.ts +63 -0
- package/dist/ink/components/Newline.d.ts +12 -0
- package/dist/ink/components/OrderedList.d.ts +30 -0
- package/dist/ink/components/Paginator.d.ts +75 -0
- package/dist/ink/components/ProgressBar.d.ts +51 -0
- package/dist/ink/components/SelectInput.d.ts +96 -0
- package/dist/ink/components/SelectInputIndicator.d.ts +36 -0
- package/dist/ink/components/SelectInputItem.d.ts +43 -0
- package/dist/ink/components/Slider.d.ts +92 -0
- package/dist/ink/components/Spacer.d.ts +7 -0
- package/dist/ink/components/Spinner.d.ts +42 -0
- package/dist/ink/components/Static.d.ts +24 -0
- package/dist/ink/components/StaticRender.d.ts +28 -0
- package/dist/ink/components/StatusMessage.d.ts +26 -0
- package/dist/ink/components/StderrContext.d.ts +16 -0
- package/dist/ink/components/StdinContext.d.ts +29 -0
- package/dist/ink/components/StdoutContext.d.ts +16 -0
- package/dist/ink/components/Stopwatch.d.ts +44 -0
- package/dist/ink/components/Tab.d.ts +25 -0
- package/dist/ink/components/Table.d.ts +80 -0
- package/dist/ink/components/Tabs.d.ts +104 -0
- package/dist/ink/components/Text.d.ts +63 -0
- package/dist/ink/components/TextInput.d.ts +48 -0
- package/dist/ink/components/Textarea.d.ts +62 -0
- package/dist/ink/components/Timer.d.ts +52 -0
- package/dist/ink/components/Transform.d.ts +16 -0
- package/dist/ink/components/UnorderedList.d.ts +35 -0
- package/dist/ink/components/file-picker/FilePicker.d.ts +75 -0
- package/dist/ink/components/file-picker/index.d.ts +3 -0
- package/dist/ink/components/file-picker/types.d.ts +38 -0
- package/dist/ink/components/file-picker/use-file-system.d.ts +16 -0
- package/dist/ink/components/scroll/ControlledScrollView.d.ts +43 -0
- package/dist/ink/components/scroll/ScrollBar.d.ts +20 -0
- package/dist/ink/components/scroll/ScrollBarBox.d.ts +15 -0
- package/dist/ink/components/scroll/ScrollList.d.ts +12 -0
- package/dist/ink/components/scroll/ScrollView.d.ts +98 -0
- package/dist/ink/components/scroll/index.d.ts +10 -0
- package/dist/ink/components/scroll/use-state-ref.d.ts +8 -0
- package/dist/ink/components/tree-view/TreeView.d.ts +89 -0
- package/dist/ink/components/tree-view/TreeViewNode.d.ts +29 -0
- package/dist/ink/components/tree-view/index.d.ts +11 -0
- package/dist/ink/components/tree-view/theme.d.ts +24 -0
- package/dist/ink/components/tree-view/tree-node-map.d.ts +72 -0
- package/dist/ink/components/tree-view/types.d.ts +55 -0
- package/dist/ink/components/tree-view/use-tree-view-state.d.ts +135 -0
- package/dist/ink/components/tree-view/use-tree-view.d.ts +26 -0
- package/dist/ink/components/variant-config.d.ts +10 -0
- package/dist/ink/cursor-helpers.d.ts +38 -0
- package/dist/ink/data-limited-lru-map.d.ts +21 -0
- package/dist/ink/devtools-window-polyfill.d.ts +1 -0
- package/dist/ink/devtools.d.ts +1 -0
- package/dist/ink/dom.d.ts +213 -0
- package/dist/ink/get-max-width.d.ts +3 -0
- package/dist/ink/highlighter.d.ts +28 -0
- package/dist/ink/hooks/use-animation.d.ts +43 -0
- package/dist/ink/hooks/use-app.d.ts +6 -0
- package/dist/ink/hooks/use-box-metrics.d.ts +58 -0
- package/dist/ink/hooks/use-clipboard.d.ts +29 -0
- package/dist/ink/hooks/use-color-blindness.d.ts +33 -0
- package/dist/ink/hooks/use-console-capture.d.ts +43 -0
- package/dist/ink/hooks/use-cursor.d.ts +12 -0
- package/dist/ink/hooks/use-focus-manager.d.ts +42 -0
- package/dist/ink/hooks/use-focus.d.ts +30 -0
- package/dist/ink/hooks/use-input.d.ts +149 -0
- package/dist/ink/hooks/use-is-screen-reader-enabled.d.ts +6 -0
- package/dist/ink/hooks/use-key-bindings.d.ts +61 -0
- package/dist/ink/hooks/use-linked-scroll.d.ts +41 -0
- package/dist/ink/hooks/use-paste.d.ts +44 -0
- package/dist/ink/hooks/use-scroll-acceleration.d.ts +47 -0
- package/dist/ink/hooks/use-scroll-input.d.ts +34 -0
- package/dist/ink/hooks/use-stderr.d.ts +6 -0
- package/dist/ink/hooks/use-stdin.d.ts +7 -0
- package/dist/ink/hooks/use-stdout.d.ts +6 -0
- package/dist/ink/hooks/use-stopwatch.d.ts +40 -0
- package/dist/ink/hooks/use-terminal-palette.d.ts +19 -0
- package/dist/ink/hooks/use-text-buffer.d.ts +42 -0
- package/dist/ink/hooks/use-text-selection.d.ts +45 -0
- package/dist/ink/hooks/use-timer.d.ts +49 -0
- package/dist/ink/hooks/use-window-size.d.ts +18 -0
- package/dist/ink/ime-utils.d.ts +25 -0
- package/dist/ink/index.d.ts +159 -0
- package/dist/ink/index.js +100 -0
- package/dist/ink/ink.d.ts +189 -0
- package/dist/ink/input-parser.d.ts +10 -0
- package/dist/ink/input-utils.d.ts +16 -0
- package/dist/ink/instances.d.ts +3 -0
- package/dist/ink/kitty-keyboard.d.ts +23 -0
- package/dist/ink/layout.d.ts +26 -0
- package/dist/ink/log-update-native.d.ts +14 -0
- package/dist/ink/log-update.d.ts +21 -0
- package/dist/ink/measure-element.d.ts +147 -0
- package/dist/ink/measure-text.d.ts +56 -0
- package/dist/ink/mouse/Fullscreen.d.ts +8 -0
- package/dist/ink/mouse/MouseProvider.d.ts +11 -0
- package/dist/ink/mouse/ansi-parser.d.ts +37 -0
- package/dist/ink/mouse/constants.d.ts +59 -0
- package/dist/ink/mouse/index.d.ts +20 -0
- package/dist/ink/mouse/is-intersecting.d.ts +18 -0
- package/dist/ink/mouse/mouse-context.d.ts +36 -0
- package/dist/ink/mouse/use-element-position.d.ts +29 -0
- package/dist/ink/mouse/use-mouse-action.d.ts +7 -0
- package/dist/ink/mouse/use-mouse-position.d.ts +7 -0
- package/dist/ink/mouse/use-mouse.d.ts +7 -0
- package/dist/ink/mouse/use-on-mouse-click.d.ts +14 -0
- package/dist/ink/mouse/use-on-mouse-hover.d.ts +8 -0
- package/dist/ink/mouse/use-on-mouse-state.d.ts +11 -0
- package/dist/ink/output.d.ts +74 -0
- package/dist/ink/parse-keypress.d.ts +22 -0
- package/dist/ink/reconciler.d.ts +3 -0
- package/dist/ink/region.d.ts +99 -0
- package/dist/ink/render-background.d.ts +4 -0
- package/dist/ink/render-border.d.ts +4 -0
- package/dist/ink/render-node-to-output.d.ts +38 -0
- package/dist/ink/render-scrollbar.d.ts +9 -0
- package/dist/ink/render-sticky.d.ts +44 -0
- package/dist/ink/render-to-string.d.ts +37 -0
- package/dist/ink/render.d.ts +191 -0
- package/dist/ink/renderer.d.ts +17 -0
- package/dist/ink/resize-observer.d.ts +44 -0
- package/dist/ink/sanitize-ansi.d.ts +2 -0
- package/dist/ink/scroll.d.ts +23 -0
- package/dist/ink/selection.d.ts +70 -0
- package/dist/ink/squash-text-nodes.d.ts +18 -0
- package/dist/ink/style-flags.d.ts +17 -0
- package/dist/ink/styled-line-factory.d.ts +25 -0
- package/dist/ink/styled-line-serializer.d.ts +18 -0
- package/dist/ink/styled-line.d.ts +109 -0
- package/dist/ink/styles.d.ts +369 -0
- package/dist/ink/terminal-palette.d.ts +25 -0
- package/dist/ink/text-wrap.d.ts +10 -0
- package/dist/ink/token-to-elements.d.ts +22 -0
- package/dist/ink/utils/format-time.d.ts +4 -0
- package/dist/ink/utils.d.ts +9 -0
- package/dist/ink/wrap-text.d.ts +3 -0
- package/dist/ink/write-synchronized.d.ts +4 -0
- package/dist/packem_chunks/devtools.js +27 -0
- package/dist/packem_shared/AccessibilityContext-BLelHhNU.js +7 -0
- package/dist/packem_shared/Alert-Dr3s_LD9.js +17 -0
- package/dist/packem_shared/AnimationContext-BcJg8Jr6.js +15 -0
- package/dist/packem_shared/AppContext-CP0U6H7O.js +11 -0
- package/dist/packem_shared/BackgroundContext-BAUaxfOb.js +5 -0
- package/dist/packem_shared/Badge-Dk7EGGM6.js +13 -0
- package/dist/packem_shared/BigText-CjMdY63X.js +24 -0
- package/dist/packem_shared/Box-D_pSJ9Jp.js +73 -0
- package/dist/packem_shared/COLOR_BLINDNESS_SIMULATION-BsMy5Ewl.js +81 -0
- package/dist/packem_shared/Cell-DCg1kJY-.js +48 -0
- package/dist/packem_shared/Code-DjQvPBD9.js +53 -0
- package/dist/packem_shared/ConfirmInput-85Y4kRQW.js +44 -0
- package/dist/packem_shared/ConsoleOverlay-DBNa4vtj.js +57 -0
- package/dist/packem_shared/ControlledScrollView-BlOaxcsN.js +286 -0
- package/dist/packem_shared/ControlledScrollView-DfAhcufF.js +5 -0
- package/dist/packem_shared/Cursor-DiW7YoSK.js +18 -0
- package/dist/packem_shared/CursorContext-JxRzlqAx.js +9 -0
- package/dist/packem_shared/DevTools-aMPIsaHx.js +61 -0
- package/dist/packem_shared/Dialog-DsSNAVgC.js +71 -0
- package/dist/packem_shared/DiffView-hqaw-2S6.js +329 -0
- package/dist/packem_shared/FilePicker-DNwFxRhq.js +254 -0
- package/dist/packem_shared/FocusContext-CWkYtgcm.js +26 -0
- package/dist/packem_shared/FocusContext-D5wFxSRz.js +153 -0
- package/dist/packem_shared/Fullscreen-DrElAE1o.js +11 -0
- package/dist/packem_shared/Gradient-Ql5P0GUd.js +136 -0
- package/dist/packem_shared/Help-6wanGG38.js +112 -0
- package/dist/packem_shared/IMECompositionBuffer-Dl3S0KnF.js +55 -0
- package/dist/packem_shared/InputParser-BKHpWfvN.js +156 -0
- package/dist/packem_shared/LayoutNode-Cjnsodiy.js +131 -0
- package/dist/packem_shared/Link-COcKYfGT.js +66 -0
- package/dist/packem_shared/Markdown-y1ISztof.js +212 -0
- package/dist/packem_shared/MouseProvider-Y9TSSEGl.js +136 -0
- package/dist/packem_shared/MultiSelect-ChoLUcDI.js +129 -0
- package/dist/packem_shared/NAMED_COLORS-a4QBvb5r.js +262 -0
- package/dist/packem_shared/Newline-DBtYEg8x.js +7 -0
- package/dist/packem_shared/OrderedList-Cp7pXr6m.js +26 -0
- package/dist/packem_shared/Paginator-D1AuD-kj.js +104 -0
- package/dist/packem_shared/ProgressBar-DOfpVagn.js +22 -0
- package/dist/packem_shared/Renderer-zZ5O3vxc.js +31 -0
- package/dist/packem_shared/ResizeObserverEntry-Br4seLeQ.js +102 -0
- package/dist/packem_shared/ScrollBar-EWAs2Uc7.js +106 -0
- package/dist/packem_shared/ScrollBarBox-DTNNlh7R.js +72 -0
- package/dist/packem_shared/ScrollList-DCeIFL8M.js +227 -0
- package/dist/packem_shared/ScrollView-v3MCNIyX.js +196 -0
- package/dist/packem_shared/SelectInput-BN2TMyxp.js +260 -0
- package/dist/packem_shared/SelectInputIndicator-DkRMoH_b.js +9 -0
- package/dist/packem_shared/SelectInputItem-BF9LQgKu.js +8 -0
- package/dist/packem_shared/Slider-BWD7xZX6.js +116 -0
- package/dist/packem_shared/Spacer-Bs4ER-HK.js +8 -0
- package/dist/packem_shared/Spinner-BuI-kN4p.js +1799 -0
- package/dist/packem_shared/Static-DpTd6Eed.js +22 -0
- package/dist/packem_shared/Static-xmD9giJj.js +18 -0
- package/dist/packem_shared/StaticRender-tYwH6QXl.js +33 -0
- package/dist/packem_shared/StatusMessage-BtSYxzwb.js +14 -0
- package/dist/packem_shared/StderrContext-Bj4Mf7v7.js +17 -0
- package/dist/packem_shared/StdinContext-Bq_GNJ3z.js +38 -0
- package/dist/packem_shared/StdoutContext-CgjWeCdO.js +17 -0
- package/dist/packem_shared/Stopwatch-DjtTCyHn.js +23 -0
- package/dist/packem_shared/Tab-C6r5q4hR.js +7 -0
- package/dist/packem_shared/Table-D-rSVlzb.js +82 -0
- package/dist/packem_shared/Tabs-hki-KRnx.js +153 -0
- package/dist/packem_shared/Text-DvAUdZcK.js +65 -0
- package/dist/packem_shared/TextInput-C79WEQ5U.js +137 -0
- package/dist/packem_shared/Textarea-Dj06R6Zd.js +272 -0
- package/dist/packem_shared/Timer-wi9zuh4n.js +22 -0
- package/dist/packem_shared/Transform-BHxY_dAM.js +14 -0
- package/dist/packem_shared/TreeNodeMap-CtJUvBnd.js +155 -0
- package/dist/packem_shared/TreeView-C2062dtj.js +148 -0
- package/dist/packem_shared/TuiApp-DfxOnXqi.js +120 -0
- package/dist/packem_shared/TuiContext-CqEjMyXd.js +415 -0
- package/dist/packem_shared/UnorderedList-DhnadWjX.js +33 -0
- package/dist/packem_shared/ansi-parser-0BdVTKho.js +41 -0
- package/dist/packem_shared/ansi-tokenizer-LHq2LUWA.js +307 -0
- package/dist/packem_shared/boxes-oi3WUbyR.js +92 -0
- package/dist/packem_shared/colorize-88_Vk8cn.js +48 -0
- package/dist/packem_shared/comparePoints-CGMDnd3_.js +287 -0
- package/dist/packem_shared/createInlineLoop-BxMmcq9D.js +93 -0
- package/dist/packem_shared/createLinkedScrollGroup-Djw4Ceo0.js +44 -0
- package/dist/packem_shared/dom-DvzhsAez.js +225 -0
- package/dist/packem_shared/format-time-BGmnDukX.js +12 -0
- package/dist/packem_shared/getPathToRoot-a1wbwxfL.js +4 -0
- package/dist/packem_shared/getScrollHeight-BubfU_df.js +63 -0
- package/dist/packem_shared/input-utils-ViAEXa0Z.js +19 -0
- package/dist/packem_shared/isIntersecting-fEXHJN5R.js +10 -0
- package/dist/packem_shared/isOsc52Supported-G0k4sXJx.js +36 -0
- package/dist/packem_shared/isTerminalPaletteQuerySupported-EeiwMKbr.js +93 -0
- package/dist/packem_shared/kittyFlags-bNNf_9kX.js +26 -0
- package/dist/packem_shared/measure-element-Reza_yfC.js +396 -0
- package/dist/packem_shared/measure-text-DItZYotK.js +1189 -0
- package/dist/packem_shared/measureElement-CTgFCmKd.js +4 -0
- package/dist/packem_shared/mouse-context-BUHWKEIe.js +6 -0
- package/dist/packem_shared/parseSgrMouse-BHVBPP9G.js +1 -0
- package/dist/packem_shared/processLayout-BQ9kXfd3.js +2 -0
- package/dist/packem_shared/reconciler-BXf6miSS.js +211 -0
- package/dist/packem_shared/reconciler-gfmqURLy.js +680 -0
- package/dist/packem_shared/render-BAwdjfki.js +2806 -0
- package/dist/packem_shared/render-Bpjhf0lD.js +195 -0
- package/dist/packem_shared/renderToString-Cfg55DRD.js +62 -0
- package/dist/packem_shared/renderToString-ClIaXgrC.js +86 -0
- package/dist/packem_shared/renderTreeToBuffer-D3mo7M7m.js +308 -0
- package/dist/packem_shared/renderer-B3wROkeg.js +1431 -0
- package/dist/packem_shared/setEnableStyledLineCache-BpskngSJ.js +2 -0
- package/dist/packem_shared/squashTextNodesWithMap-iqm6OMMT.js +100 -0
- package/dist/packem_shared/text-width-DhuarWcB.js +42 -0
- package/dist/packem_shared/token-to-elements-BRFl_rzw.js +249 -0
- package/dist/packem_shared/treeViewTheme-BpSw9TMf.js +52 -0
- package/dist/packem_shared/useAnimation-kj31sA-T.js +62 -0
- package/dist/packem_shared/useApp-DPQlRzi5.js +6 -0
- package/dist/packem_shared/useBoxMetrics-rBjKc-g4.js +54 -0
- package/dist/packem_shared/useClipboard-B_9-adw1.js +23 -0
- package/dist/packem_shared/useColorBlindness-D_sTIhcb.js +30 -0
- package/dist/packem_shared/useConsoleCapture-Dvt7G1W1.js +61 -0
- package/dist/packem_shared/useCursor-BIJzc8k9.js +19 -0
- package/dist/packem_shared/useElementDimensions-CAoKitVD.js +67 -0
- package/dist/packem_shared/useFocus-CNl5QHHf.js +37 -0
- package/dist/packem_shared/useFocusManager-BPYaUuKQ.js +16 -0
- package/dist/packem_shared/useInput-Cfp5zB2s.js +594 -0
- package/dist/packem_shared/useIsScreenReaderEnabled-CnGKCe0f.js +9 -0
- package/dist/packem_shared/useKeyBindings-B78l1E1n.js +66 -0
- package/dist/packem_shared/useMouseAction-C5gZ2nj7.js +29 -0
- package/dist/packem_shared/useMouseContext-D-rFy60Q.js +12 -0
- package/dist/packem_shared/useMousePosition-BHBJ-kBk.js +25 -0
- package/dist/packem_shared/useOnMouseClick--ZIyBOBO.js +35 -0
- package/dist/packem_shared/useOnMouseHover-26diuXUC.js +32 -0
- package/dist/packem_shared/useOnMouseState-NO_Kda_C.js +13 -0
- package/dist/packem_shared/usePaste-Ct8J4AGR.js +35 -0
- package/dist/packem_shared/useScrollAcceleration-R9LfrPVG.js +73 -0
- package/dist/packem_shared/useScrollInput-D3CpBq_a.js +72 -0
- package/dist/packem_shared/useStderr-CAOVUh4E.js +6 -0
- package/dist/packem_shared/useStdin-X-O0kd-n.js +7 -0
- package/dist/packem_shared/useStdout-DyF6DSH0.js +6 -0
- package/dist/packem_shared/useStopwatch-qC4Beai4.js +33 -0
- package/dist/packem_shared/useTerminalPalette-BaWO2c4Q.js +38 -0
- package/dist/packem_shared/useTextBuffer-C8fEe9Ly.js +398 -0
- package/dist/packem_shared/useTextSelection-mXtxgsPK.js +50 -0
- package/dist/packem_shared/useTimer-CPQ7j827.js +46 -0
- package/dist/packem_shared/useTreeView-BT57P3Kx.js +101 -0
- package/dist/packem_shared/useTreeViewState-BpS_KZ-K.js +502 -0
- package/dist/packem_shared/useWindowSize-ugEmGZJm.js +20 -0
- package/dist/packem_shared/utils-BgdlrbOH.js +140 -0
- package/dist/packem_shared/variant-config-DSZoX5TM.js +8 -0
- package/dist/packem_shared/wrapOrTruncateStyledLine-DN3Nogoc.js +147 -0
- package/dist/react/devtools.d.ts +27 -0
- package/dist/react/focus.d.ts +39 -0
- package/dist/react/hooks.d.ts +238 -0
- package/dist/react/index.d.ts +8 -0
- package/dist/react/index.js +9 -0
- package/dist/react/layout.d.ts +35 -0
- package/dist/react/react.d.ts +57 -0
- package/dist/react/reconciler.d.ts +4 -0
- package/dist/react/render-to-string.d.ts +21 -0
- package/dist/react/renderer.d.ts +2 -0
- package/dist/react/scene.d.ts +3 -0
- package/dist/react/static.d.ts +39 -0
- package/dist/react/styles.d.ts +83 -0
- package/dist/react/text-width.d.ts +20 -0
- package/dist/testing/index.d.ts +144 -0
- package/dist/testing/index.js +260 -0
- package/dist/testing/keys.d.ts +89 -0
- package/dist/testing/screen.d.ts +35 -0
- package/dist/testing/wait-for.d.ts +21 -0
- package/index.js +585 -0
- package/package.json +117 -7
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useMemo, useLayoutEffect } from 'react';
|
|
3
|
+
|
|
4
|
+
function Static(props) {
|
|
5
|
+
const { children: render, items, style: customStyle } = props;
|
|
6
|
+
const [index, setIndex] = useState(0);
|
|
7
|
+
const itemsToRender = useMemo(() => items.slice(index), [items, index]);
|
|
8
|
+
useLayoutEffect(() => {
|
|
9
|
+
setIndex(items.length);
|
|
10
|
+
}, [items.length]);
|
|
11
|
+
const children = itemsToRender.map((item, itemIndex) => render(item, index + itemIndex));
|
|
12
|
+
const style = useMemo(() => {
|
|
13
|
+
return {
|
|
14
|
+
flexDirection: "column",
|
|
15
|
+
position: "absolute",
|
|
16
|
+
...customStyle
|
|
17
|
+
};
|
|
18
|
+
}, [customStyle]);
|
|
19
|
+
return jsx("ink-box", { internal_static: true, style, children });
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export { Static as default };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { useRef, useMemo } from 'react';
|
|
2
|
+
|
|
3
|
+
function Static({ children: renderItem, items, style }) {
|
|
4
|
+
const committedRef = useRef([]);
|
|
5
|
+
const lastIndexRef = useRef(0);
|
|
6
|
+
if (items.length > lastIndexRef.current) {
|
|
7
|
+
for (let i = lastIndexRef.current; i < items.length; i++) {
|
|
8
|
+
committedRef.current.push(renderItem(items[i], i));
|
|
9
|
+
}
|
|
10
|
+
lastIndexRef.current = items.length;
|
|
11
|
+
}
|
|
12
|
+
const containerStyle = useMemo(() => {
|
|
13
|
+
return { flexDirection: "column", ...style };
|
|
14
|
+
}, [style]);
|
|
15
|
+
return React.createElement("box", containerStyle, ...committedRef.current);
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export { Static };
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { useRef, useLayoutEffect, useEffect, useMemo } from 'react';
|
|
3
|
+
|
|
4
|
+
const StaticRender = ({ children, style, width }) => {
|
|
5
|
+
const ref = useRef(null);
|
|
6
|
+
const isRenderedRef = useRef(false);
|
|
7
|
+
useLayoutEffect(() => {
|
|
8
|
+
const node = ref.current;
|
|
9
|
+
if (node) {
|
|
10
|
+
node.internal_onRendered = () => {
|
|
11
|
+
isRenderedRef.current = true;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
useEffect(() => {
|
|
16
|
+
return () => {
|
|
17
|
+
const node = ref.current;
|
|
18
|
+
if (node) {
|
|
19
|
+
node.cachedRender = void 0;
|
|
20
|
+
node.internal_onRendered = void 0;
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
}, []);
|
|
24
|
+
const mergedStyle = useMemo(() => {
|
|
25
|
+
return {
|
|
26
|
+
...style,
|
|
27
|
+
width
|
|
28
|
+
};
|
|
29
|
+
}, [style, width]);
|
|
30
|
+
return jsx("ink-static-render", { ref, style: mergedStyle, children: isRenderedRef.current ? null : children() });
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export { StaticRender as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
3
|
+
import Text from './Text-DvAUdZcK.js';
|
|
4
|
+
import { V as VARIANT_CONFIG } from './variant-config-DSZoX5TM.js';
|
|
5
|
+
|
|
6
|
+
function StatusMessage({ children, variant }) {
|
|
7
|
+
const { color, icon } = VARIANT_CONFIG[variant];
|
|
8
|
+
return jsxs(Box, { gap: 1, children: [
|
|
9
|
+
jsx(Text, { color, children: icon }),
|
|
10
|
+
jsx(Text, { children })
|
|
11
|
+
] });
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
export { StatusMessage as default };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { createRequire as __cjs_createRequire } from "node:module";
|
|
2
|
+
|
|
3
|
+
const __cjs_require = __cjs_createRequire(import.meta.url);
|
|
4
|
+
|
|
5
|
+
const __cjs_getProcess = typeof globalThis !== "undefined" && typeof globalThis.process !== "undefined" ? globalThis.process : process;
|
|
6
|
+
|
|
7
|
+
const process = __cjs_getProcess;
|
|
8
|
+
import { createContext } from 'react';
|
|
9
|
+
|
|
10
|
+
const StderrContext = createContext({
|
|
11
|
+
stderr: process.stderr,
|
|
12
|
+
write() {
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
StderrContext.displayName = "InternalStderrContext";
|
|
16
|
+
|
|
17
|
+
export { StderrContext as S };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { createRequire as __cjs_createRequire } from "node:module";
|
|
2
|
+
|
|
3
|
+
const __cjs_require = __cjs_createRequire(import.meta.url);
|
|
4
|
+
|
|
5
|
+
const __cjs_getProcess = typeof globalThis !== "undefined" && typeof globalThis.process !== "undefined" ? globalThis.process : process;
|
|
6
|
+
|
|
7
|
+
const __cjs_getBuiltinModule = (module) => {
|
|
8
|
+
// Check if we're in Node.js and version supports getBuiltinModule
|
|
9
|
+
if (typeof __cjs_getProcess !== "undefined" && __cjs_getProcess.versions && __cjs_getProcess.versions.node) {
|
|
10
|
+
const [major, minor] = __cjs_getProcess.versions.node.split(".").map(Number);
|
|
11
|
+
// Node.js 20.16.0+ and 22.3.0+
|
|
12
|
+
if (major > 22 || (major === 22 && minor >= 3) || (major === 20 && minor >= 16)) {
|
|
13
|
+
return __cjs_getProcess.getBuiltinModule(module);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
// Fallback to createRequire
|
|
17
|
+
return __cjs_require(module);
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
const {
|
|
21
|
+
EventEmitter
|
|
22
|
+
} = __cjs_getBuiltinModule("node:events");
|
|
23
|
+
const process = __cjs_getProcess;
|
|
24
|
+
import { createContext } from 'react';
|
|
25
|
+
|
|
26
|
+
const StdinContext = createContext({
|
|
27
|
+
internal_eventEmitter: new EventEmitter(),
|
|
28
|
+
internal_exitOnCtrlC: true,
|
|
29
|
+
isRawModeSupported: false,
|
|
30
|
+
setBracketedPasteMode() {
|
|
31
|
+
},
|
|
32
|
+
setRawMode() {
|
|
33
|
+
},
|
|
34
|
+
stdin: process.stdin
|
|
35
|
+
});
|
|
36
|
+
StdinContext.displayName = "InternalStdinContext";
|
|
37
|
+
|
|
38
|
+
export { StdinContext as S };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { createRequire as __cjs_createRequire } from "node:module";
|
|
2
|
+
|
|
3
|
+
const __cjs_require = __cjs_createRequire(import.meta.url);
|
|
4
|
+
|
|
5
|
+
const __cjs_getProcess = typeof globalThis !== "undefined" && typeof globalThis.process !== "undefined" ? globalThis.process : process;
|
|
6
|
+
|
|
7
|
+
const process = __cjs_getProcess;
|
|
8
|
+
import { createContext } from 'react';
|
|
9
|
+
|
|
10
|
+
const StdoutContext = createContext({
|
|
11
|
+
stdout: process.stdout,
|
|
12
|
+
write() {
|
|
13
|
+
}
|
|
14
|
+
});
|
|
15
|
+
StdoutContext.displayName = "InternalStdoutContext";
|
|
16
|
+
|
|
17
|
+
export { StdoutContext as S };
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { forwardRef, useImperativeHandle } from 'react';
|
|
3
|
+
import useStopwatch from './useStopwatch-qC4Beai4.js';
|
|
4
|
+
import { f as formatDuration } from './format-time-BGmnDukX.js';
|
|
5
|
+
import Text from './Text-DvAUdZcK.js';
|
|
6
|
+
|
|
7
|
+
const Stopwatch = forwardRef(function Stopwatch2({ autoStart, bold, color, format = formatDuration, interval }, ref) {
|
|
8
|
+
const sw = useStopwatch({ autoStart, interval });
|
|
9
|
+
useImperativeHandle(
|
|
10
|
+
ref,
|
|
11
|
+
() => ({
|
|
12
|
+
lap: sw.lap,
|
|
13
|
+
reset: sw.reset,
|
|
14
|
+
start: sw.start,
|
|
15
|
+
stop: sw.stop,
|
|
16
|
+
toggle: sw.toggle
|
|
17
|
+
}),
|
|
18
|
+
[sw.lap, sw.reset, sw.start, sw.stop, sw.toggle]
|
|
19
|
+
);
|
|
20
|
+
return jsx(Text, { bold, color, children: format(sw.elapsed) });
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
export { Stopwatch as default };
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { Table } from '@visulima/tabular';
|
|
3
|
+
import { THICK_BORDER, ROUNDED_BORDER, NO_BORDER, MINIMAL_BORDER, MARKDOWN_BORDER, DOUBLE_BORDER, DOTS_BORDER, DEFAULT_BORDER, BLOCK_BORDER, ASCII_BORDER } from '@visulima/tabular/style';
|
|
4
|
+
import { useMemo } from 'react';
|
|
5
|
+
import Text from './Text-DvAUdZcK.js';
|
|
6
|
+
|
|
7
|
+
const BORDER_PRESETS = {
|
|
8
|
+
ascii: ASCII_BORDER,
|
|
9
|
+
block: BLOCK_BORDER,
|
|
10
|
+
default: DEFAULT_BORDER,
|
|
11
|
+
dots: DOTS_BORDER,
|
|
12
|
+
double: DOUBLE_BORDER,
|
|
13
|
+
markdown: MARKDOWN_BORDER,
|
|
14
|
+
minimal: MINIMAL_BORDER,
|
|
15
|
+
none: NO_BORDER,
|
|
16
|
+
rounded: ROUNDED_BORDER,
|
|
17
|
+
thick: THICK_BORDER
|
|
18
|
+
};
|
|
19
|
+
function TableComponent({
|
|
20
|
+
borderStyle = "default",
|
|
21
|
+
columns: columnsProp,
|
|
22
|
+
data,
|
|
23
|
+
formatCell,
|
|
24
|
+
formatHeader,
|
|
25
|
+
maxWidth,
|
|
26
|
+
padding = 1,
|
|
27
|
+
showHeader = true,
|
|
28
|
+
skeleton = "",
|
|
29
|
+
wordWrap = false
|
|
30
|
+
}) {
|
|
31
|
+
const tableString = useMemo(() => {
|
|
32
|
+
if (data.length === 0) {
|
|
33
|
+
return "";
|
|
34
|
+
}
|
|
35
|
+
let resolvedColumns;
|
|
36
|
+
if (columnsProp) {
|
|
37
|
+
resolvedColumns = columnsProp.map((col) => typeof col === "string" ? { key: col } : col);
|
|
38
|
+
} else {
|
|
39
|
+
resolvedColumns = Object.keys(data[0]).map((key) => {
|
|
40
|
+
return { key };
|
|
41
|
+
});
|
|
42
|
+
}
|
|
43
|
+
if (resolvedColumns.length === 0) {
|
|
44
|
+
return "";
|
|
45
|
+
}
|
|
46
|
+
const border = typeof borderStyle === "string" ? BORDER_PRESETS[borderStyle] ?? DEFAULT_BORDER : borderStyle;
|
|
47
|
+
const columnWidths = resolvedColumns.map((col) => col.width);
|
|
48
|
+
const hasFixedWidths = columnWidths.some((w) => w !== void 0);
|
|
49
|
+
const table = new Table({
|
|
50
|
+
columnWidths: hasFixedWidths ? columnWidths : void 0,
|
|
51
|
+
maxWidth,
|
|
52
|
+
showHeader,
|
|
53
|
+
style: {
|
|
54
|
+
border,
|
|
55
|
+
paddingLeft: padding,
|
|
56
|
+
paddingRight: padding
|
|
57
|
+
},
|
|
58
|
+
wordWrap
|
|
59
|
+
});
|
|
60
|
+
if (showHeader) {
|
|
61
|
+
const headers = resolvedColumns.map((col) => {
|
|
62
|
+
const label = col.header ?? col.key;
|
|
63
|
+
return formatHeader ? formatHeader(col.key) : label;
|
|
64
|
+
});
|
|
65
|
+
table.setHeaders(headers);
|
|
66
|
+
}
|
|
67
|
+
for (const [rowIndex, row] of data.entries()) {
|
|
68
|
+
const cells = resolvedColumns.map((col) => {
|
|
69
|
+
const value = row[col.key];
|
|
70
|
+
if (formatCell) {
|
|
71
|
+
return formatCell(value, col.key, rowIndex);
|
|
72
|
+
}
|
|
73
|
+
return value === void 0 || value === null ? skeleton : String(value);
|
|
74
|
+
});
|
|
75
|
+
table.addRow(cells);
|
|
76
|
+
}
|
|
77
|
+
return table.toString();
|
|
78
|
+
}, [borderStyle, columnsProp, data, formatCell, formatHeader, maxWidth, padding, showHeader, skeleton, wordWrap]);
|
|
79
|
+
return jsx(Text, { children: tableString });
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
export { TableComponent as default };
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useRef, useState, useEffect, useMemo, useCallback, Children } from 'react';
|
|
3
|
+
import useInput from './useInput-Cfp5zB2s.js';
|
|
4
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
5
|
+
import Text from './Text-DvAUdZcK.js';
|
|
6
|
+
|
|
7
|
+
const NUMBER_KEY_PATTERN = /^\d$/u;
|
|
8
|
+
const isTabElement = (child) => child != null && typeof child === "object" && "props" in child && "name" in child.props;
|
|
9
|
+
const collectTabs = (children) => {
|
|
10
|
+
const result = [];
|
|
11
|
+
for (const child of Children.toArray(children)) {
|
|
12
|
+
if (isTabElement(child)) {
|
|
13
|
+
result.push(child);
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
return result;
|
|
17
|
+
};
|
|
18
|
+
const matchesAnyKey = (keys, key) => keys.some((keyName) => key[keyName]);
|
|
19
|
+
const getActiveTabColors = (isActive, focused, colorsProp) => {
|
|
20
|
+
if (!isActive) {
|
|
21
|
+
return { backgroundColor: void 0, color: void 0 };
|
|
22
|
+
}
|
|
23
|
+
if (focused) {
|
|
24
|
+
return {
|
|
25
|
+
backgroundColor: colorsProp?.activeTab?.backgroundColor ?? "green",
|
|
26
|
+
color: colorsProp?.activeTab?.color ?? "black"
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
return { backgroundColor: "gray", color: "black" };
|
|
30
|
+
};
|
|
31
|
+
function Tabs({
|
|
32
|
+
children,
|
|
33
|
+
colors: colorsProp,
|
|
34
|
+
defaultValue,
|
|
35
|
+
flexDirection = "row",
|
|
36
|
+
isFocused,
|
|
37
|
+
keyMap: keyMapProp,
|
|
38
|
+
onChange,
|
|
39
|
+
showIndex = true,
|
|
40
|
+
value,
|
|
41
|
+
width
|
|
42
|
+
}) {
|
|
43
|
+
const tabs = collectTabs(children);
|
|
44
|
+
const tabCount = tabs.length;
|
|
45
|
+
const tabsRef = useRef(tabs);
|
|
46
|
+
tabsRef.current = tabs;
|
|
47
|
+
const isColumn = flexDirection === "column" || flexDirection === "column-reverse";
|
|
48
|
+
const isControlled = value !== void 0;
|
|
49
|
+
const [internalTab, setInternalTab] = useState(() => {
|
|
50
|
+
const initial = value ?? defaultValue;
|
|
51
|
+
if (initial == null || tabCount === 0) {
|
|
52
|
+
return 0;
|
|
53
|
+
}
|
|
54
|
+
const foundIndex = tabs.findIndex((tab) => tab.props.name === initial);
|
|
55
|
+
return foundIndex === -1 ? 0 : foundIndex;
|
|
56
|
+
});
|
|
57
|
+
const activeTab = isControlled ? Math.max(0, tabs.findIndex((tab) => tab.props.name === value)) : internalTab;
|
|
58
|
+
const setActiveTab = isControlled ? () => {
|
|
59
|
+
} : setInternalTab;
|
|
60
|
+
const onChangeRef = useRef(onChange);
|
|
61
|
+
onChangeRef.current = onChange;
|
|
62
|
+
useEffect(() => {
|
|
63
|
+
if (isControlled) {
|
|
64
|
+
return;
|
|
65
|
+
}
|
|
66
|
+
const tab = tabsRef.current[activeTab];
|
|
67
|
+
if (tab) {
|
|
68
|
+
onChangeRef.current(tab.props.name, tab);
|
|
69
|
+
}
|
|
70
|
+
}, []);
|
|
71
|
+
const previousKeys = useMemo(() => keyMapProp?.previous ?? [isColumn ? "upArrow" : "leftArrow"], [keyMapProp?.previous, isColumn]);
|
|
72
|
+
const nextKeys = useMemo(() => keyMapProp?.next ?? [isColumn ? "downArrow" : "rightArrow"], [keyMapProp?.next, isColumn]);
|
|
73
|
+
const useNumbers = keyMapProp?.useNumbers ?? true;
|
|
74
|
+
const useTab = keyMapProp?.useTab ?? true;
|
|
75
|
+
const activeTabRef = useRef(activeTab);
|
|
76
|
+
activeTabRef.current = activeTab;
|
|
77
|
+
const handleTabChange = useCallback((index) => {
|
|
78
|
+
setActiveTab(index);
|
|
79
|
+
const tab = tabsRef.current[index];
|
|
80
|
+
if (tab) {
|
|
81
|
+
onChangeRef.current(tab.props.name, tab);
|
|
82
|
+
}
|
|
83
|
+
}, [setActiveTab]);
|
|
84
|
+
const moveToNext = useCallback(() => {
|
|
85
|
+
const next = (activeTabRef.current + 1) % tabCount;
|
|
86
|
+
setActiveTab(next);
|
|
87
|
+
const tab = tabsRef.current[next];
|
|
88
|
+
if (tab) {
|
|
89
|
+
onChangeRef.current(tab.props.name, tab);
|
|
90
|
+
}
|
|
91
|
+
}, [tabCount, setActiveTab]);
|
|
92
|
+
const moveToPrevious = useCallback(() => {
|
|
93
|
+
const previous = (activeTabRef.current - 1 + tabCount) % tabCount;
|
|
94
|
+
setActiveTab(previous);
|
|
95
|
+
const tab = tabsRef.current[previous];
|
|
96
|
+
if (tab) {
|
|
97
|
+
onChangeRef.current(tab.props.name, tab);
|
|
98
|
+
}
|
|
99
|
+
}, [tabCount, setActiveTab]);
|
|
100
|
+
useInput(
|
|
101
|
+
useCallback(
|
|
102
|
+
(input, key) => {
|
|
103
|
+
if (matchesAnyKey(previousKeys, key)) {
|
|
104
|
+
moveToPrevious();
|
|
105
|
+
return;
|
|
106
|
+
}
|
|
107
|
+
if (matchesAnyKey(nextKeys, key)) {
|
|
108
|
+
moveToNext();
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
if (key.tab && useTab && isFocused == null) {
|
|
112
|
+
if (key.shift) {
|
|
113
|
+
moveToPrevious();
|
|
114
|
+
} else {
|
|
115
|
+
moveToNext();
|
|
116
|
+
}
|
|
117
|
+
return;
|
|
118
|
+
}
|
|
119
|
+
if (useNumbers && key.meta && NUMBER_KEY_PATTERN.test(input)) {
|
|
120
|
+
const tabIndex = input === "0" ? 9 : Number.parseInt(input, 10) - 1;
|
|
121
|
+
if (tabIndex < tabCount) {
|
|
122
|
+
handleTabChange(tabIndex);
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
[previousKeys, nextKeys, useTab, useNumbers, isFocused, moveToPrevious, moveToNext, tabCount, handleTabChange]
|
|
127
|
+
),
|
|
128
|
+
{ isActive: isFocused !== false }
|
|
129
|
+
);
|
|
130
|
+
const separatorWidth = typeof width === "number" ? width : 6;
|
|
131
|
+
const separator = useMemo(
|
|
132
|
+
// eslint-disable-next-line @stylistic/no-extra-parens
|
|
133
|
+
() => isColumn ? "─".repeat(separatorWidth) : " | ",
|
|
134
|
+
[isColumn, separatorWidth]
|
|
135
|
+
);
|
|
136
|
+
return jsx(Box, { flexDirection, width, children: tabs.map((child, index) => {
|
|
137
|
+
const { name } = child.props;
|
|
138
|
+
const textColors = getActiveTabColors(activeTab === index, isFocused !== false, colorsProp);
|
|
139
|
+
return jsxs(Box, { flexDirection, children: [
|
|
140
|
+
index !== 0 && jsx(Text, { color: "dim", children: separator }),
|
|
141
|
+
jsxs(Box, { children: [
|
|
142
|
+
showIndex ? jsxs(Text, { color: "grey", children: [
|
|
143
|
+
index + 1,
|
|
144
|
+
".",
|
|
145
|
+
" "
|
|
146
|
+
] }) : null,
|
|
147
|
+
jsx(Text, { backgroundColor: textColors.backgroundColor, color: textColors.color, children: child })
|
|
148
|
+
] })
|
|
149
|
+
] }, name);
|
|
150
|
+
}) });
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
export { Tabs as default };
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import colorizeDefault from '@visulima/colorize';
|
|
3
|
+
import { useContext, useCallback } from 'react';
|
|
4
|
+
import { c as colorize } from './colorize-88_Vk8cn.js';
|
|
5
|
+
import { a as accessibilityContext } from './AccessibilityContext-BLelHhNU.js';
|
|
6
|
+
import { b as backgroundContext } from './BackgroundContext-BAUaxfOb.js';
|
|
7
|
+
|
|
8
|
+
function Text({
|
|
9
|
+
"aria-hidden": ariaHidden = false,
|
|
10
|
+
"aria-label": ariaLabel,
|
|
11
|
+
backgroundColor,
|
|
12
|
+
bold = false,
|
|
13
|
+
children,
|
|
14
|
+
color,
|
|
15
|
+
dimColor = false,
|
|
16
|
+
inverse = false,
|
|
17
|
+
italic = false,
|
|
18
|
+
strikethrough = false,
|
|
19
|
+
underline = false,
|
|
20
|
+
wrap = "wrap"
|
|
21
|
+
}) {
|
|
22
|
+
const { isScreenReaderEnabled } = useContext(accessibilityContext);
|
|
23
|
+
const inheritedBackgroundColor = useContext(backgroundContext);
|
|
24
|
+
const childrenOrAriaLabel = isScreenReaderEnabled && ariaLabel ? ariaLabel : children;
|
|
25
|
+
const transform = useCallback(
|
|
26
|
+
(children2) => {
|
|
27
|
+
if (dimColor) {
|
|
28
|
+
children2 = colorizeDefault.dim(children2);
|
|
29
|
+
}
|
|
30
|
+
if (color) {
|
|
31
|
+
children2 = colorize(children2, color, "foreground");
|
|
32
|
+
}
|
|
33
|
+
const effectiveBackgroundColor = backgroundColor ?? inheritedBackgroundColor;
|
|
34
|
+
if (effectiveBackgroundColor) {
|
|
35
|
+
children2 = colorize(children2, effectiveBackgroundColor, "background");
|
|
36
|
+
}
|
|
37
|
+
if (bold) {
|
|
38
|
+
children2 = colorizeDefault.bold(children2);
|
|
39
|
+
}
|
|
40
|
+
if (italic) {
|
|
41
|
+
children2 = colorizeDefault.italic(children2);
|
|
42
|
+
}
|
|
43
|
+
if (underline) {
|
|
44
|
+
children2 = colorizeDefault.underline(children2);
|
|
45
|
+
}
|
|
46
|
+
if (strikethrough) {
|
|
47
|
+
children2 = colorizeDefault.strikethrough(children2);
|
|
48
|
+
}
|
|
49
|
+
if (inverse) {
|
|
50
|
+
children2 = colorizeDefault.inverse(children2);
|
|
51
|
+
}
|
|
52
|
+
return children2;
|
|
53
|
+
},
|
|
54
|
+
[dimColor, color, backgroundColor, inheritedBackgroundColor, bold, italic, underline, strikethrough, inverse]
|
|
55
|
+
);
|
|
56
|
+
if (childrenOrAriaLabel === void 0 || childrenOrAriaLabel === null) {
|
|
57
|
+
return null;
|
|
58
|
+
}
|
|
59
|
+
if (isScreenReaderEnabled && ariaHidden) {
|
|
60
|
+
return null;
|
|
61
|
+
}
|
|
62
|
+
return jsx("ink-text", { internal_transform: transform, style: { flexDirection: "row", flexGrow: 0, flexShrink: 1, textWrap: wrap }, children: isScreenReaderEnabled && ariaLabel ? ariaLabel : children });
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export { Text as default };
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
|
+
import { useState, useRef, useCallback } from 'react';
|
|
3
|
+
import useInput from './useInput-Cfp5zB2s.js';
|
|
4
|
+
import { i as isInsertableInput } from './input-utils-ViAEXa0Z.js';
|
|
5
|
+
import Box from './Box-D_pSJ9Jp.js';
|
|
6
|
+
import Text from './Text-DvAUdZcK.js';
|
|
7
|
+
|
|
8
|
+
const KILL_WORD_PATTERN = /\S+\s*$/;
|
|
9
|
+
const findSuggestion = (value, suggestions) => {
|
|
10
|
+
if (value.length === 0 || !suggestions) {
|
|
11
|
+
return void 0;
|
|
12
|
+
}
|
|
13
|
+
const match = suggestions.find((s) => s.startsWith(value));
|
|
14
|
+
return match?.slice(value.length) ?? void 0;
|
|
15
|
+
};
|
|
16
|
+
const NAV_NOT_HANDLED = -1;
|
|
17
|
+
const handleNavigation = (input, key, cursor, valueLength) => {
|
|
18
|
+
if (key.leftArrow) {
|
|
19
|
+
return Math.max(0, cursor - 1);
|
|
20
|
+
}
|
|
21
|
+
if (key.home || key.ctrl && input === "a") {
|
|
22
|
+
return 0;
|
|
23
|
+
}
|
|
24
|
+
if (key.end || key.ctrl && input === "e") {
|
|
25
|
+
return valueLength;
|
|
26
|
+
}
|
|
27
|
+
return NAV_NOT_HANDLED;
|
|
28
|
+
};
|
|
29
|
+
const handleEditing = (input, key, currentValue, cursor) => {
|
|
30
|
+
if (key.backspace && cursor > 0) {
|
|
31
|
+
return [currentValue.slice(0, cursor - 1) + currentValue.slice(cursor), cursor - 1];
|
|
32
|
+
}
|
|
33
|
+
if (key.delete && cursor < currentValue.length) {
|
|
34
|
+
return [currentValue.slice(0, cursor) + currentValue.slice(cursor + 1), cursor];
|
|
35
|
+
}
|
|
36
|
+
if (key.ctrl && input === "u") {
|
|
37
|
+
return [currentValue.slice(cursor), 0];
|
|
38
|
+
}
|
|
39
|
+
if (key.ctrl && input === "k") {
|
|
40
|
+
return [currentValue.slice(0, cursor), cursor];
|
|
41
|
+
}
|
|
42
|
+
if (key.ctrl && input === "w") {
|
|
43
|
+
const before = currentValue.slice(0, cursor);
|
|
44
|
+
const trimmed = before.replace(KILL_WORD_PATTERN, "");
|
|
45
|
+
return [trimmed + currentValue.slice(cursor), trimmed.length];
|
|
46
|
+
}
|
|
47
|
+
return void 0;
|
|
48
|
+
};
|
|
49
|
+
function TextInput({ defaultValue = "", isDisabled = false, mask = false, onChange, onSubmit, placeholder, suggestions }) {
|
|
50
|
+
const [value, setValueRaw] = useState(defaultValue);
|
|
51
|
+
const [cursor, setCursor] = useState(defaultValue.length);
|
|
52
|
+
const valueRef = useRef(value);
|
|
53
|
+
valueRef.current = value;
|
|
54
|
+
const cursorRef = useRef(cursor);
|
|
55
|
+
cursorRef.current = cursor;
|
|
56
|
+
const onChangeRef = useRef(onChange);
|
|
57
|
+
onChangeRef.current = onChange;
|
|
58
|
+
const onSubmitRef = useRef(onSubmit);
|
|
59
|
+
onSubmitRef.current = onSubmit;
|
|
60
|
+
const suggestion = findSuggestion(value, suggestions);
|
|
61
|
+
const inputHandler = useCallback(
|
|
62
|
+
(input, key) => {
|
|
63
|
+
const { current } = cursorRef;
|
|
64
|
+
const currentValue = valueRef.current;
|
|
65
|
+
if (key.return) {
|
|
66
|
+
const currentSuggestion = findSuggestion(currentValue, suggestions);
|
|
67
|
+
const finalValue = currentSuggestion ? currentValue + currentSuggestion : currentValue;
|
|
68
|
+
if (currentSuggestion) {
|
|
69
|
+
setValueRaw(finalValue);
|
|
70
|
+
setCursor(finalValue.length);
|
|
71
|
+
onChangeRef.current?.(finalValue);
|
|
72
|
+
}
|
|
73
|
+
onSubmitRef.current?.(finalValue);
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
if (key.escape) {
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
if (key.rightArrow) {
|
|
80
|
+
const currentSuggestion = findSuggestion(currentValue, suggestions);
|
|
81
|
+
if (current === currentValue.length && currentSuggestion) {
|
|
82
|
+
const completed = currentValue + currentSuggestion;
|
|
83
|
+
setValueRaw(completed);
|
|
84
|
+
setCursor(completed.length);
|
|
85
|
+
onChangeRef.current?.(completed);
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
setCursor(Math.min(currentValue.length, current + 1));
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
const navResult = handleNavigation(input, key, current, currentValue.length);
|
|
92
|
+
if (navResult !== NAV_NOT_HANDLED) {
|
|
93
|
+
setCursor(navResult);
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
const editResult = handleEditing(input, key, currentValue, current);
|
|
97
|
+
if (editResult) {
|
|
98
|
+
const [newValue, newCursor] = editResult;
|
|
99
|
+
setValueRaw(newValue);
|
|
100
|
+
setCursor(newCursor);
|
|
101
|
+
onChangeRef.current?.(newValue);
|
|
102
|
+
return;
|
|
103
|
+
}
|
|
104
|
+
if (isInsertableInput(input, key)) {
|
|
105
|
+
const next = currentValue.slice(0, current) + input + currentValue.slice(current);
|
|
106
|
+
setValueRaw(next);
|
|
107
|
+
setCursor(current + input.length);
|
|
108
|
+
onChangeRef.current?.(next);
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
[suggestions]
|
|
112
|
+
);
|
|
113
|
+
useInput(inputHandler, { isActive: !isDisabled });
|
|
114
|
+
const displayValue = mask ? "*".repeat(value.length) : value;
|
|
115
|
+
const beforeCursor = displayValue.slice(0, cursor);
|
|
116
|
+
const atCursor = displayValue[cursor];
|
|
117
|
+
const afterCursor = displayValue.slice(cursor + 1);
|
|
118
|
+
if (isDisabled) {
|
|
119
|
+
return jsx(Box, { children: jsx(Text, { dimColor: true, children: displayValue || placeholder || "" }) });
|
|
120
|
+
}
|
|
121
|
+
if (value.length === 0 && placeholder) {
|
|
122
|
+
return jsxs(Box, { children: [
|
|
123
|
+
jsx(Text, { dimColor: true, inverse: true, children: placeholder[0] }),
|
|
124
|
+
jsx(Text, { dimColor: true, children: placeholder.slice(1) })
|
|
125
|
+
] });
|
|
126
|
+
}
|
|
127
|
+
return jsxs(Box, { children: [
|
|
128
|
+
jsxs(Text, { children: [
|
|
129
|
+
beforeCursor,
|
|
130
|
+
jsx(Text, { inverse: true, children: atCursor ?? " " }),
|
|
131
|
+
afterCursor
|
|
132
|
+
] }),
|
|
133
|
+
suggestion ? jsx(Text, { dimColor: true, children: suggestion }) : void 0
|
|
134
|
+
] });
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export { TextInput as default };
|