A Listview with a sidebar to directly jump to sections.
This is a form of sunny's react-native-letterlistview with adjustments and some extensions It was rewritten to ES6, I changes the mechanism of scrolling, now it's not needed to add cell and section height. Also it shows all letters and when you select the one where are no items, it scrolls to previous which has some data (It's same as in iOS)
One last addition is that you can pass text and item styles of selectim item on left.
The most basic way to use this component is as follows:
import LetterListView from 'react-native-letterlistview';
// inside your render function
<LetterListView
data={yourData}
cell={YourCellComponent}
/>
You can find a more complete example below
All props are passed through to the underlying ListView
, so you can specify all the available props for ListView
normally - except the following, which are defined internally and will be overwritten:
onScroll
onScrollAnimationEnd
dataSource
renderRow
renderSectionHeader
listView
array|object
, required
The data to render in the listview
boolean
Whether to show the section listing or not. Note: If the data your are providing to
the component is an array, the section list will automatically be hidden.
function
Function to provide titles for the section headers
function
Function to provide titles for the section list items
function
Callback which should be called when a cell has been selected
function
Callback which should be called when the user scrolls to a section
function
required
The cell component to render for each row
function
A custom component to render for each section list item
function
A custom component to render for each section header
function
A custom ListView component
function
A custom component to render as footer
This props takes precedence over renderFooter
function
A custom function which has to return a valid React element, which will be
used as footer.
function
A custom component to render as header
This props takes precedence over renderHeader
function
A custom function which has to return a valid React element, which will be used as header.
object
An object containing additional props, which will be passed to each cell component
boolean
Whether to set the current y offset as state and pass it to each cell during re-rendering
object|number
Styles to pass to the container
object|number
Styles to pass to the section list container
object|number
Styles to pass to the section list item
object|number
Styles to pass to the section list item text
These props are automatically passed to your component. In addition to these, your cell will receive all props which you specified in the object you passed as cellProps
prop to the listview.
number
The index of the cell inside the current section
string
The id of the parent section
mixed
The item to render
function
The function which should be called when a cell is being selected
These props are automatically passed to your component
string
The id of the parent section
string
The title for this section. Either the return value of getSectionListTitle
or the same value as sectionId
class SectionHeader extends Component {
render() {
// inline styles used for brevity, use a stylesheet when possible
var textStyle = {
textAlign:'center',
color:'#fff',
fontWeight:'700',
fontSize:16
};
var viewStyle = {
backgroundColor: '#ccc'
};
return (
<View style={viewStyle}>
<Text style={textStyle}>{this.props.title}</Text>
</View>
);
}
}
class SectionItem extends Component {
render() {
return (
<Text style={{color:'#f00'}}>{this.props.title}</Text>
);
}
}
class Cell extends Component {
render() {
return (
<View style={{height:30}}>
<Text>{this.props.item}</Text>
</View>
);
}
}
class MyComponent extends Component {
constructor(props, context) {
super(props, context);
this.state = {
data: {
A: ['some','entries','are here'],
B: ['some','entries','are here'],
C: ['some','entries','are here'],
D: ['some','entries','are here'],
E: ['some','entries','are here'],
F: ['some','entries','are here'],
G: ['some','entries','are here'],
H: ['some','entries','are here'],
I: ['some','entries','are here'],
J: ['some','entries','are here'],
K: ['some','entries','are here'],
L: ['some','entries','are here'],
M: ['some','entries','are here'],
N: ['some','entries','are here'],
O: ['some','entries','are here'],
P: ['some','entries','are here'],
Q: ['some','entries','are here'],
R: ['some','entries','are here'],
S: ['some','entries','are here'],
T: ['some','entries','are here'],
U: ['some','entries','are here'],
V: ['some','entries','are here'],
X: ['some','entries','are here'],
Y: ['some','entries','are here'],
Z: ['some','entries','are here'],
}
};
}
render() {
return (
<AlphabetListView
data={this.state.data}
cell={Cell}
sectionListItem={SectionItem}
sectionHeader={SectionHeader}
/>
);
}
}