Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
2a6b5dea
Commit
2a6b5dea
authored
3 years ago
by
Imre Toth
Browse files
Options
Downloads
Patches
Plain Diff
Icshwi 8839 gitlab commitlist upgrade
parent
0a8fa5a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!139
Merge before release
,
!134
Icshwi 8839 gitlab commitlist upgrade
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/api/SwaggerApi.js
+6
-0
6 additions, 0 deletions
src/api/SwaggerApi.js
src/components/IOC/IOCDeployDialog.js
+46
-9
46 additions, 9 deletions
src/components/IOC/IOCDeployDialog.js
with
52 additions
and
9 deletions
src/api/SwaggerApi.js
+
6
−
0
View file @
2a6b5dea
...
@@ -713,6 +713,12 @@ export function useTagsAndCommitIds(onError) {
...
@@ -713,6 +713,12 @@ export function useTagsAndCommitIds(onError) {
return
useAsync
({
fcn
:
method
,
call
:
false
,
onError
:
onError
,
init
:
[]
});
return
useAsync
({
fcn
:
method
,
call
:
false
,
onError
:
onError
,
init
:
[]
});
}
}
export
function
useSearchTagsAndCommitsByRef
(
onError
)
{
const
api
=
useContext
(
apiContext
);
const
method
=
useCallAndUnpack
((
gitProjectId
,
reference
)
=>
api
.
apis
.
Git
.
searchTagsAndCommitsByRefName
({
projectId
:
gitProjectId
,
reference
:
reference
}),
unpackTagAndCommitIdList
)
return
useAsync
({
fcn
:
method
,
call
:
false
,
onError
:
onError
,
init
:
[]
});
}
export
function
unpackIOCStatistics
(
statistics
)
{
export
function
unpackIOCStatistics
(
statistics
)
{
return
{
...
statistics
};
return
{
...
statistics
};
}
}
...
...
This diff is collapsed.
Click to expand it.
src/components/IOC/IOCDeployDialog.js
+
46
−
9
View file @
2a6b5dea
import
React
,
{
useEffect
,
useState
}
from
"
react
"
;
import
React
,
{
useEffect
,
useState
}
from
"
react
"
;
import
{
Button
,
TextField
,
Dialog
,
DialogActions
,
DialogContent
,
DialogTitle
,
Typography
,
makeStyles
}
from
"
@material-ui/core
"
;
import
{
Button
,
TextField
,
Dialog
,
DialogActions
,
DialogContent
,
DialogTitle
,
Typography
,
makeStyles
,
Tooltip
}
from
"
@material-ui/core
"
;
import
{
Autocomplete
,
Alert
}
from
"
@material-ui/lab
"
;
import
{
Autocomplete
,
Alert
}
from
"
@material-ui/lab
"
;
import
{
useCSEntrySearch
,
useTagsAndCommit
Ids
}
from
"
../../api/SwaggerApi
"
;
import
{
useCSEntrySearch
,
use
Search
TagsAndCommit
sByRef
}
from
"
../../api/SwaggerApi
"
;
import
{
useTypingTimer
}
from
"
../common/SearchBoxFilter/TypingTimer
"
;
import
{
useTypingTimer
}
from
"
../common/SearchBoxFilter/TypingTimer
"
;
import
{
formatDate
}
from
"
../common/Helper
"
;
const
useStyles
=
makeStyles
((
theme
)
=>
({
const
useStyles
=
makeStyles
((
theme
)
=>
({
textField
:
{
textField
:
{
...
@@ -22,7 +23,7 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
...
@@ -22,7 +23,7 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
const
[
hosts
,
getHosts
]
=
useCSEntrySearch
();
const
[
hosts
,
getHosts
]
=
useCSEntrySearch
();
const
[
host
,
setHost
]
=
useState
(
null
);
const
[
host
,
setHost
]
=
useState
(
null
);
const
[
query
,
onHostKeyUp
]
=
useTypingTimer
({
interval
:
500
});
const
[
query
,
onHostKeyUp
]
=
useTypingTimer
({
interval
:
500
});
const
[
tagOrCommitId
,
getTagOrCommitId
]
=
useTagsAndCommit
Ids
(
onError
);
const
[
tagOrCommitId
,
getTagOrCommitId
]
=
use
Search
TagsAndCommit
sByRef
(
onError
);
const
[
gitRepo
,
setGitRepo
]
=
useState
(
init
.
git
||
""
);
const
[
gitRepo
,
setGitRepo
]
=
useState
(
init
.
git
||
""
);
const
[
gitVersion
,
setGitVersion
]
=
useState
(
init
.
version
||
""
);
const
[
gitVersion
,
setGitVersion
]
=
useState
(
init
.
version
||
""
);
const
gitProjectId
=
init
.
gitProjectId
;
const
gitProjectId
=
init
.
gitProjectId
;
...
@@ -31,8 +32,6 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
...
@@ -31,8 +32,6 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
setOpen
(
false
);
setOpen
(
false
);
};
};
console
.
log
({...
init
});
useEffect
(()
=>
getHosts
(
`fqdn:"
${
query
}
"`
),
[
query
,
getHosts
,
getTagOrCommitId
]);
useEffect
(()
=>
getHosts
(
`fqdn:"
${
query
}
"`
),
[
query
,
getHosts
,
getTagOrCommitId
]);
const
onSubmit
=
(
event
)
=>
{
const
onSubmit
=
(
event
)
=>
{
...
@@ -48,6 +47,29 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
...
@@ -48,6 +47,29 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
hostCSEntryId
:
host
?
parseInt
(
host
.
csEntryHost
.
id
)
:
(
init
.
csEntryHost
?
init
.
csEntryHost
.
id
:
undefined
)});
hostCSEntryId
:
host
?
parseInt
(
host
.
csEntryHost
.
id
)
:
(
init
.
csEntryHost
?
init
.
csEntryHost
.
id
:
undefined
)});
};
};
//Creates, and formats tags/commitIds with dates into a table-format for using it in autocomplete
function
createOptionTags
(
option
)
{
return
(
<
table
>
<
tr
>
<
td
style
=
{{
width
:
"
7em
"
,
maxWidth
:
"
7em
"
}}
>
<
Typography
style
=
{{
fontFamily
:
"
monospace
"
,
fontWeight
:
"
bolder
"
,
overflow
:
"
hidden
"
,
textOverflow
:
"
ellipsis
"
,
whiteSpace
:
"
nowrap
"
}}
>
{
option
.
shortReference
}
<
/Typography
>
<
/td
>
<
td
style
=
{{
width
:
"
1em
"
}}
>
-
<
/td
>
<
td
>
<
Typography
style
=
{{
fontFamily
:
"
monospace
"
,
display
:
'
inline-block
'
}}
>
{
formatDate
(
option
.
commitDate
)}
<
/Typography
>
<
/td
>
<
/tr
>
<
/table>
)}
return
(
return
(
<
Dialog
open
=
{
open
}
onClose
=
{
handleClose
}
>
<
Dialog
open
=
{
open
}
onClose
=
{
handleClose
}
>
<
form
onSubmit
=
{
onSubmit
}
>
<
form
onSubmit
=
{
onSubmit
}
>
...
@@ -64,11 +86,26 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
...
@@ -64,11 +86,26 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
options
=
{
tagOrCommitId
}
options
=
{
tagOrCommitId
}
defaultValue
=
{
init
.
version
?
{
defaultValue
=
{
init
.
version
?
{
"
reference
"
:
init
.
version
,
"
reference
"
:
init
.
version
,
"
shortReference
"
:
init
.
shortVersion
"
shortReference
"
:
init
.
shortVersion
?
init
.
shortVersion
:
init
.
version
}
:
null
}
}
:
null
}
onFocus
=
{(
event
)
=>
{
getTagOrCommitId
(
gitProjectId
);}}
onFocus
=
{(
event
)
=>
{
getTagOrCommitId
(
gitProjectId
);}}
getOptionLabel
=
{(
option
)
=>
{
return
option
.
shortReference
}}
getOptionLabel
=
{(
option
)
=>
{
onChange
=
{(
event
,
value
,
reason
)
=>
{
setGitVersion
(
value
?.
reference
);
resetError
();}}
return
option
.
shortReference
;
}}
renderOption
=
{(
option
)
=>
{
return
(
<
Tooltip
title
=
{
option
.
description
}
>
<
div
>
{
createOptionTags
(
option
)}
<
/div
>
<
/Tooltip
>
)}}
onChange
=
{(
event
,
value
,
reason
)
=>
{
setGitVersion
(
value
?.
reference
);
resetError
();
getTagOrCommitId
(
gitProjectId
,
value
?.
reference
);
}}
onInputChange
=
{(
event
,
value
,
reason
)
=>
{
getTagOrCommitId
(
gitProjectId
,
value
);}}
disabled
=
{(
!
gitRepo
)
||
(
gitRepo
.
trim
()
===
""
)}
disabled
=
{(
!
gitRepo
)
||
(
gitRepo
.
trim
()
===
""
)}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"
Git reference
"
variant
=
"
outlined
"
fullWidth
required
/>
}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"
Git reference
"
variant
=
"
outlined
"
fullWidth
required
/>
}
/
>
/
>
...
@@ -79,7 +116,7 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
...
@@ -79,7 +116,7 @@ export function IOCDeployDialog({ open, setOpen, submitCallback, hasActiveDeploy
id
=
"
host
"
id
=
"
host
"
options
=
{
hosts
.
hostList
}
options
=
{
hosts
.
hostList
}
defaultValue
=
{
init
}
defaultValue
=
{
init
}
getOptionLabel
=
{
option
=>
{
console
.
log
(
option
);
return
option
?.
csEntryHost
?.
fqdn
}}
getOptionLabel
=
{
option
=>
{
return
option
?.
csEntryHost
?.
fqdn
}}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"
host
"
variant
=
"
outlined
"
required
/>
}
renderInput
=
{(
params
)
=>
<
TextField
{...
params
}
label
=
"
host
"
variant
=
"
outlined
"
required
/>
}
onChange
=
{(
event
,
value
,
reason
)
=>
{
setHost
(
value
);
resetError
();}}
onChange
=
{(
event
,
value
,
reason
)
=>
{
setHost
(
value
);
resetError
();}}
onInputChange
=
{(
event
,
value
,
reason
)
=>
{
event
&&
onHostKeyUp
(
event
.
nativeEvent
)}}
onInputChange
=
{(
event
,
value
,
reason
)
=>
{
event
&&
onHostKeyUp
(
event
.
nativeEvent
)}}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment