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 SectionList
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const MetroListView = require('MetroListView');
|
2017-03-22 05:19:03 +00:00
|
|
|
const Platform = require('Platform');
|
2017-02-14 00:20:21 +00:00
|
|
|
const React = require('React');
|
|
|
|
const VirtualizedSectionList = require('VirtualizedSectionList');
|
|
|
|
|
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 VirtualizedSectionListProps} from 'VirtualizedSectionList';
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
type Item = any;
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
type SectionBase<SectionItemT> = {
|
2017-02-14 00:20:21 +00:00
|
|
|
// Must be provided directly on each section.
|
2017-02-17 02:59:55 +00:00
|
|
|
data: Array<SectionItemT>,
|
2017-02-14 00:20:21 +00:00
|
|
|
key: string,
|
|
|
|
|
|
|
|
// Optional props will override list-wide props just for this section.
|
2017-03-02 05:13:20 +00:00
|
|
|
renderItem?: ?(info: {item: SectionItemT, index: number}) => ?React.Element<any>,
|
|
|
|
SeparatorComponent?: ?ReactClass<any>,
|
2017-02-17 02:59:55 +00:00
|
|
|
keyExtractor?: (item: SectionItemT) => string,
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
// TODO: support more optional/override props
|
2017-03-22 05:19:03 +00:00
|
|
|
// onViewableItemsChanged?: ...
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
|
|
|
|
2017-03-02 05:13:20 +00:00
|
|
|
type RequiredProps<SectionT: SectionBase<any>> = {
|
2017-02-14 00:20:21 +00:00
|
|
|
sections: Array<SectionT>,
|
|
|
|
};
|
|
|
|
|
2017-03-02 05:13:20 +00:00
|
|
|
type OptionalProps<SectionT: SectionBase<any>> = {
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
2017-02-28 10:09:09 +00:00
|
|
|
* Default renderer for every item in every section. Can be over-ridden on a per-section basis.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
renderItem: (info: {item: Item, index: number}) => ?React.Element<any>,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
2017-02-17 02:59:59 +00:00
|
|
|
* Rendered in between adjacent Items within each section.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
ItemSeparatorComponent?: ?ReactClass<any>,
|
2017-02-14 19:40:47 +00:00
|
|
|
/**
|
2017-02-17 02:59:59 +00:00
|
|
|
* Rendered at the very beginning of the list.
|
2017-02-14 19:40:47 +00:00
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
ListHeaderComponent?: ?ReactClass<any>,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
2017-02-17 02:59:59 +00:00
|
|
|
* Rendered at the very end of the list.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
ListFooterComponent?: ?ReactClass<any>,
|
2017-02-17 02:59:59 +00:00
|
|
|
/**
|
|
|
|
* Rendered at the top of each section. Sticky headers are not yet supported.
|
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
renderSectionHeader?: ?(info: {section: SectionT}) => ?React.Element<any>,
|
2017-02-17 02:59:59 +00:00
|
|
|
/**
|
|
|
|
* Rendered in between each section.
|
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
SectionSeparatorComponent?: ?ReactClass<any>,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
2017-03-02 05:13:20 +00:00
|
|
|
* Used to extract a unique key for a given item at the specified index. Key is used for caching
|
|
|
|
* and as the react key to track item re-ordering. The default extractor checks item.key, then
|
|
|
|
* falls back to using the index, like react does.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-02-17 02:59:55 +00:00
|
|
|
keyExtractor: (item: Item, index: number) => string,
|
2017-03-02 05:13:20 +00:00
|
|
|
onEndReached?: ?(info: {distanceFromEnd: number}) => void,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
|
|
|
* If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality. Make
|
|
|
|
* sure to also set the `refreshing` prop correctly.
|
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
onRefresh?: ?() => void,
|
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-14 00:20:21 +00:00
|
|
|
*/
|
2017-03-22 05:19:03 +00:00
|
|
|
onViewableItemsChanged?: ?(info: {
|
|
|
|
viewableItems: Array<ViewToken>,
|
|
|
|
changed: Array<ViewToken>,
|
|
|
|
}) => void,
|
2017-02-14 00:20:21 +00:00
|
|
|
/**
|
|
|
|
* Set this true while waiting for new data from a refresh.
|
|
|
|
*/
|
2017-02-17 02:59:55 +00:00
|
|
|
refreshing?: ?boolean,
|
2017-03-22 05:19:03 +00:00
|
|
|
/**
|
|
|
|
* Makes section headers stick to the top of the screen until the next one pushes it off. Only
|
|
|
|
* enabled by default on iOS because that is the platform standard there.
|
|
|
|
*/
|
|
|
|
stickySectionHeadersEnabled?: boolean,
|
2017-02-14 00:20:21 +00:00
|
|
|
};
|
|
|
|
|
2017-02-17 02:59:55 +00:00
|
|
|
type Props<SectionT> = RequiredProps<SectionT>
|
|
|
|
& OptionalProps<SectionT>
|
|
|
|
& VirtualizedSectionListProps<SectionT>;
|
|
|
|
|
2017-03-22 05:19:03 +00:00
|
|
|
const defaultProps = {
|
|
|
|
...VirtualizedSectionList.defaultProps,
|
|
|
|
stickySectionHeadersEnabled: Platform.OS === 'ios',
|
|
|
|
};
|
|
|
|
|
|
|
|
type DefaultProps = typeof defaultProps;
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A performant interface for rendering sectioned lists, supporting the most handy features:
|
|
|
|
*
|
|
|
|
* - Fully cross-platform.
|
2017-03-02 05:13:20 +00:00
|
|
|
* - Configurable viewability callbacks.
|
|
|
|
* - List header support.
|
|
|
|
* - List footer support.
|
|
|
|
* - Item separator support.
|
|
|
|
* - Section header support.
|
|
|
|
* - Section separator support.
|
|
|
|
* - Heterogeneous data and item rendering support.
|
2017-02-14 00:20:21 +00:00
|
|
|
* - Pull to Refresh.
|
2017-03-02 05:13:20 +00:00
|
|
|
* - Scroll loading.
|
2017-02-14 00:20:21 +00:00
|
|
|
*
|
2017-03-22 05:19:03 +00:00
|
|
|
* If you don't need section support and want a simpler interface, use
|
|
|
|
* [`<FlatList>`](/react-native/docs/flatlist.html).
|
2017-03-02 05:13:20 +00:00
|
|
|
*
|
|
|
|
* If you need _sticky_ section header support, use `ListView` for now.
|
|
|
|
*
|
|
|
|
* Simple Examples:
|
|
|
|
*
|
|
|
|
* <SectionList
|
|
|
|
* renderItem={({item}) => <ListItem title={item.title}}
|
|
|
|
* renderSectionHeader={({section}) => <H1 title={section.key} />}
|
|
|
|
* sections={[ // homogenous rendering between sections
|
|
|
|
* {data: [...], key: ...},
|
|
|
|
* {data: [...], key: ...},
|
|
|
|
* {data: [...], key: ...},
|
|
|
|
* ]}
|
|
|
|
* />
|
|
|
|
*
|
|
|
|
* <SectionList
|
|
|
|
* sections={[ // heterogeneous rendering between sections
|
|
|
|
* {data: [...], key: ..., renderItem: ...},
|
|
|
|
* {data: [...], key: ..., renderItem: ...},
|
|
|
|
* {data: [...], key: ..., renderItem: ...},
|
|
|
|
* ]}
|
|
|
|
* />
|
|
|
|
*
|
|
|
|
* This is a convenience wrapper around [`<VirtualizedList>`](/react-native/docs/virtualizedlist.html),
|
|
|
|
* and thus inherits the following caveats:
|
|
|
|
*
|
|
|
|
* - Internal state is not preserved when content scrolls out of the render window. Make sure all
|
|
|
|
* your data is captured in the item data or external stores like Flux, Redux, or Relay.
|
2017-03-07 03:20:20 +00:00
|
|
|
* - This is a `PureComponent` which means that it will not re-render if `props` remain shallow-
|
|
|
|
* equal. Make sure that everything your `renderItem` function depends on is passed as a prop that
|
|
|
|
* is not `===` after updates, otherwise your UI may not update on changes. This includes the
|
|
|
|
* `data` prop and parent component state.
|
2017-03-02 05:13:20 +00:00
|
|
|
* - In order to constrain memory and enable smooth scrolling, content is rendered asynchronously
|
|
|
|
* offscreen. This means it's possible to scroll faster than the fill rate ands momentarily see
|
|
|
|
* blank content. This is a tradeoff that can be adjusted to suit the needs of each application,
|
|
|
|
* and we are working on improving it behind the scenes.
|
|
|
|
* - By default, the list looks for a `key` prop on each item and uses that for the React key.
|
2017-03-07 03:20:20 +00:00
|
|
|
* Alternatively, you can provide a custom `keyExtractor` prop.
|
2017-02-14 00:20:21 +00:00
|
|
|
*/
|
2017-03-02 05:13:20 +00:00
|
|
|
class SectionList<SectionT: SectionBase<any>>
|
|
|
|
extends React.PureComponent<DefaultProps, Props<SectionT>, void>
|
2017-02-17 02:59:55 +00:00
|
|
|
{
|
2017-02-14 00:20:21 +00:00
|
|
|
props: Props<SectionT>;
|
2017-03-22 05:19:03 +00:00
|
|
|
static defaultProps: DefaultProps = defaultProps;
|
2017-02-14 00:20:21 +00:00
|
|
|
|
|
|
|
render() {
|
2017-02-17 02:59:59 +00:00
|
|
|
const List = this.props.legacyImplementation ? MetroListView : VirtualizedSectionList;
|
2017-03-13 16:41:30 +00:00
|
|
|
return <List {...this.props} />;
|
2017-02-14 00:20:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = SectionList;
|