// import React, { useState, useEffect, memo } from 'react'; // import axios from 'axios' // import { Modal, Input } from 'antd'; // function RepositoryChooseModal(props) { // const [trees, setTrees] = useState([]) // const [path, setPath] = useState('') // const [pathArray, setPathArray] = useState([{val: "根目录/", path: ""}]) // const [modalVisible, setModalVisible] = useState(true) // useEffect(() => { // repository('') // }, []) // function onOk() { // } // function onCancel() { // } // /** // 点nav 会传入key // 点item 会传入 newPath // item => name, type type tree/leaf // */ // const repository=(item, key, newPath)=>{ // let newPathArray = [] // // // // if (key) { // for(var i=0; i<=key; i++){ // newPathArray.push(pathArray[i]) // } // } else if (item) { // newPathArray = pathArray.slice(0) // newPathArray.push({val: item.name, path: pathArray[pathArray.length - 1] + "/" + item.name}) // } // const path = item || key ? newPathArray[newPathArray.length - 1] : '' // let id = props.match.params.shixunId; // let url ="/shixuns/"+id+"/repository.json"; // axios.post(url,{ // path: path // }).then((response) => { // if (response.data.status === 403||response.data.status === 401||response.data.status === 500) { // }else{ // setTrees(response.data.trees) // setPath(path) // pathArray(newPathArray) // } // }).catch((error) => { // console.log(error) // }); // } // const savegetfilepath=(value)=>{ // const state = {} // let {selectpath,saveshixunfilepath,pathtype} = state // if(pathtype===1){ // let newselectpath; // if(saveshixunfilepath==="shixunfilepathplay"){ // newselectpath=value // }else{ // const type = selectpath.split(';'); // let types=false; // for(var i=0; i{ // } // function sendgetfilepath() { // } // return ( // //
//
// //
// // saveselectpath(e)} // value={path}/> //
// onOk()}>确定 // onCancel()}>取消 //
//
//
// ) // } // export default RepositoryChooseModal