Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rodolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
cubes
Rodolf
Commits
09227a84fcdd
Commit
09227a84fcdd
authored
1 year ago
by
Arnaud Vergnet
Browse files
Options
Downloads
Patches
Plain Diff
feat(frontend): add recipe creation form modal
parent
809edabc2731
No related branches found
No related tags found
1 merge request
!9
Améliorations frontend
Pipeline
#222951
passed
1 year ago
Stage: install
Stage: lint
Stage: build
Stage: tests
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/app/project/[eid]/page.tsx
+33
-6
33 additions, 6 deletions
frontend/src/app/project/[eid]/page.tsx
frontend/src/components/RecipeModal.tsx
+85
-0
85 additions, 0 deletions
frontend/src/components/RecipeModal.tsx
with
118 additions
and
6 deletions
frontend/src/app/project/[eid]/page.tsx
+
33
−
6
View file @
09227a84
...
@@ -10,5 +10,12 @@
...
@@ -10,5 +10,12 @@
import
{
RecipeCard
}
from
"
@/components/cards/RecetteCard
"
;
import
{
RecipeCard
}
from
"
@/components/cards/RecetteCard
"
;
import
{
IMPORT_PROCESSES
,
PROJECT
,
RECIPES
}
from
"
@/constants/constants
"
;
import
{
IMPORT_PROCESSES
,
PROJECT
,
RECIPES
}
from
"
@/constants/constants
"
;
import
{
useLoad
}
from
"
@/hooks/useLoad
"
;
import
{
useLoad
}
from
"
@/hooks/useLoad
"
;
import
{
Box
,
Container
,
Stack
,
Typography
}
from
"
@mui/material
"
;
import
{
Box
,
Button
,
Container
,
Divider
,
Stack
,
Typography
,
}
from
"
@mui/material
"
;
import
{
useState
}
from
"
react
"
;
import
{
useState
}
from
"
react
"
;
...
@@ -14,4 +21,6 @@
...
@@ -14,4 +21,6 @@
import
{
useState
}
from
"
react
"
;
import
{
useState
}
from
"
react
"
;
import
AddIcon
from
"
@mui/icons-material/Add
"
;
import
{
RecipeModal
}
from
"
@/components/RecipeModal
"
;
export
default
function
Project
({
export
default
function
Project
({
params
:
_params
,
params
:
_params
,
...
@@ -27,6 +36,7 @@
...
@@ -27,6 +36,7 @@
text
?:
string
;
text
?:
string
;
eid
?:
number
;
eid
?:
number
;
}
>
({
visible
:
false
});
}
>
({
visible
:
false
});
const
[
recipeModalOpen
,
setRecipeModalOpen
]
=
useState
(
false
);
if
(
loading
)
{
if
(
loading
)
{
return
<
LoadingScreen
/>;
return
<
LoadingScreen
/>;
...
@@ -45,11 +55,24 @@
...
@@ -45,11 +55,24 @@
<
Box
width
=
{
"
80%
"
}
minWidth
=
{
300
}
>
<
Box
width
=
{
"
80%
"
}
minWidth
=
{
300
}
>
<
ProjectForm
project
=
{
data
}
/>
<
ProjectForm
project
=
{
data
}
/>
</
Box
>
</
Box
>
<
Stack
width
=
"100%"
>
<
Divider
sx
=
{
{
width
:
"
100%
"
}
}
/>
<
Typography
variant
=
"h4"
>
Recettes
</
Typography
>
<
Stack
width
=
"100%"
direction
=
{
"
row
"
}
alignItems
=
{
"
center
"
}
>
<
Typography
>
<
Box
flex
=
{
1
}
>
Cliquez sur une recette pour filtrer les import process
<
Stack
>
</
Typography
>
<
Typography
variant
=
"h4"
>
Recettes
</
Typography
>
<
Typography
>
Cliquez sur une recette pour filtrer les import process
</
Typography
>
</
Stack
>
</
Box
>
<
Box
>
<
Button
startIcon
=
{
<
AddIcon
/>
}
onClick
=
{
()
=>
setRecipeModalOpen
(
true
)
}
>
Ajouter
</
Button
>
</
Box
>
</
Stack
>
</
Stack
>
<
CardList
loading
=
{
false
}
emptyText
=
"Aucune recette"
>
<
CardList
loading
=
{
false
}
emptyText
=
"Aucune recette"
>
{
RECIPES
.
map
((
d
,
i
)
=>
(
{
RECIPES
.
map
((
d
,
i
)
=>
(
...
@@ -88,6 +111,10 @@
...
@@ -88,6 +111,10 @@
});
});
}
}
}
}
/>
/>
<
RecipeModal
open
=
{
recipeModalOpen
}
onClose
=
{
()
=>
setRecipeModalOpen
(
false
)
}
/>
</
Container
>
</
Container
>
);
);
}
}
This diff is collapsed.
Click to expand it.
frontend/src/components/RecipeModal.tsx
0 → 100644
+
85
−
0
View file @
09227a84
import
{
DATA_SERVICES
}
from
"
@/constants/constants
"
;
import
{
DataService
}
from
"
@/types
"
;
import
{
Autocomplete
,
Button
,
Dialog
,
DialogActions
,
DialogContent
,
DialogTitle
,
Stack
,
TextField
,
}
from
"
@mui/material
"
;
import
{
useEffect
,
useState
}
from
"
react
"
;
interface
RecipeModalProps
{
open
:
boolean
;
onClose
:
()
=>
void
;
}
export
function
RecipeModal
({
open
,
onClose
}:
RecipeModalProps
)
{
const
[
data
,
setData
]
=
useState
<
Array
<
DataService
>
|
undefined
>
();
const
[
loading
,
setLoading
]
=
useState
<
boolean
>
(
true
);
const
[
saving
,
setSaving
]
=
useState
(
false
);
useEffect
(()
=>
{
if
(
open
)
{
setLoading
(
true
);
setTimeout
(()
=>
{
setLoading
(
false
);
setData
(
DATA_SERVICES
);
},
1000
);
}
else
{
setData
(
undefined
);
}
},
[
open
]);
async
function
onSubmit
(
event
:
React
.
FormEvent
<
HTMLFormElement
>
)
{
event
.
preventDefault
();
// TODO send data
onClose
();
setSaving
(
false
);
}
return
(
<
Dialog
open
=
{
open
}
onClose
=
{
()
=>
{
if
(
!
saving
)
{
onClose
();
}
}
}
PaperProps
=
{
{
component
:
"
form
"
,
onSubmit
:
onSubmit
,
}
}
aria-labelledby
=
"form-dialog-title"
aria-describedby
=
"form-dialog-description"
fullWidth
>
<
DialogTitle
id
=
"form-dialog-title"
>
Création recette
</
DialogTitle
>
<
DialogContent
>
<
Stack
paddingTop
=
{
1
}
spacing
=
{
2
}
>
<
Autocomplete
options
=
{
data
??
[]
}
loading
=
{
loading
}
renderInput
=
{
(
params
)
=>
(
<
TextField
{
...
params
}
label
=
"Data service"
/>
)
}
getOptionLabel
=
{
(
option
)
=>
option
.
name
}
/>
<
Autocomplete
options
=
{
[{
label
:
"
default
"
},
{
label
:
"
default-dry-run
"
}]
}
renderInput
=
{
(
params
)
=>
(
<
TextField
{
...
params
}
label
=
"Process type"
/>
)
}
/>
</
Stack
>
</
DialogContent
>
<
DialogActions
>
<
Button
onClick
=
{
onClose
}
>
Annuler
</
Button
>
<
Button
type
=
"submit"
>
Valider
</
Button
>
</
DialogActions
>
</
Dialog
>
);
}
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