forked from ddrilling/asb_cloud_front
list to tree
This commit is contained in:
parent
1800f15c8e
commit
b1d73e33b9
@ -1,7 +1,7 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import { useState, useEffect } from 'react';
|
||||||
import { WellService } from '../services/api'
|
import { WellService } from '../services/api'
|
||||||
import Loader from '../components/Loader'
|
import Loader from '../components/Loader'
|
||||||
import { Table } from 'antd';
|
import { Table, TreeSelect } from 'antd';
|
||||||
import { useHistory } from 'react-router-dom'
|
import { useHistory } from 'react-router-dom'
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
@ -27,16 +27,58 @@ const columns = [
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// const groupBy = (table, key) => {
|
||||||
|
// return table.reduce((rv, item) => {
|
||||||
|
// rv[item[key]] = rv[item[key]] || []
|
||||||
|
// rv[item[key]].push(item);
|
||||||
|
// return rv;
|
||||||
|
// }, []);
|
||||||
|
// };
|
||||||
|
|
||||||
|
const groupBy = (table, ...keys) => {
|
||||||
|
let key = keys[0]
|
||||||
|
|
||||||
|
let groups = table.reduce((rv, item) => {
|
||||||
|
let keyValue = item[key]
|
||||||
|
let group = rv.find(o=>o.title === keyValue)
|
||||||
|
if(!group)
|
||||||
|
{
|
||||||
|
group = {
|
||||||
|
title: keyValue,
|
||||||
|
value: keys.length === 1 ? item : `${key} ${keyValue} ${item['id']}`,
|
||||||
|
selectable: keys.length === 1,
|
||||||
|
children:[]}
|
||||||
|
rv.push(group)
|
||||||
|
}
|
||||||
|
if(keys.length > 1)
|
||||||
|
group.children.push(item);
|
||||||
|
return rv;
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
if(keys.length > 1){
|
||||||
|
for(let group of groups){
|
||||||
|
group.children = groupBy(group.children, ...keys.slice(1))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return groups
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
export default function Wells(props){
|
export default function Wells(props){
|
||||||
const [wells, setWells] = useState([])
|
const [wells, setWells] = useState([])
|
||||||
|
const [wellsTree, setWellsTree] = useState([])
|
||||||
const [loader, setLoader] = useState(false)
|
const [loader, setLoader] = useState(false)
|
||||||
const history = useHistory()
|
const history = useHistory()
|
||||||
|
|
||||||
let updateWellsList = async () => {
|
let updateWellsList = async () => {
|
||||||
setLoader(true)
|
setLoader(true)
|
||||||
try{
|
try{
|
||||||
var newWells = (await WellService.get()).map(w =>{return {key:w.id, ...w}})
|
let newWells = (await WellService.get()).map(w =>{return {key:w.id, ...w}})
|
||||||
|
let wellsTree = groupBy(newWells, 'deposit', 'cluster', 'caption')
|
||||||
|
console.log(wellsTree)
|
||||||
setWells( newWells )
|
setWells( newWells )
|
||||||
|
setWellsTree(wellsTree)
|
||||||
}
|
}
|
||||||
catch(e){
|
catch(e){
|
||||||
console.error(`${e.message}`);
|
console.error(`${e.message}`);
|
||||||
@ -46,16 +88,27 @@ export default function Wells(props){
|
|||||||
|
|
||||||
useEffect(()=>{updateWellsList()}, [])
|
useEffect(()=>{updateWellsList()}, [])
|
||||||
|
|
||||||
|
const onChange = (value) =>{
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
return(<>
|
return(<>
|
||||||
<h2>Wells</h2>
|
<h2>Wells</h2>
|
||||||
<Table
|
<Table
|
||||||
dataSource={wells}
|
dataSource={wells}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
onRow={(record, rowIndex) => {
|
onRow={(record) => {
|
||||||
return {
|
return {
|
||||||
onClick: event => {history.push(`well/${record.id}`)},
|
onClick: event => {history.push(`well/${record.id}`)},
|
||||||
};
|
};
|
||||||
}}/>
|
}}/>
|
||||||
|
<TreeSelect
|
||||||
|
style={{ width: '100%' }}
|
||||||
|
placeholder="Please select"
|
||||||
|
treeData={wellsTree}
|
||||||
|
treeDefaultExpandAll
|
||||||
|
onChange={onChange}
|
||||||
|
/>
|
||||||
{loader&&<Loader/>}
|
{loader&&<Loader/>}
|
||||||
</>)
|
</>)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user