mirror of
https://github.com/zhigang1992/react-native-super-grid.git
synced 2026-01-12 22:50:58 +08:00
Added a new class that makes a Grid SectionView
Some testing needed, but I essentially just removed the hroizontal option from the code, replaced the FlatList witht he SectionList and added the renderSectionHeader prop.
This commit is contained in:
151
SuperGridSectionList.js
Normal file
151
SuperGridSectionList.js
Normal file
@@ -0,0 +1,151 @@
|
||||
/* eslint react/no-array-index-key: 0 */
|
||||
import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { View, Dimensions, ViewPropTypes, SectionList } from 'react-native';
|
||||
import { chunkArray } from './utils';
|
||||
|
||||
class SuperGridSectionList extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.renderRow = this.renderRow.bind(this);
|
||||
this.onLayout = this.onLayout.bind(this);
|
||||
this.getDimensions = this.getDimensions.bind(this);
|
||||
this.state = this.getDimensions();
|
||||
}
|
||||
|
||||
componentWillReceiveProps(nextProps) {
|
||||
if (nextProps.itemDimension !== this.props.itemDimension) {
|
||||
this.setState({
|
||||
...this.getDimensions(this.state.totalDimension, nextProps.itemDimension),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
onLayout(e) {
|
||||
const { staticDimension } = this.props;
|
||||
if (!staticDimension) {
|
||||
const { width, height } = e.nativeEvent.layout || {};
|
||||
|
||||
this.setState({
|
||||
...this.getDimensions(width),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
getDimensions(lvDimension, itemDim) {
|
||||
const { itemWidth, spacing, fixed, staticDimension } = this.props;
|
||||
let itemDimension = itemDim || this.props.itemDimension;
|
||||
if (itemWidth) {
|
||||
itemDimension = itemWidth;
|
||||
console.warn('React Native Super Grid - property "itemWidth" is depreciated. Use "itemDimension" instead.');
|
||||
}
|
||||
|
||||
const dimension = 'width';
|
||||
const totalDimension = lvDimension || staticDimension || Dimensions.get('window')[dimension];
|
||||
const itemTotalDimension = itemDimension + spacing;
|
||||
const availableDimension = totalDimension - spacing; // One spacing extra
|
||||
const itemsPerRow = Math.floor(availableDimension / itemTotalDimension);
|
||||
const containerDimension = availableDimension / itemsPerRow;
|
||||
|
||||
return {
|
||||
totalDimension,
|
||||
itemDimension,
|
||||
spacing,
|
||||
itemsPerRow,
|
||||
containerDimension,
|
||||
fixed,
|
||||
};
|
||||
}
|
||||
|
||||
renderHorizontalRow(data) {
|
||||
const { itemDimension, containerDimension, spacing, fixed } = this.state;
|
||||
const rowStyle = {
|
||||
flexDirection: 'row',
|
||||
paddingLeft: spacing,
|
||||
paddingBottom: spacing,
|
||||
};
|
||||
if (data.isLast) {
|
||||
rowStyle.marginBottom = spacing;
|
||||
}
|
||||
const itemContainerStyle = {
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'center',
|
||||
width: containerDimension,
|
||||
paddingRight: spacing,
|
||||
};
|
||||
let itemStyle = {};
|
||||
if (fixed) {
|
||||
itemStyle = {
|
||||
width: itemDimension,
|
||||
alignSelf: 'center',
|
||||
};
|
||||
}
|
||||
|
||||
return (
|
||||
<View style={rowStyle}>
|
||||
{(data || []).map((item, i) => (
|
||||
<View key={`${data.key}_${i}`} style={itemContainerStyle}>
|
||||
<View style={itemStyle}>
|
||||
{this.props.renderItem(item, i)}
|
||||
</View>
|
||||
</View>
|
||||
))}
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
||||
renderRow({ item }) { // item is array of items which go in one row
|
||||
return this.renderHorizontalRow(item);
|
||||
}
|
||||
|
||||
render() {
|
||||
const { items, style, spacing, fixed, itemDimension, renderItem, renderSectionHeader, ...props } = this.props;
|
||||
const { itemsPerRow } = this.state;
|
||||
|
||||
const chunked = chunkArray(items, itemsPerRow);
|
||||
const rows = chunked.map((r, i) => {
|
||||
const keydRow = [...r];
|
||||
keydRow.key = `row_${i}`;
|
||||
keydRow.isLast = (chunked.length - 1 === i);
|
||||
return keydRow;
|
||||
});
|
||||
|
||||
return (
|
||||
<SectionList
|
||||
data={rows}
|
||||
renderSectionHeader = {renderSectionHeader}
|
||||
renderItem={this.renderRow}
|
||||
style={[
|
||||
{paddingTop: spacing },
|
||||
style,
|
||||
]}
|
||||
onLayout={this.onLayout}
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
SuperGrid.propTypes = {
|
||||
renderItem: PropTypes.func.isRequired,
|
||||
items: PropTypes.arrayOf(PropTypes.any).isRequired,
|
||||
itemDimension: PropTypes.number,
|
||||
itemWidth: PropTypes.number, // for backward compatibility
|
||||
fixed: PropTypes.bool,
|
||||
spacing: PropTypes.number,
|
||||
style: ViewPropTypes.style,
|
||||
staticDimension: PropTypes.number,
|
||||
horizontal: PropTypes.bool,
|
||||
};
|
||||
|
||||
SuperGrid.defaultProps = {
|
||||
fixed: false,
|
||||
itemDimension: 120,
|
||||
itemWidth: null,
|
||||
spacing: 10,
|
||||
style: {},
|
||||
staticDimension: undefined,
|
||||
horizontal: false,
|
||||
};
|
||||
|
||||
export default SuperGridSectionList;
|
||||
2
index.js
2
index.js
@@ -3,6 +3,7 @@ import React, { Component } from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import { View, Dimensions, ViewPropTypes, FlatList } from 'react-native';
|
||||
import { chunkArray } from './utils';
|
||||
import SuperGridSectionList from './GridSectionList'
|
||||
|
||||
class SuperGrid extends Component {
|
||||
constructor(props) {
|
||||
@@ -191,3 +192,4 @@ SuperGrid.defaultProps = {
|
||||
};
|
||||
|
||||
export default SuperGrid;
|
||||
export {SuperGridSectionList};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-native-super-grid",
|
||||
"version": "2.1.0",
|
||||
"version": "2.2.0",
|
||||
"description": "Responsive Grid View for React Native",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
|
||||
Reference in New Issue
Block a user