Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
szse
Overview
Overview
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
zhaochengxiang
szse
Commits
93ded6b7
Commit
93ded6b7
authored
May 10, 2024
by
zhaochengxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
支持hive
parent
f3e2e3bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
26 deletions
+10
-26
ImportActionHeader.jsx
src/view/Manage/Model/Component/ImportActionHeader.jsx
+10
-26
No files found.
src/view/Manage/Model/Component/ImportActionHeader.jsx
View file @
93ded6b7
...
...
@@ -287,11 +287,7 @@ const ImportActionHeader = (props) => {
style=
{
{
marginBottom
}
}
>
{
editable
?
<
DistributionItem
modelerData=
{
modelerData
}
/>
:
<
Tooltip
overlayClassName=
'tooltip-common'
title=
{
<
KeysDetail
value=
{
modelerData
?.
distributionKey
?.
keys
}
/>
}
>
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
distributionDescription
,
terms
)
}
</
span
>
</
Tooltip
>
editable
?
<
DistributionItem
modelerData=
{
modelerData
}
/>
:
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
distributionDescription
,
terms
)
}
</
span
>
}
</
Form
.
Item
>
</
Col
>
...
...
@@ -302,11 +298,7 @@ const ImportActionHeader = (props) => {
style=
{
{
marginBottom
}
}
>
{
editable
?
<
PartitionSelect
modelerData=
{
modelerData
}
partitionTypes=
{
supportedPartitionTypes
}
/>
:
<
Tooltip
overlayClassName=
'tooltip-common'
title=
{
<
KeysDetail
value=
{
modelerData
?.
partition
?.
keys
}
/>
}
>
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
partitionsDescription
,
terms
)
}
</
span
>
</
Tooltip
>
editable
?
<
PartitionSelect
modelerData=
{
modelerData
}
partitionTypes=
{
supportedPartitionTypes
}
/>
:
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
partitionsDescription
,
terms
)
}
</
span
>
}
</
Form
.
Item
>
</
Col
>
...
...
@@ -317,11 +309,7 @@ const ImportActionHeader = (props) => {
style=
{
{
marginBottom
}
}
>
{
editable
?
<
AttributesSelect
modelerData=
{
modelerData
}
mode=
'tags'
/>
:
<
Tooltip
overlayClassName=
'tooltip-common'
title=
{
<
KeysDetail
value=
{
modelerData
?.
easyDataModelerSemiPrimaryKey
}
/>
}
>
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
semiPrimaryDescription
,
terms
)
}
</
span
>
</
Tooltip
>
editable
?
<
AttributesSelect
modelerData=
{
modelerData
}
mode=
'tags'
/>
:
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
semiPrimaryDescription
,
terms
)
}
</
span
>
}
</
Form
.
Item
>
</
Col
>
...
...
@@ -426,17 +414,16 @@ const ImportActionHeader = (props) => {
style=
{
{
marginBottom
}
}
rules=
{
[
{
required
:
true
,
validator
:
(
_
,
value
)
=>
{
if
((
value
?.
keys
??[]).
length
>
0
)
{
if
(
value
?.
bucketCount
===
0
)
{
return
Promise
.
reject
(
new
Error
(
'分桶数不能为0'
));
return
Promise
.
reject
(
new
Error
(
'分桶数不能为0
!
'
));
}
else
if
(
!
value
?.
bucketCount
)
{
return
Promise
.
reject
(
new
Error
(
'请输入分桶数'
));
return
Promise
.
reject
(
new
Error
(
'请输入分桶数
!
'
));
}
}
if
(
value
?.
bucketCount
&&
(
value
?.
keys
??[]).
length
===
0
)
{
return
Promise
.
reject
(
new
Error
(
'请选择字段名称'
));
return
Promise
.
reject
(
new
Error
(
'请选择字段名称
!
'
));
}
return
Promise
.
resolve
();
}
...
...
@@ -444,12 +431,7 @@ const ImportActionHeader = (props) => {
]
}
>
{
editable
?
<
DistributionBucketItem
modelerData=
{
modelerData
}
/>
:
<
Tooltip
overlayClassName=
'tooltip-common'
title=
{
<
KeysDetail
value=
{
modelerData
?.
distributionKey
?.
keys
}
/>
}
>
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
distributionBucketDescription
,
terms
)
}
</
span
>
</
Tooltip
>
editable
?
<
DistributionBucketItem
modelerData=
{
modelerData
}
/>
:
<
span
className=
'word-wrap'
>
{
highlightSearchContentByTerms
(
distributionBucketDescription
,
terms
)
}
</
span
>
}
</
Form
.
Item
>
</
Col
>
...
...
@@ -589,6 +571,8 @@ const ImportActionHeader = (props) => {
}
else
{
onChange
?.({...
changedValues
,
bindingLoadRange
:
''
},
{...
allValues
,
bindingLoadRange
:
''
});
}
}
else
if
(
changedValues
.
hasOwnProperty
(
'dbType'
))
{
onChange
?.({...
changedValues
,
partition
:
null
},
{...
allValues
,
partition
:
null
});
}
}
...
...
@@ -605,7 +589,7 @@ const ImportActionHeader = (props) => {
<
Form
.
Item
label=
'数据库类型'
name=
"dbType"
rules=
{
[{
required
:
true
,
message
:
'请
输入中文名称
!'
}]
}
rules=
{
[{
required
:
true
,
message
:
'请
选择数据库类型
!'
}]
}
style=
{
{
marginBottom
}
}
>
{
...
...
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