ink-scrollbar
Scrollbar Component for Ink
Useful if you want to show a big list of items and don't want to display all of them at the same time.
Demo
Normal scrolling (code in the example below):
Adding items to the list:
Install
$ npm install ink-scrollbar
Usage
const h render Component Text = ;const Scrollbar = ; const items = Array; { super; thisstate = cursor: 0 ; thisgetCursor = thisgetCursor; } { return <Scrollbar show=5 current=thisstatecursor padding=3 highlight> items </Scrollbar> ; } { thistimer = ; } { ; } { const cursor = thisstate; ifi==cursor return '❯\u00A0'; else return '\u00A0\u00A0'; } const unmount = ;
Props
Scrollbar
show
Type: Number
Default: 1
Amount of items to show. If this is larger or equal to the amount of children given, all the items will be displayed and the scrollbar will not be rendered.
current
Type: Number
Default: 0
The index of the currently selected item. This item will always be visible.
thumbCharacter
Type: string
Default: ┃
This character is used for the thumb of the scrollbar.
padding
Type: Number
Default: 1
Amount of space between the items and the scrollbar.
highlight
Type: Boolean | Object
Default: false
Wether to highlight or not the current item. If an object is passed, it will be passed to the wrapping Text
component as props.
LICENSE
MIT © 2018 George Karagkiaouris