|
@@ -6,7 +6,7 @@ import DataSearch from '../DataSearch';
|
|
import SelTable from './SelTable';
|
|
import SelTable from './SelTable';
|
|
import ForSelTable from './ForSelTable';
|
|
import ForSelTable from './ForSelTable';
|
|
|
|
|
|
-const ButtonGroup = ButtonGroup;
|
|
|
|
|
|
+const ButtonGroup = Button.Group;
|
|
|
|
|
|
export default class SelectModal extends PureComponent {
|
|
export default class SelectModal extends PureComponent {
|
|
static propTypes = {
|
|
static propTypes = {
|
|
@@ -33,26 +33,29 @@ export default class SelectModal extends PureComponent {
|
|
this.state = {
|
|
this.state = {
|
|
tableTabLeft: true,
|
|
tableTabLeft: true,
|
|
selTableData: this.props.tableDataSource,
|
|
selTableData: this.props.tableDataSource,
|
|
|
|
+ kv: {},
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
componentWillReceiveProps(nextProps) {
|
|
- this.setState({ selTableData: nextProps.tableDataSource });
|
|
|
|
|
|
+ if (!this.props.visible && nextProps.visible) {
|
|
|
|
+ this.setState({ selTableData: nextProps.tableDataSource, tableTabLeft: true });
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
- handleTableTabChange = () => {
|
|
|
|
|
|
+ handleTabChange = () => {
|
|
const { tableTabLeft } = this.state;
|
|
const { tableTabLeft } = this.state;
|
|
this.setState({ tableTabLeft: !tableTabLeft });
|
|
this.setState({ tableTabLeft: !tableTabLeft });
|
|
}
|
|
}
|
|
|
|
|
|
// 向上调整一个位置
|
|
// 向上调整一个位置
|
|
- handleOnUp = (key) => {
|
|
|
|
|
|
+ handleOnUp = (record) => {
|
|
const { selTableData } = this.state;
|
|
const { selTableData } = this.state;
|
|
const { rowKeyName } = this.props;
|
|
const { rowKeyName } = this.props;
|
|
const arr = cloneDeep(selTableData);
|
|
const arr = cloneDeep(selTableData);
|
|
|
|
|
|
// 找到该行在列表中的索引
|
|
// 找到该行在列表中的索引
|
|
- const index = arr.findIndex(item => item[rowKeyName] === key);
|
|
|
|
|
|
+ const index = arr.findIndex(item => item[rowKeyName] === record[rowKeyName]);
|
|
//第一个元素或者未找到元素不做操作
|
|
//第一个元素或者未找到元素不做操作
|
|
if (!index || -1 === index) return;
|
|
if (!index || -1 === index) return;
|
|
//与前一个元素进行位置互换
|
|
//与前一个元素进行位置互换
|
|
@@ -64,13 +67,13 @@ export default class SelectModal extends PureComponent {
|
|
}
|
|
}
|
|
|
|
|
|
// 向下调整一个位置
|
|
// 向下调整一个位置
|
|
- handleOnDown = (key) => {
|
|
|
|
|
|
+ handleOnDown = (record) => {
|
|
const { selTableData } = this.state;
|
|
const { selTableData } = this.state;
|
|
const { rowKeyName } = this.props;
|
|
const { rowKeyName } = this.props;
|
|
const arr = cloneDeep(selTableData);
|
|
const arr = cloneDeep(selTableData);
|
|
|
|
|
|
// 找到该行在列表中的索引
|
|
// 找到该行在列表中的索引
|
|
- const index = arr.findIndex(item => item[rowKeyName] == key);
|
|
|
|
|
|
+ const index = arr.findIndex(item => item[rowKeyName] == record[rowKeyName]);
|
|
//最后一个元素或者未找到元素不做操作
|
|
//最后一个元素或者未找到元素不做操作
|
|
if (index + 1 === arr.length || -1 === index) return;
|
|
if (index + 1 === arr.length || -1 === index) return;
|
|
//与后一个元素进行位置互换
|
|
//与后一个元素进行位置互换
|
|
@@ -81,12 +84,34 @@ export default class SelectModal extends PureComponent {
|
|
this.setState({ selTableData: arr });
|
|
this.setState({ selTableData: arr });
|
|
}
|
|
}
|
|
|
|
|
|
- handleOnAdd = (id) => {
|
|
|
|
|
|
+ // 从待选列表添加一条数据到已选列表
|
|
|
|
+ handleOnAdd = (record) => {
|
|
|
|
+ const { selTableData } = this.state;
|
|
|
|
+ const arr = cloneDeep(selTableData);
|
|
|
|
+ arr.push(record);
|
|
|
|
+ this.setState({ selTableData: arr });
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ // 从待选列表中删除一条数据
|
|
|
|
+ handleOnDel = (record) => {
|
|
|
|
+ const { selTableData } = this.state;
|
|
|
|
+ const arr = cloneDeep(selTableData);
|
|
|
|
+ const filteredArr = arr.filter(item => item.id !== record.id);
|
|
|
|
+ this.setState({ selTableData: filteredArr });
|
|
}
|
|
}
|
|
|
|
|
|
- handleOnDel = (id) => {
|
|
|
|
|
|
+ // 进行搜索
|
|
|
|
+ handleOnSearch = (kv) => {
|
|
|
|
+ const { onSearch } = this.props;
|
|
|
|
+ this.setState({ field: kv.field, keyword: kv.keyword });
|
|
|
|
+ onSearch(kv);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ // 翻页
|
|
|
|
+ handleOnChange = (pagination, filterArgs) => {
|
|
|
|
+ const { fsTableOnChange } = this.props;
|
|
|
|
+ const { field, keyword } = this.state;
|
|
|
|
+ fsTableOnChange(pagination, filterArgs, { field, keyword });
|
|
}
|
|
}
|
|
|
|
|
|
handleOnCancel = () => {
|
|
handleOnCancel = () => {
|
|
@@ -103,10 +128,11 @@ export default class SelectModal extends PureComponent {
|
|
comboConverter = () => {
|
|
comboConverter = () => {
|
|
const { tableTabLeft, selTableData } = this.state;
|
|
const { tableTabLeft, selTableData } = this.state;
|
|
const {
|
|
const {
|
|
- mode, rowKeyName, searchProps,
|
|
|
|
|
|
+ mode, rowKeyName, searchField, searchKeyWord, searchSize, searchSelect,
|
|
|
|
+ searchSelectProps, searchSelectOptions, onSearch, tableClassName,
|
|
tableColumns, tablePagination, tableDataSource, operSort, operDel,
|
|
tableColumns, tablePagination, tableDataSource, operSort, operDel,
|
|
- fsTableLoading, fsTableColumns, fsTableDataSource, fstablePagination,
|
|
|
|
- onCancel, onOk, ...modalProps
|
|
|
|
|
|
+ fsTableLoading, fsTableColumns, fsTableDataSource, fsTablePagination,
|
|
|
|
+ fsTableOnChange, fsTableClassName, onCancel, onOk, ...modalProps
|
|
} = this.props;
|
|
} = this.props;
|
|
|
|
|
|
switch (mode) {
|
|
switch (mode) {
|
|
@@ -126,30 +152,73 @@ export default class SelectModal extends PureComponent {
|
|
operDel={operDel}
|
|
operDel={operDel}
|
|
onUp={this.handleOnUp}
|
|
onUp={this.handleOnUp}
|
|
onDown={this.handleOnDown}
|
|
onDown={this.handleOnDown}
|
|
|
|
+ onDel={this.handleOnDel}
|
|
|
|
+ />
|
|
|
|
+ </Modal>
|
|
|
|
+ );
|
|
|
|
+ break;
|
|
|
|
+ case 'single':
|
|
|
|
+ return (
|
|
|
|
+ <Modal
|
|
|
|
+ onCancel={this.handleOnCancel}
|
|
|
|
+ onOk={this.handleOnOk}
|
|
|
|
+ {...modalProps}
|
|
|
|
+ >
|
|
|
|
+ <DataSearch {...searchProps} />
|
|
|
|
+ <ForSelTable {...forSelTableProps}/>
|
|
|
|
+ </Modal>
|
|
|
|
+ );
|
|
|
|
+ break;
|
|
|
|
+ case 'multiple':
|
|
|
|
+ return (
|
|
|
|
+ <Modal
|
|
|
|
+ onCancel={this.handleOnCancel}
|
|
|
|
+ onOk={this.handleOnOk}
|
|
|
|
+ {...modalProps}
|
|
|
|
+ >
|
|
|
|
+ <DataSearch
|
|
|
|
+ field={searchField}
|
|
|
|
+ keyword={searchKeyWord}
|
|
|
|
+ size={searchSize}
|
|
|
|
+ select={searchSelect}
|
|
|
|
+ selectProps={searchSelectProps}
|
|
|
|
+ selectOptions={searchSelectOptions}
|
|
|
|
+ onSearch={this.handleOnSearch}
|
|
|
|
+ />
|
|
|
|
+ <ButtonGroup style={{ marginTop: 10, marginBottom: 10 }}>
|
|
|
|
+ <Button type="primary" onClick={this.handleTabChange} ghost={tableTabLeft ? false : true}>待选</Button>
|
|
|
|
+ <Button type="primary" onClick={this.handleTabChange} ghost={tableTabLeft ? true : false}>{`已选[${selTableData.length}]`}</Button>
|
|
|
|
+ </ButtonGroup>
|
|
|
|
+ <ForSelTable
|
|
|
|
+ rowKeyName={rowKeyName}
|
|
|
|
+ className={fsTableClassName}
|
|
|
|
+ dataSource={fsTableDataSource}
|
|
|
|
+ columns={fsTableColumns}
|
|
|
|
+ loading={fsTableLoading}
|
|
|
|
+ pagination={fsTablePagination}
|
|
|
|
+ onChange={this.handleOnChange}
|
|
|
|
+ onAdd={this.handleOnAdd}
|
|
|
|
+ scroll={{ y: 300 }}
|
|
|
|
+ selected={selTableData}
|
|
|
|
+ style={{ display: (tableTabLeft ? "block" : "none") }}
|
|
|
|
+ />
|
|
|
|
+ <SelTable
|
|
|
|
+ dataSource={selTableData}
|
|
|
|
+ columns={tableColumns}
|
|
|
|
+ pagination={tablePagination}
|
|
|
|
+ rowKeyName={rowKeyName}
|
|
|
|
+ className={tableClassName}
|
|
|
|
+ operSort={operSort}
|
|
|
|
+ operDel={operDel}
|
|
|
|
+ onUp={this.handleOnUp}
|
|
|
|
+ onDown={this.handleOnDown}
|
|
|
|
+ onDel={this.handleOnDel}
|
|
|
|
+ scroll={{ y: 300 }}
|
|
|
|
+ style={{ display: (tableTabLeft ? "none" : "block") }}
|
|
/>
|
|
/>
|
|
</Modal>
|
|
</Modal>
|
|
);
|
|
);
|
|
break;
|
|
break;
|
|
- // case 'single':
|
|
|
|
- // return (
|
|
|
|
- // <Modal {...modalProps}>
|
|
|
|
- // <DataSearch {...searchProps} />
|
|
|
|
- // <ForSelTable {...forSelTableProps}/>
|
|
|
|
- // </Modal>
|
|
|
|
- // );
|
|
|
|
- // break;
|
|
|
|
- // case 'multiple':
|
|
|
|
- // return (
|
|
|
|
- // <Modal {...modalProps}>
|
|
|
|
- // <DataSearch />
|
|
|
|
- // <ButtonGroup>
|
|
|
|
- // <Button type="primary" onClick={this.handleTabChange} ghost={tableTabLeft ? false : true}>待选</Button>
|
|
|
|
- // <Button type="primary" onClick={this.handleTabChange} ghost={tableTabLeft ? true : false}>{`已选[]`}</Button>
|
|
|
|
- // </ButtonGroup>
|
|
|
|
- // {tableTabLeft ? <ForSelTable {...forSelTableProps} /> : <SelTable {...selTableProps}/>}
|
|
|
|
- // </Modal>
|
|
|
|
- // );
|
|
|
|
- // break;
|
|
|
|
default:
|
|
default:
|
|
break;
|
|
break;
|
|
}
|
|
}
|