2017-02-14 00:20:21 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* Facebook, Inc. ("Facebook") owns all right, title and interest, including
|
|
|
|
* all intellectual property and other proprietary rights, in and to the React
|
|
|
|
* Native CustomComponents software (the "Software"). Subject to your
|
|
|
|
* compliance with these terms, you are hereby granted a non-exclusive,
|
|
|
|
* worldwide, royalty-free copyright license to (1) use and copy the Software;
|
|
|
|
* and (2) reproduce and distribute the Software as part of your own software
|
|
|
|
* ("Your Software"). Facebook reserves all rights not expressly granted to
|
|
|
|
* you in this license agreement.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE AND DOCUMENTATION, IF ANY, ARE PROVIDED "AS IS" AND ANY EXPRESS
|
|
|
|
* OR IMPLIED WARRANTIES (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL FACEBOOK OR ITS AFFILIATES, OFFICERS, DIRECTORS OR
|
|
|
|
* EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE, EVEN IF
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* @providesModule VirtualizedSectionList
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const React = require('React');
|
|
|
|
const View = require('View');
|
|
|
|
const VirtualizedList = require('VirtualizedList');
|
|
|
|
|
2017-03-02 01:52:52 +00:00
|
|
|
const invariant = require('fbjs/lib/invariant');
|
|
|
|
const warning = require('fbjs/lib/warning');
|
2017-02-14 00:20:21 +00:00
|
|
|
|
2017-02-28 10:08:58 +00:00
|
|
|
import type {ViewToken} from 'ViewabilityHelper';
|
2017-02-17 02:59:55 +00:00
|
|
|
import type {Props as VirtualizedListProps} from 'VirtualizedList';
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
type Item = any;
|
|
|
|
type SectionItem = any;
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
type SectionBase = {
|
2017-02-14 00:20:21 +00:00
|
|
|
// Must be provided directly on each section.
|
2017-02-14 19:40:47 +00:00
|
|
|
data: Array<SectionItem>,
|
2017-02-14 00:20:21 +00:00
|
|
|
key: string,
|
|
|
|
|
|
|
|
// Optional props will override list-wide props just for this section.
|
2017-02-28 10:09:09 +00:00
|
|
|
renderItem?: ?({item: SectionItem, index: number}) => ?React.Element<*>,
|
2017-02-14 00:20:21 +00:00
|
|
|
SeparatorComponent?: ?ReactClass<*>,
|
|
|
|
keyExtractor?: (item: SectionItem) => string,
|
|
|
|
|
|
|
|
// TODO: support more optional/override props
|
|
|
|
// FooterComponent?: ?ReactClass<*>,
|
|
|
|
// HeaderComponent?: ?ReactClass<*>,
|
2017-02-28 10:08:58 +00:00
|
|
|
// onViewableItemsChanged?: ({viewableItems: Array<ViewToken>, changed: Array<ViewToken>}) => void,
|
2017-02-17 02:59:55 +00:00
|
|
|
};
|
2017-02-14 00:20:21 +00:00
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
type RequiredProps<SectionT: SectionBase> = {
|
|
|
|
sections: Array<SectionT>,
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
2017-02-17 02:59:55 +00:00
|
|
|
|
|
|
|
type OptionalProps<SectionT: SectionBase> = {
|
|
|
|
/**
|
|
|
|
* Rendered after the last item in the last section.
|
|
|
|
*/
|
2017-02-28 10:09:09 +00:00
|
|
|
ListFooterComponent?: ?ReactClass<*>,
|
|
|
|
/**
|
|
|
|
* Rendered at the very beginning of the list.
|
|
|
|
*/
|
|
|
|
ListHeaderComponent?: ?ReactClass<*>,
|
2017-02-17 02:59:55 +00:00
|
|
|
/**
|
|
|
|
* Default renderer for every item in every section.
|
|
|
|
*/
|
2017-02-28 10:09:09 +00:00
|
|
|
renderItem: ({item: Item, index: number}) => ?React.Element<*>,
|
2017-02-17 02:59:55 +00:00
|
|
|
/**
|
|
|
|
* Rendered at the top of each section. In the future, a sticky option will be added.
|
|
|
|
*/
|
2017-02-28 10:09:09 +00:00
|
|
|
renderSectionHeader?: ?({section: SectionT}) => ?React.Element<*>,
|
2017-02-17 02:59:55 +00:00
|
|
|
/**
|
|
|
|
* Rendered at the bottom of every Section, except the very last one, in place of the normal
|
|
|
|
* SeparatorComponent.
|
|
|
|
*/
|
2017-02-14 19:40:47 +00:00
|
|
|
SectionSeparatorComponent?: ?ReactClass<*>,
|
2017-02-17 02:59:55 +00:00
|
|
|
/**
|
|
|
|
* Rendered at the bottom of every Item except the very last one in the last section.
|
|
|
|
*/
|
2017-02-28 10:09:09 +00:00
|
|
|
ItemSeparatorComponent?: ?ReactClass<*>,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
|
|
|
* Warning: Virtualization can drastically improve memory consumption for long lists, but trashes
|
|
|
|
* the state of items when they scroll out of the render window, so make sure all relavent data is
|
2017-02-28 10:09:09 +00:00
|
|
|
* stored outside of the recursive `renderItem` instance tree.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
|
|
|
enableVirtualization?: ?boolean,
|
2017-02-17 02:59:55 +00:00
|
|
|
keyExtractor: (item: Item, index: number) => string,
|
|
|
|
onEndReached?: ?({distanceFromEnd: number}) => void,
|
|
|
|
/**
|
|
|
|
* If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality. Make
|
|
|
|
* sure to also set the `refreshing` prop correctly.
|
|
|
|
*/
|
|
|
|
onRefresh?: ?Function,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
|
|
|
* Called when the viewability of rows changes, as defined by the
|
2017-02-28 10:09:06 +00:00
|
|
|
* `viewabilityConfig` prop.
|
2017-02-17 02:59:55 +00:00
|
|
|
*/
|
2017-02-28 10:08:58 +00:00
|
|
|
onViewableItemsChanged?: ?({viewableItems: Array<ViewToken>, changed: Array<ViewToken>}) => void,
|
2017-02-17 02:59:55 +00:00
|
|
|
/**
|
|
|
|
* Set this true while waiting for new data from a refresh.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-02-17 02:59:55 +00:00
|
|
|
refreshing?: ?boolean,
|
|
|
|
/**
|
|
|
|
* This is an optional optimization to minimize re-rendering items.
|
|
|
|
*/
|
|
|
|
shouldItemUpdate: (
|
|
|
|
prevProps: {item: Item, index: number},
|
|
|
|
nextProps: {item: Item, index: number}
|
|
|
|
) => boolean,
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
2017-02-17 02:59:55 +00:00
|
|
|
|
|
|
|
export type Props<SectionT> =
|
|
|
|
RequiredProps<SectionT> &
|
|
|
|
OptionalProps<SectionT> &
|
|
|
|
VirtualizedListProps;
|
|
|
|
|
|
|
|
type DefaultProps = (typeof VirtualizedList.defaultProps) & {data: Array<Item>};
|
|
|
|
type State = {childProps: VirtualizedListProps};
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Right now this just flattens everything into one list and uses VirtualizedList under the
|
|
|
|
* hood. The only operation that might not scale well is concatting the data arrays of all the
|
|
|
|
* sections when new props are received, which should be plenty fast for up to ~10,000 items.
|
|
|
|
*/
|
2017-02-17 02:59:55 +00:00
|
|
|
class VirtualizedSectionList<SectionT: SectionBase>
|
|
|
|
extends React.PureComponent<DefaultProps, Props<SectionT>, State>
|
|
|
|
{
|
|
|
|
props: Props<SectionT>;
|
2017-02-14 00:20:21 +00:00
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
state: State;
|
2017-02-14 00:20:21 +00:00
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
static defaultProps: DefaultProps = {
|
|
|
|
...VirtualizedList.defaultProps,
|
|
|
|
data: [],
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_keyExtractor = (item: Item, index: number) => {
|
2017-02-14 19:40:47 +00:00
|
|
|
const info = this._subExtractor(index);
|
2017-02-17 02:59:55 +00:00
|
|
|
return (info && info.key) || String(index);
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_subExtractor(
|
|
|
|
index: number,
|
|
|
|
): ?{
|
2017-02-17 02:59:55 +00:00
|
|
|
section: SectionT,
|
2017-02-14 00:20:21 +00:00
|
|
|
key: string, // Key of the section or combined key for section + item
|
|
|
|
index: ?number, // Relative index within the section
|
|
|
|
} {
|
|
|
|
let itemIndex = index;
|
|
|
|
const defaultKeyExtractor = this.props.keyExtractor;
|
|
|
|
for (let ii = 0; ii < this.props.sections.length; ii++) {
|
|
|
|
const section = this.props.sections[ii];
|
2017-02-17 02:59:59 +00:00
|
|
|
const key = section.key;
|
|
|
|
warning(
|
|
|
|
key != null,
|
|
|
|
'VirtualizedSectionList: A `section` you supplied is missing the `key` property.'
|
|
|
|
);
|
2017-02-14 00:20:21 +00:00
|
|
|
itemIndex -= 1; // The section itself is an item
|
|
|
|
if (itemIndex >= section.data.length) {
|
|
|
|
itemIndex -= section.data.length;
|
|
|
|
} else if (itemIndex === -1) {
|
|
|
|
return {section, key, index: null};
|
|
|
|
} else {
|
2017-02-17 02:59:59 +00:00
|
|
|
const keyExtractor = section.keyExtractor || defaultKeyExtractor;
|
2017-02-14 00:20:21 +00:00
|
|
|
return {
|
|
|
|
section,
|
|
|
|
key: key + ':' + keyExtractor(section.data[itemIndex], itemIndex),
|
|
|
|
index: itemIndex,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-28 10:08:58 +00:00
|
|
|
_convertViewable = (viewable: ViewToken): ?ViewToken => {
|
|
|
|
invariant(viewable.index != null, 'Received a broken ViewToken');
|
2017-02-14 19:40:47 +00:00
|
|
|
const info = this._subExtractor(viewable.index);
|
2017-02-14 00:20:21 +00:00
|
|
|
if (!info) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const keyExtractor = info.section.keyExtractor || this.props.keyExtractor;
|
|
|
|
return {
|
|
|
|
...viewable,
|
|
|
|
index: info.index,
|
|
|
|
key: keyExtractor(viewable.item, info.index),
|
|
|
|
section: info.section,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
_onViewableItemsChanged = (
|
2017-02-28 10:08:58 +00:00
|
|
|
{viewableItems, changed}: {viewableItems: Array<ViewToken>, changed: Array<ViewToken>}
|
2017-02-14 00:20:21 +00:00
|
|
|
) => {
|
|
|
|
if (this.props.onViewableItemsChanged) {
|
|
|
|
this.props.onViewableItemsChanged({
|
|
|
|
viewableItems: viewableItems.map(this._convertViewable, this).filter(Boolean),
|
|
|
|
changed: changed.map(this._convertViewable, this).filter(Boolean),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_isItemSticky = (item, index) => {
|
2017-02-14 19:40:47 +00:00
|
|
|
const info = this._subExtractor(index);
|
2017-02-14 00:20:21 +00:00
|
|
|
return info && info.index == null;
|
|
|
|
};
|
|
|
|
|
|
|
|
_renderItem = ({item, index}: {item: Item, index: number}) => {
|
2017-02-14 19:40:47 +00:00
|
|
|
const info = this._subExtractor(index);
|
2017-02-14 00:20:21 +00:00
|
|
|
if (!info) {
|
|
|
|
return null;
|
|
|
|
} else if (info.index == null) {
|
2017-02-28 10:09:09 +00:00
|
|
|
const {renderSectionHeader} = this.props;
|
|
|
|
return renderSectionHeader ? renderSectionHeader({section: info.section}) : null;
|
2017-02-14 00:20:21 +00:00
|
|
|
} else {
|
2017-02-28 10:09:09 +00:00
|
|
|
const renderItem = info.section.renderItem ||
|
|
|
|
this.props.renderItem;
|
2017-02-17 02:59:57 +00:00
|
|
|
const SeparatorComponent = this._getSeparatorComponent(index, info);
|
2017-02-28 10:09:09 +00:00
|
|
|
invariant(renderItem, 'no renderItem!');
|
2017-02-14 00:20:21 +00:00
|
|
|
return (
|
|
|
|
<View>
|
2017-02-28 10:09:09 +00:00
|
|
|
{renderItem({item, index: info.index || 0})}
|
2017-02-17 02:59:57 +00:00
|
|
|
{SeparatorComponent && <SeparatorComponent />}
|
2017-02-14 00:20:21 +00:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-02-17 02:59:57 +00:00
|
|
|
_getSeparatorComponent(index: number, info?: ?Object): ?ReactClass<*> {
|
2017-02-14 19:40:47 +00:00
|
|
|
info = info || this._subExtractor(index);
|
|
|
|
if (!info) {
|
2017-02-17 02:59:57 +00:00
|
|
|
return null;
|
2017-02-14 19:40:47 +00:00
|
|
|
}
|
2017-02-28 10:09:09 +00:00
|
|
|
const SeparatorComponent = info.section.SeparatorComponent || this.props.ItemSeparatorComponent;
|
2017-02-14 19:40:47 +00:00
|
|
|
const {SectionSeparatorComponent} = this.props;
|
2017-02-17 02:59:59 +00:00
|
|
|
const isLastItemInList = index === this.state.childProps.getItemCount() - 1;
|
|
|
|
const isLastItemInSection = info.index === info.section.data.length - 1;
|
|
|
|
if (SectionSeparatorComponent && isLastItemInSection && !isLastItemInList) {
|
2017-02-17 02:59:57 +00:00
|
|
|
return SectionSeparatorComponent;
|
|
|
|
}
|
2017-02-17 02:59:59 +00:00
|
|
|
if (SeparatorComponent && !isLastItemInSection && !isLastItemInList) {
|
2017-02-17 02:59:57 +00:00
|
|
|
return SeparatorComponent;
|
2017-02-14 19:40:47 +00:00
|
|
|
}
|
2017-02-17 02:59:57 +00:00
|
|
|
return null;
|
2017-02-14 19:40:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_shouldItemUpdate = (prev, next) => {
|
|
|
|
const {shouldItemUpdate} = this.props;
|
|
|
|
if (!shouldItemUpdate || shouldItemUpdate(prev, next)) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-02-17 02:59:57 +00:00
|
|
|
return this._getSeparatorComponent(prev.index) !== this._getSeparatorComponent(next.index);
|
2017-02-14 19:40:47 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
_computeState(props: Props<SectionT>): State {
|
2017-02-14 00:20:21 +00:00
|
|
|
const itemCount = props.sections.reduce((v, section) => v + section.data.length + 1, 0);
|
|
|
|
return {
|
|
|
|
childProps: {
|
|
|
|
...props,
|
2017-02-28 10:09:09 +00:00
|
|
|
FooterComponent: this.props.ListFooterComponent,
|
|
|
|
HeaderComponent: this.props.ListHeaderComponent,
|
|
|
|
renderItem: this._renderItem,
|
|
|
|
SeparatorComponent: undefined, // Rendered with renderItem
|
2017-02-14 00:20:21 +00:00
|
|
|
data: props.sections,
|
|
|
|
getItemCount: () => itemCount,
|
|
|
|
getItem,
|
|
|
|
isItemSticky: this._isItemSticky,
|
|
|
|
keyExtractor: this._keyExtractor,
|
|
|
|
onViewableItemsChanged:
|
|
|
|
props.onViewableItemsChanged ? this._onViewableItemsChanged : undefined,
|
2017-02-14 19:40:47 +00:00
|
|
|
shouldItemUpdate: this._shouldItemUpdate,
|
2017-02-14 00:20:21 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
constructor(props: Props<SectionT>, context: Object) {
|
2017-02-14 00:20:21 +00:00
|
|
|
super(props, context);
|
|
|
|
warning(
|
|
|
|
!props.stickySectionHeadersEnabled,
|
|
|
|
'VirtualizedSectionList: Sticky headers only supported with legacyImplementation for now.'
|
|
|
|
);
|
|
|
|
this.state = this._computeState(props);
|
|
|
|
}
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
componentWillReceiveProps(nextProps: Props<SectionT>) {
|
2017-02-14 00:20:21 +00:00
|
|
|
this.setState(this._computeState(nextProps));
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return <VirtualizedList {...this.state.childProps} />;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getItem(sections: ?Array<Item>, index: number): ?Item {
|
|
|
|
if (!sections) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
let itemIdx = index - 1;
|
|
|
|
for (let ii = 0; ii < sections.length; ii++) {
|
|
|
|
if (itemIdx === -1) {
|
|
|
|
return sections[ii]; // The section itself is the item
|
|
|
|
} else if (itemIdx < sections[ii].data.length) {
|
|
|
|
return sections[ii].data[itemIdx];
|
|
|
|
} else {
|
|
|
|
itemIdx -= (sections[ii].data.length + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = VirtualizedSectionList;
|