| | |
| | | import React, {Component} from 'react' |
| | | import PropTypes from 'prop-types' |
| | | import { is, fromJS } from 'immutable' |
| | | import { Spin, Empty, notification, Input, Tree, Icon } from 'antd' |
| | | import { Spin, Empty, notification, Input, Tree } from 'antd' |
| | | import { FolderOpenOutlined, FolderOutlined, FileOutlined } from '@ant-design/icons' |
| | | import moment from 'moment' |
| | | |
| | | import Api from '@/api' |
| | |
| | | treeNodes: null, // 列表数据集 |
| | | expandedKeys: [], // 展开的树节点 |
| | | selectedKeys: [], // 选中的树节点 |
| | | selected: false // 选中首行 |
| | | } |
| | | |
| | | UNSAFE_componentWillMount () { |
| | |
| | | _config.wrap.contentHeight = config.wrap.title || config.wrap.searchable === 'true' ? 'calc(100% - 45px)' : '100%' |
| | | |
| | | this.setState({ |
| | | selected: _config.wrap.selected === 'true', |
| | | config: _config, |
| | | data: _data, |
| | | BID: BID || '', |
| | |
| | | sync: _sync |
| | | }, () => { |
| | | if (config.setting.sync !== 'true' && config.setting.onload === 'true') { |
| | | this.loadData(null, 'init') |
| | | setTimeout(() => { |
| | | this.loadData(null) |
| | | }, config.setting.delay || 0) |
| | | } else if (config.setting.sync === 'true' && _data) { |
| | | this.handleData('init') |
| | | this.handleData() |
| | | } |
| | | }) |
| | | } |
| | |
| | | } |
| | | |
| | | this.setState({sync: false, data: _data}, () => { |
| | | this.handleData('init') |
| | | this.handleData() |
| | | }) |
| | | } else if (config.setting.syncRefresh && nextProps.mainSearch && !is(fromJS(this.props.mainSearch), fromJS(nextProps.mainSearch))) { |
| | | this.setState({}, () => { |
| | |
| | | /** |
| | | * @description 数据加载 |
| | | */ |
| | | async loadData (hastimer, type) { |
| | | async loadData (hastimer) { |
| | | const { mainSearch, menuType } = this.props |
| | | const { config, arr_field, BID } = this.state |
| | | |
| | |
| | | data: result.data, |
| | | loading: false |
| | | }, () => { |
| | | this.handleData(type) |
| | | this.handleData() |
| | | }) |
| | | } else { |
| | | this.setState({ |
| | |
| | | } |
| | | } |
| | | |
| | | handleData = (type) => { |
| | | const { data, searchkey, config } = this.state |
| | | handleData = () => { |
| | | const { data, searchkey, config, selectedKeys, selected } = this.state |
| | | if (!data || data.length === 0) { |
| | | this.setState({ |
| | | selectedKeys: [], |
| | | expandedKeys: [], |
| | | treedata: [], |
| | | treeNodes: [], |
| | | }) |
| | | |
| | | MKEmitter.emit('resetSelectLine', config.uuid, '', '') |
| | | return |
| | | } |
| | | let parentNodes = [] |
| | | let _options = [] |
| | | let logMap = new Map() |
| | | let selectKey = selectedKeys[0] || '' |
| | | let selectData = '' |
| | | let hasSelectKey = false |
| | | |
| | | data.forEach(item => { |
| | | let pval = item[config.wrap.parentField] |
| | | let val = item[config.wrap.valueField] |
| | | |
| | | if (!val || logMap.has(val)) return |
| | | |
| | | if (selectKey && selectKey === val) { |
| | | hasSelectKey = true |
| | | selectData = { |
| | | ...item, |
| | | $title: item[config.wrap.labelField] || '', |
| | | $key: val, |
| | | $parentId: '' |
| | | } |
| | | } |
| | | |
| | | logMap.set(val, true) |
| | | if (pval === config.wrap.mark) { |
| | |
| | | treeNodes: _treeNodes, |
| | | }) |
| | | |
| | | if (type === 'init' && _treeNodes[0] && config.wrap.selected === 'true') { |
| | | if (selected && !hasSelectKey && _treeNodes[0]) { |
| | | this.setState({ |
| | | selectedKeys: [_treeNodes[0].$key] |
| | | }) |
| | | |
| | | setTimeout(() => { |
| | | MKEmitter.emit('resetSelectLine', config.uuid, _treeNodes[0].$key, '') |
| | | MKEmitter.emit('resetSelectLine', config.uuid, _treeNodes[0].$key, _treeNodes[0]) |
| | | }, 200) |
| | | } else if (!hasSelectKey && selectKey) { |
| | | this.setState({ |
| | | selectedKeys: [] |
| | | }) |
| | | |
| | | MKEmitter.emit('resetSelectLine', config.uuid, '', '') |
| | | } else if (hasSelectKey) { |
| | | MKEmitter.emit('resetSelectLine', config.uuid, selectKey, selectData) |
| | | } |
| | | } |
| | | |
| | |
| | | return nodes.map(item => { |
| | | if (item.children) { |
| | | return ( |
| | | <TreeNode icon={<span><Icon type="folder-open" /><Icon type="folder" /></span>} title={item.$title} key={item.$key} dataRef={item}> |
| | | <TreeNode icon={<span><FolderOpenOutlined /><FolderOutlined /></span>} title={item.$title} key={item.$key} dataRef={item}> |
| | | {this.renderTreeNodes(item.children)} |
| | | </TreeNode> |
| | | ) |
| | | } |
| | | return <TreeNode icon={<Icon type="file" />} key={item.$key} title={item.$title} dataRef={item} isLeaf /> |
| | | return <TreeNode icon={<FileOutlined />} key={item.$key} title={item.$title} dataRef={item} isLeaf /> |
| | | }) |
| | | } |
| | | |