import arrayTreeFilter from 'array-tree-filter'; import React from 'react'; import MultiPicker from '../MultiPicker'; import Picker from '../Picker'; import { CascaderDataItem, CascaderProps } from './CascaderTypes'; class Cascader extends React.Component { static defaultProps = { cols: 3, data: [], disabled: false, }; state = { value: this.getValue( this.props.data, this.props.defaultValue || this.props.value, ), }; componentWillReceiveProps(nextProps: { data: any; value: any }) { if ('value' in nextProps) { this.setState({ value: this.getValue(nextProps.data, nextProps.value), }); } } onValueChange = (value: any, index: any) => { const children = arrayTreeFilter(this.props.data, (c, level) => { return level <= index && c.value === value[level]; }); let data = children[index]; let i; for ( i = index + 1; data && data.children && data.children.length && i < this.props.cols!; i++ ) { data = data.children[0]; value[i] = data.value; } value.length = i; if (!('value' in this.props)) { this.setState({ value, }); } if (this.props.onChange) { this.props.onChange(value); } }; getValue(d: any, val: any) { let data = d || this.props.data; const value = val || this.props.value || this.props.defaultValue; let level = 0; const nextValue = []; if (value && value.length) { do { const index = (data as CascaderDataItem[]).findIndex(item => item.value === value[level]); if (index < 0) { break; } nextValue[level] = value[level]; level += 1; data = data[index].children || []; } while (data.length > 0); } for (let i = level; i < this.props.cols!; i++) { if (data && data.length) { nextValue[i] = data[0].value; data = data[0].children; } else { break; } } return nextValue; } getCols() { const { data, cols, disabled, pickerItemStyle, indicatorStyle, } = this.props; const value = this.state.value; const childrenTree = arrayTreeFilter(data, (c, level) => { return c.value === value[level]; }).map(c => c.children); // in case the users data is async get when select change const needPad = cols! - childrenTree.length; if (needPad > 0) { for (let i = 0; i < needPad; i++) { childrenTree.push([]); } } childrenTree.length = cols! - 1; childrenTree.unshift(data); return childrenTree.map((children: any[] = [], level) => ( {children.map(item => ( {item.label} ))} )); } render() { const props = this.props; const { rootNativeProps, style } = props; const cols = this.getCols(); return ( {cols} ); } } export default Cascader;