Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
bkunyun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bkunyun
Commits
398a522b
Commit
398a522b
authored
Jul 22, 2022
by
chenshouchao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 调整查看数据集页面细节
parent
682a7015
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
259 additions
and
19 deletions
+259
-19
index.tsx
src/components/BusinessComponents/KekuleView/index.tsx
+13
-6
index.module.css
src/views/Project/ProjectData/SeeDataset/index.module.css
+53
-1
index.tsx
src/views/Project/ProjectData/SeeDataset/index.tsx
+186
-12
index.tsx
src/views/Project/ProjectData/index.tsx
+7
-0
No files found.
src/components/BusinessComponents/KekuleView/index.tsx
View file @
398a522b
// 2d分子结构图
// 2d分子结构图
import
{
useEffect
}
from
"react"
;
import
{
use
Callback
,
use
Effect
}
from
"react"
;
import
{
Box
}
from
"@mui/material"
;
import
{
Box
}
from
"@mui/material"
;
import
{
useMessage
}
from
"@/components/MySnackbar"
;
import
{
useMessage
}
from
"@/components/MySnackbar"
;
var
Kekule
=
require
(
"kekule"
).
Kekule
;
var
Kekule
=
require
(
"kekule"
).
Kekule
;
...
@@ -34,7 +34,7 @@ const KekuleView = (props: IKekuleViewProps) => {
...
@@ -34,7 +34,7 @@ const KekuleView = (props: IKekuleViewProps) => {
}
=
props
;
}
=
props
;
const
Message
=
useMessage
();
const
Message
=
useMessage
();
useEffect
(()
=>
{
const
rander
=
useCallback
(()
=>
{
if
(
smi
)
{
if
(
smi
)
{
try
{
try
{
let
molecule
=
Kekule
.
IO
.
loadFormatData
(
let
molecule
=
Kekule
.
IO
.
loadFormatData
(
...
@@ -60,16 +60,23 @@ const KekuleView = (props: IKekuleViewProps) => {
...
@@ -60,16 +60,23 @@ const KekuleView = (props: IKekuleViewProps) => {
Message
.
error
(
"分子结构图渲染失败,请刷新重试。"
);
Message
.
error
(
"分子结构图渲染失败,请刷新重试。"
);
}
}
}
}
// eslint-disable-next-line react-hooks/exhaustive-deps
},
[
smi
,
Message
,
id
,
height
,
width
,
backgroundColor
,
toolbar
]);
},
[
smi
]);
useEffect
(()
=>
{
rander
();
},
[
rander
]);
window
.
onresize
=
()
=>
{
rander
();
};
return
(
return
(
<
Box
<
Box
id=
{
id
}
id=
{
id
}
sx=
{
{
sx=
{
{
cursor
:
onClick
?
"pointer"
:
"unset"
,
cursor
:
onClick
?
"pointer"
:
"unset"
,
width
:
"
100
%"
,
width
:
"
99
%"
,
height
:
"
100
%"
,
height
:
"
99
%"
,
...
style
,
...
style
,
}
}
}
}
onClick=
{
onClick
}
onClick=
{
onClick
}
...
...
src/views/Project/ProjectData/SeeDataset/index.module.css
View file @
398a522b
...
@@ -39,7 +39,7 @@
...
@@ -39,7 +39,7 @@
}
}
.table
{
.table
{
flex
:
1
;
flex
:
1
;
overflow
:
auto
;
overflow
-y
:
auto
;
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
}
}
...
@@ -73,6 +73,55 @@
...
@@ -73,6 +73,55 @@
.datasetLi
:nth-last-child
(
4
)
{
.datasetLi
:nth-last-child
(
4
)
{
margin-bottom
:
0
;
margin-bottom
:
0
;
}
}
.datasetLiTop
{
height
:
55%
;
box-sizing
:
border-box
;
}
.datasetLiBottom
{
height
:
45%
;
box-sizing
:
border-box
;
background-color
:
RGBA
(
247
,
248
,
250
,
1
);
display
:
flex
;
flex-direction
:
column
;
}
.datasetLiTitle
{
height
:
38px
;
line-height
:
38px
;
color
:
rgba
(
19
,
112
,
255
,
1
);
font-size
:
14px
;
text-align
:
center
;
font-weight
:
600
;
}
.datasetLiDataList
{
flex
:
1
;
overflow
:
auto
;
}
.datasetLiDataLi
{
height
:
20px
;
line-height
:
20px
;
color
:
rgba
(
30
,
38
,
51
,
1
);
font-size
:
12px
;
padding
:
0
16px
;
display
:
flex
;
justify-content
:
space-between
;
}
.datasetLiDataLi
:nth-child
(
2n
)
{
background-color
:
rgba
(
235
,
237
,
240
,
1
);
}
.datasetLiDataLiKey
{
max-width
:
50%
;
white-space
:
nowrap
;
display
:
block
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
}
.datasetLiDataLiValue
{
max-width
:
50%
;
white-space
:
nowrap
;
display
:
block
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
}
.pagination
{
.pagination
{
height
:
76px
;
height
:
76px
;
min-height
:
76px
;
min-height
:
76px
;
...
@@ -93,3 +142,6 @@
...
@@ -93,3 +142,6 @@
align-items
:
center
;
align-items
:
center
;
box-shadow
:
0px
-3px
10px
0px
rgba
(
0
,
24
,
57
,
0.04
);
box-shadow
:
0px
-3px
10px
0px
rgba
(
0
,
24
,
57
,
0.04
);
}
}
.nullBox
{
visibility
:
hidden
;
}
src/views/Project/ProjectData/SeeDataset/index.tsx
View file @
398a522b
import
FullScreenDrawer
from
"@/components/CommonComponents/FullScreenDrawer"
;
import
FullScreenDrawer
from
"@/components/CommonComponents/FullScreenDrawer"
;
import
{
useState
}
from
"react"
;
import
{
useState
,
useMemo
}
from
"react"
;
import
RadioGroupOfButtonStyle
from
"@/components/CommonComponents/RadioGroupOfButtonStyle"
;
import
RadioGroupOfButtonStyle
from
"@/components/CommonComponents/RadioGroupOfButtonStyle"
;
import
MyMultipleMenu
,
{
IOption
}
from
"@/components/mui/MyMultipleMenu"
;
import
MyMultipleMenu
,
{
IOption
}
from
"@/components/mui/MyMultipleMenu"
;
import
MySelect
from
"../../ProjectSubmitWork/components/MySelect"
;
import
MySelect
from
"../../ProjectSubmitWork/components/MySelect"
;
...
@@ -7,12 +7,124 @@ import MyInput from "@/components/mui/MyInput";
...
@@ -7,12 +7,124 @@ import MyInput from "@/components/mui/MyInput";
import
ButtonComponent
from
"@/components/mui/MyButton"
;
import
ButtonComponent
from
"@/components/mui/MyButton"
;
import
SearchIcon
from
"@mui/icons-material/Search"
;
import
SearchIcon
from
"@mui/icons-material/Search"
;
import
MyPagination
from
"@/components/mui/MyPagination"
;
import
MyPagination
from
"@/components/mui/MyPagination"
;
import
NglView
from
"@/components/BusinessComponents/NglView"
;
import
KekuleView
from
"@/components/BusinessComponents/KekuleView"
;
import
{
observer
}
from
"mobx-react-lite"
;
import
{
useStores
}
from
"@/store"
;
import
{
toJS
}
from
"mobx"
;
import
classNames
from
"classnames"
;
import
style
from
"./index.module.css"
;
import
style
from
"./index.module.css"
;
type
ISeeDatasetProps
=
{
type
ISeeDatasetProps
=
{
handleClose
:
any
;
handleClose
:
any
;
path
:
string
;
fileToken
:
string
;
projectId
:
string
;
name
:
string
;
};
};
const
contentDataMock
=
`REMARK VINA RESULT: -6.039 0.000 0.000
REMARK INTER + INTRA: -7.654
REMARK INTER: -7.995
REMARK INTRA: 0.341
REMARK UNBOUND: -0.203
REMARK SMILES CN1C(=O)c2ccc(N3C(=O)c4ccc(Oc5ccc([N+](=O)[O-])cc5)cc4C3=O)cc2C1=O
REMARK SMILES IDX 16 1 15 4 11 5 10 6 12 9 9 10 13 11 27 12 28 13 14 14 26 15
REMARK SMILES IDX 29 16 8 19 7 20 30 21 6 22 31 23 5 24 32 25 3 26 33 27 2 28
REMARK SMILES IDX 4 29 1 32 17 35 18 36 25 37 19 38 24 39 20 40 21 41 22 42
REMARK SMILES IDX 23 43
REMARK H PARENT
REMARK Flexibility Score: inf
COMPND UNNAMED
AUTHOR GENERATED BY OPEN BABEL 3.1.0
ATOM 1 O LIG 1 6.958 5.187 16.199 1.00 0.00 O
ATOM 2 WAT LIG 1 7.927 4.962 13.368 1.00 0.00 W
ATOM 3 WAT LIG 1 6.361 7.884 17.368 1.00 0.00 W
ATOM 4 C LIG 1 8.006 4.700 16.965 1.00 0.00 C
ATOM 5 O LIG 1 11.909 3.392 19.972 1.00 0.00 O
ATOM 6 C LIG 1 10.833 2.980 19.589 1.00 0.00 C
ATOM 7 WAT LIG 1 13.514 1.792 21.938 1.00 0.00 W
ATOM 8 WAT LIG 1 12.959 6.013 18.958 1.00 0.00 W
ATOM 9 C LIG 1 9.994 3.706 18.630 1.00 0.00 C
ATOM 10 N LIG 1 10.171 1.809 19.872 1.00 0.00 N
ATOM 11 C LIG 1 10.225 4.905 17.988 1.00 0.00 C
ATOM 12 C LIG 1 8.832 2.986 18.430 1.00 0.00 C
ATOM 13 C LIG 1 8.954 1.750 19.224 1.00 0.00 C
ATOM 14 C LIG 1 9.212 5.403 17.165 1.00 0.00 C
ATOM 15 C LIG 1 7.811 3.462 17.610 1.00 0.00 C
ATOM 16 O LIG 1 8.080 0.907 19.285 1.00 0.00 O
ATOM 17 WAT LIG 1 8.484 -1.556 20.949 1.00 0.00 W
ATOM 18 WAT LIG 1 5.518 1.290 17.771 1.00 0.00 W
ATOM 19 C LIG 1 10.690 0.788 20.704 1.00 0.00 C
ATOM 20 C LIG 1 10.990 1.073 22.059 1.00 0.00 C
ATOM 21 C LIG 1 10.894 -0.512 20.209 1.00 0.00 C
ATOM 22 C LIG 1 11.467 0.078 22.930 1.00 0.00 C
ATOM 23 C LIG 1 11.413 -1.466 21.079 1.00 0.00 C
ATOM 24 C LIG 1 11.677 -1.183 22.406 1.00 0.00 C
ATOM 25 C LIG 1 11.784 -2.870 20.853 1.00 0.00 C
ATOM 26 C LIG 1 12.163 -2.413 23.041 1.00 0.00 C
ATOM 27 O LIG 1 11.755 -3.417 19.771 1.00 0.00 O
ATOM 28 N LIG 1 12.172 -3.374 22.066 1.00 0.00 N
ATOM 29 O LIG 1 12.481 -2.503 24.210 1.00 0.00 O
ATOM 30 WAT LIG 1 12.552 -6.299 19.526 1.00 0.00 W
ATOM 31 WAT LIG 1 10.885 -1.889 17.340 1.00 0.00 W
ATOM 32 C LIG 1 12.561 -4.748 22.299 1.00 0.00 C
ATOM 33 WAT LIG 1 13.453 -5.123 25.301 1.00 0.00 W
ATOM 34 WAT LIG 1 12.296 -0.106 26.005 1.00 0.00 W
ATOM 35 C LIG 1 5.741 4.530 16.202 1.00 0.00 C
ATOM 36 C LIG 1 5.748 3.131 16.178 1.00 0.00 C
ATOM 37 C LIG 1 4.519 5.215 16.142 1.00 0.00 C
ATOM 38 C LIG 1 4.542 2.418 16.098 1.00 0.00 C
ATOM 39 C LIG 1 3.309 4.512 16.150 1.00 0.00 C
ATOM 40 C LIG 1 3.324 3.112 16.136 1.00 0.00 C
ATOM 41 N LIG 1 2.059 2.366 16.222 1.00 0.00 N
ATOM 42 O LIG 1 1.977 1.297 15.600 1.00 0.00 O
ATOM 43 O LIG 1 1.160 2.836 16.934 1.00 0.00 O
ATOM 44 WAT LIG 1 -0.556 -0.307 15.704 1.00 0.00 W
ATOM 45 WAT LIG 1 4.310 0.313 13.991 1.00 0.00 W
ATOM 46 WAT LIG 1 -1.462 1.400 17.183 1.00 0.00 W
ATOM 47 WAT LIG 1 1.606 5.411 18.407 1.00 0.00 W
CONECT 1 35 4
CONECT 4 1 14 14 15
CONECT 5 6 6
CONECT 6 9 10 5 5
CONECT 7 20
CONECT 9 11 11 12 6
CONECT 10 13 6 19
CONECT 11 14 9 9
CONECT 12 15 15 9 13
CONECT 13 12 16 16 10
CONECT 14 4 4 11
CONECT 15 4 12 12
CONECT 16 13 13
CONECT 17 21
CONECT 18 38
CONECT 19 10 21 21 20
CONECT 20 19 7 22 22
CONECT 21 19 19 17 23
CONECT 22 20 20 24
CONECT 23 21 25 24 24
CONECT 24 23 23 22 26
CONECT 25 27 27 23 28
CONECT 26 28 24 29 29
CONECT 27 25 25
CONECT 28 25 32 26
CONECT 29 26 26
CONECT 32 28
CONECT 35 37 37 36 1
CONECT 36 38 38 35
CONECT 37 39 35 35
CONECT 38 40 36 36 18
CONECT 39 40 40 37
CONECT 40 38 39 39 41
CONECT 41 42 42 40 43
CONECT 41 43
CONECT 42 41 41
CONECT 43 41 41
CONECT 44 46 46 46
CONECT 46 44 44 44
MASTER 0 0 0 0 0 0 0 0 47 0 47 0`
;
const
dataTypesMock
=
[
const
dataTypesMock
=
[
{
{
label
:
"123"
,
label
:
"123"
,
...
@@ -28,14 +140,19 @@ const dataTypesMock = [
...
@@ -28,14 +140,19 @@ const dataTypesMock = [
},
},
];
];
const
SeeDataset
=
(
props
:
ISeeDatasetProps
)
=>
{
const
SeeDataset
=
observer
((
props
:
ISeeDatasetProps
)
=>
{
const
{
path
,
name
,
fileToken
,
projectId
}
=
props
;
const
{
currentProjectStore
}
=
useStores
();
const
productName
=
toJS
(
currentProjectStore
.
currentProductInfo
.
name
);
// chan
// const projectId = toJS(currentProjectStore.currentProjectInfo.id);
const
[
graphicDimension
,
setGraphicDimension
]
=
useState
(
"2D"
);
// 分子结构图是2D还是3D
const
[
graphicDimension
,
setGraphicDimension
]
=
useState
(
"2D"
);
// 分子结构图是2D还是3D
const
[
showData
Types
,
setShowDataTypes
]
=
useState
<
Array
<
string
>>
([]);
//显示的数据类型
const
[
showData
,
setShowData
]
=
useState
<
Array
<
string
>>
([]);
//显示的数据类型
const
[
dataTypes
,
setdataTypes
]
=
useState
<
Array
<
IOption
>>
(
dataTypesMock
);
// 可选的数据类型
const
[
dataTypes
,
setdataTypes
]
=
useState
<
Array
<
IOption
>>
(
dataTypesMock
);
// 可选的数据类型
const
[
sort
,
setSort
]
=
useState
(
"null"
);
// 排序方式
const
[
sort
,
setSort
]
=
useState
(
"null"
);
// 排序方式
const
[
keyword
,
setKeyword
]
=
useState
(
""
);
// 关键字
const
[
keyword
,
setKeyword
]
=
useState
(
""
);
// 关键字
const
[
searchDataType
,
setSearchDataType
]
=
useState
<
string
>
(
""
);
//显示的数据类型
const
[
searchDataType
,
setSearchDataType
]
=
useState
<
string
>
(
""
);
//显示的数据类型
const
[
page
,
setPage
]
=
useState
(
1
);
// 当前页码
const
[
page
,
setPage
]
=
useState
(
1
);
// 当前页码
const
size
=
8
;
// 每页数量
const
[
count
,
setCount
]
=
useState
(
1
);
// 总页数
const
[
count
,
setCount
]
=
useState
(
1
);
// 总页数
const
handleSearchDataTypeChange
=
(
e
:
any
)
=>
{
const
handleSearchDataTypeChange
=
(
e
:
any
)
=>
{
setSearchDataType
(
e
.
target
.
value
);
setSearchDataType
(
e
.
target
.
value
);
...
@@ -48,10 +165,23 @@ const SeeDataset = (props: ISeeDatasetProps) => {
...
@@ -48,10 +165,23 @@ const SeeDataset = (props: ISeeDatasetProps) => {
console
.
log
(
e
);
console
.
log
(
e
);
setKeyword
(
e
.
target
.
value
);
setKeyword
(
e
.
target
.
value
);
};
};
const
list
=
[
1
,
2
,
3
,
2
,
1
,
45
,
6
,
7
];
const
list
=
[
1
,
2
,
3
,
2
,
1
,
45
,
7
];
// const list = [1];
const
pageChange
=
(
value
:
number
)
=>
{
const
pageChange
=
(
value
:
number
)
=>
{
setPage
(
value
);
setPage
(
value
);
};
};
const
nullBox
=
useMemo
(()
=>
{
if
(
list
.
length
>
4
)
{
let
nullBoxLength
=
8
-
list
.
length
;
return
new
Array
(
nullBoxLength
).
fill
(
""
);
}
else
{
return
[];
}
},
[
list
]);
console
.
log
(
nullBox
);
return
(
return
(
<
FullScreenDrawer
handleClose=
{
props
.
handleClose
}
>
<
FullScreenDrawer
handleClose=
{
props
.
handleClose
}
>
<
div
className=
{
style
.
datasetBox
}
>
<
div
className=
{
style
.
datasetBox
}
>
...
@@ -75,13 +205,13 @@ const SeeDataset = (props: ISeeDatasetProps) => {
...
@@ -75,13 +205,13 @@ const SeeDataset = (props: ISeeDatasetProps) => {
RadiosBoxStyle=
{
{
width
:
"132px"
}
}
RadiosBoxStyle=
{
{
width
:
"132px"
}
}
></
RadioGroupOfButtonStyle
>
></
RadioGroupOfButtonStyle
>
<
MyMultipleMenu
<
MyMultipleMenu
value=
{
showData
Types
}
value=
{
showData
}
options=
{
dataTypes
}
options=
{
dataTypes
}
setValue=
{
setShowData
Types
}
setValue=
{
setShowData
}
showSelectAll=
{
true
}
showSelectAll=
{
true
}
>
>
<
span
className=
{
style
.
selectShowData
}
>
<
span
className=
{
style
.
selectShowData
}
>
选择显示数据(
{
showData
Types
.
length
}
)
选择显示数据(
{
showData
.
length
}
)
</
span
>
</
span
>
</
MyMultipleMenu
>
</
MyMultipleMenu
>
</
div
>
</
div
>
...
@@ -144,14 +274,58 @@ const SeeDataset = (props: ISeeDatasetProps) => {
...
@@ -144,14 +274,58 @@ const SeeDataset = (props: ISeeDatasetProps) => {
</
div
>
</
div
>
<
div
className=
{
style
.
table
}
>
<
div
className=
{
style
.
table
}
>
<
div
className=
{
style
.
list
}
>
<
div
className=
{
style
.
list
}
>
{
list
.
map
((
item
)
=>
{
{
list
.
map
((
item
,
index
)
=>
{
return
(
return
(
<
div
className=
{
style
.
datasetLi
}
>
<
div
className=
{
style
.
datasetLi
}
key=
{
index
}
>
{
/* <div className={datasetLiTop}></div>
<
div
className=
{
style
.
datasetLiTop
}
>
<div className={datasetLiTop}></div> */
}
{
graphicDimension
===
"2D"
&&
(
<
KekuleView
id=
{
`${index}2d`
}
smi=
"COc1ccc(c(c1)N(=O)=O)NC(=O)CSc1nc2c([nH]1)cccc2"
/>
)
}
{
graphicDimension
===
"3D"
&&
(
<
NglView
id=
{
`${index}3d`
}
content=
{
contentDataMock
}
/>
)
}
</
div
>
<
div
className=
{
style
.
datasetLiBottom
}
>
<
div
className=
{
style
.
datasetLiTitle
}
>
12314SAS
</
div
>
<
div
className=
{
style
.
datasetLiDataList
}
>
<
div
className=
{
style
.
datasetLiDataLi
}
>
<
span
className=
{
style
.
datasetLiDataLiKey
}
>
1asdfjasg123454356245421zdg5s456s4fg878gasd5g74a877h8a7dfh8sa4dfh56s4dfh54adf56ha4df56h456adfhf23
</
span
>
<
span
className=
{
style
.
datasetLiDataLiValue
}
>
45
</
span
>
</
div
>
<
div
className=
{
style
.
datasetLiDataLi
}
>
<
span
className=
{
style
.
datasetLiDataLiKey
}
>
123
</
span
>
<
span
className=
{
style
.
datasetLiDataLiValue
}
>
45
</
span
>
</
div
>
<
div
className=
{
style
.
datasetLiDataLi
}
>
<
span
className=
{
style
.
datasetLiDataLiKey
}
>
123
</
span
>
<
span
className=
{
style
.
datasetLiDataLiValue
}
>
45
</
span
>
</
div
>
<
div
className=
{
style
.
datasetLiDataLi
}
>
<
span
className=
{
style
.
datasetLiDataLiKey
}
>
123
</
span
>
<
span
className=
{
style
.
datasetLiDataLiValue
}
>
45
</
span
>
</
div
>
</
div
>
</
div
>
</
div
>
</
div
>
);
);
})
}
})
}
{
nullBox
.
map
((
item
,
index
)
=>
{
return
(
<
div
className=
{
classNames
({
[
style
.
datasetLi
]:
true
,
[
style
.
nullBox
]:
true
,
})
}
key=
{
index
+
"null"
}
></
div
>
);
})
}
</
div
>
</
div
>
<
div
className=
{
style
.
pagination
}
>
<
div
className=
{
style
.
pagination
}
>
<
MyPagination
page=
{
page
}
pageChange=
{
pageChange
}
count=
{
count
}
/>
<
MyPagination
page=
{
page
}
pageChange=
{
pageChange
}
count=
{
count
}
/>
...
@@ -168,6 +342,6 @@ const SeeDataset = (props: ISeeDatasetProps) => {
...
@@ -168,6 +342,6 @@ const SeeDataset = (props: ISeeDatasetProps) => {
</div> */
}
</div> */
}
</
FullScreenDrawer
>
</
FullScreenDrawer
>
);
);
};
}
)
;
export
default
SeeDataset
;
export
default
SeeDataset
;
src/views/Project/ProjectData/index.tsx
View file @
398a522b
...
@@ -87,6 +87,8 @@ const ProjectData = observer(() => {
...
@@ -87,6 +87,8 @@ const ProjectData = observer(() => {
const
[
uploaderDialogOpen
,
setUploaderDialogOpen
]
=
useState
(
false
);
const
[
uploaderDialogOpen
,
setUploaderDialogOpen
]
=
useState
(
false
);
// 查看数据集(数据集详情)显示控制
// 查看数据集(数据集详情)显示控制
const
[
showSeeDataset
,
setShowSeeDataset
]
=
useState
(
false
);
const
[
showSeeDataset
,
setShowSeeDataset
]
=
useState
(
false
);
// 查看的数据集的数据集名称
const
[
seeDatasetName
,
setSeeDatasetName
]
=
useState
(
""
);
useEffect
(()
=>
{
useEffect
(()
=>
{
const
locationInfo
:
any
=
location
?.
state
;
const
locationInfo
:
any
=
location
?.
state
;
...
@@ -333,6 +335,7 @@ const ProjectData = observer(() => {
...
@@ -333,6 +335,7 @@ const ProjectData = observer(() => {
// 查看数据集
// 查看数据集
const
handleSeeDataset
=
(
item
:
any
)
=>
{
const
handleSeeDataset
=
(
item
:
any
)
=>
{
console
.
log
(
item
);
console
.
log
(
item
);
setSeeDatasetName
(
item
.
name
);
setShowSeeDataset
(
true
);
setShowSeeDataset
(
true
);
};
};
...
@@ -700,6 +703,10 @@ const ProjectData = observer(() => {
...
@@ -700,6 +703,10 @@ const ProjectData = observer(() => {
{
showSeeDataset
&&
(
{
showSeeDataset
&&
(
<
SeeDataset
<
SeeDataset
handleClose=
{
()
=>
setShowSeeDataset
(
false
)
}
handleClose=
{
()
=>
setShowSeeDataset
(
false
)
}
name=
{
seeDatasetName
}
path=
{
path
}
fileToken=
{
fileToken
as
string
}
projectId=
{
projectId
as
string
}
></
SeeDataset
>
></
SeeDataset
>
)
}
)
}
</
div
>
</
div
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment