Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 24 additions & 17 deletions app/react-native/src/preview/components/StoryListView/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { Component, PropTypes } from 'react';
import { SectionList, View, Text, TouchableOpacity } from 'react-native';
import { ListView, View, Text, TouchableOpacity } from 'react-native';
import style from './style';

const SectionHeader = ({ title, selected }) =>
Expand Down Expand Up @@ -30,8 +30,14 @@ ListItem.propTypes = {
export default class StoryListView extends Component {
constructor(props, ...args) {
super(props, ...args);

const ds = new ListView.DataSource({
rowHasChanged: (r1, r2) => r1 !== r2,
sectionHeaderHasChanged: (s1, s2) => s1 !== s2,
});

this.state = {
sections: [],
dataSource: ds.cloneWithRowsAndSections({}),
};

this.storyAddedHandler = this.handleStoryAdded.bind(this);
Expand All @@ -56,16 +62,20 @@ export default class StoryListView extends Component {
handleStoryAdded() {
if (this.props.stories) {
const data = this.props.stories.dumpStoryBook();
this.setState({
sections: data.map(section => ({
key: section.kind,
title: section.kind,
data: section.stories.map(story => ({

const sections = data.reduce(
(map, section) => ({
...map,
[section.kind]: section.stories.map(story => ({
key: story,
kind: section.kind,
name: story,
kind: section.kind,
})),
})),
}),
{}
);
this.setState({
dataSource: this.state.dataSource.cloneWithRowsAndSections(sections),
});
}
}
Expand All @@ -76,22 +86,19 @@ export default class StoryListView extends Component {

render() {
return (
<SectionList
<ListView
style={style.list}
renderItem={({ item }) =>
renderRow={item =>
<ListItem
title={item.name}
selected={
item.kind === this.props.selectedKind && item.name === this.props.selectedStory
}
onPress={() => this.changeStory(item.kind, item.name)}
/>}
renderSectionHeader={({ section }) =>
<SectionHeader
title={section.title}
selected={section.title === this.props.selectedKind}
/>}
sections={this.state.sections}
renderSectionHeader={(sectionData, sectionName) =>
<SectionHeader title={sectionName} selected={sectionName === this.props.selectedKind} />}
dataSource={this.state.dataSource}
stickySectionHeadersEnabled={false}
/>
);
Expand Down