Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
beasy-mobile
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
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
G
beasy-mobile
Commits
87e404c9
Commit
87e404c9
authored
May 27, 2024
by
G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
basic component for the error modal
parent
fc57c6c9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
0 deletions
+60
-0
ErrorIcons.tsx
src/components/icons/ErrorIcons.tsx
+16
-0
ErrorModal.tsx
src/components/modals/ErrorModal.tsx
+38
-0
Theme.tsx
src/themes/Theme.tsx
+6
-0
No files found.
src/components/icons/ErrorIcons.tsx
0 → 100644
View file @
87e404c9
import
Box
from
"@components/bases/Box"
;
import
{
images
}
from
"@styles/Commons"
;
import
{
Image
}
from
"react-native"
;
const
ErrorIcon
=
()
=>
{
return
(
<
Box
width=
{
50
}
height=
{
50
}
>
<
Image
source=
{
require
(
"../../../assets/icon_close_failure.png"
)
}
style=
{
images
.
contain
}
/>
</
Box
>
);
};
export
default
ErrorIcon
;
src/components/modals/ErrorModal.tsx
0 → 100644
View file @
87e404c9
import
Button
from
"@components/Button"
;
import
Box
from
"@components/bases/Box"
;
import
ErrorIcon
from
"@components/icons/ErrorIcons"
;
import
{
Text
}
from
"react-native"
;
const
ErrorModal
=
()
=>
{
return
(
<
Box
width=
{
300
}
height=
{
200
}
backgroundColor=
{
"white"
}
alignItems=
{
"center"
}
justifyContent=
{
"center"
}
alignSelf=
{
"center"
}
marginTop=
{
"x240"
}
position=
{
"absolute"
}
zIndex=
{
10
}
borderRadius=
{
20
}
gap=
{
"m"
}
shadowColor=
{
"black"
}
shadowOffset=
{
{
width
:
0
,
height
:
0
}
}
shadowOpacity=
{
0.5
}
>
<
ErrorIcon
/>
<
Text
>
Une erreur s'est produite
</
Text
>
<
Box
style=
{
{
width
:
"80%"
}
}
>
<
Button
variant=
{
"fullError"
}
textVariants=
{
"white"
}
label=
"Fermer"
onPress=
{
()
=>
{}
}
/>
</
Box
>
</
Box
>
);
};
export
default
ErrorModal
;
src/themes/Theme.tsx
View file @
87e404c9
...
...
@@ -17,6 +17,7 @@ const palette = {
yellow
:
"#F4C44A"
,
red
:
"#FF0000"
,
softRed
:
"#C51605"
,
};
const
theme
=
createTheme
({
...
...
@@ -30,6 +31,7 @@ const theme = createTheme({
gray
:
palette
.
gray
,
yellow
:
palette
.
yellow
,
red
:
palette
.
red
,
softRed
:
palette
.
softRed
,
},
spacing
:
{
s
:
8
,
...
...
@@ -121,6 +123,10 @@ const theme = createTheme({
backgroundColor
:
"secondary"
,
color
:
"white"
,
},
fullError
:
{
backgroundColor
:
"softRed"
,
color
:
"white"
,
},
clean
:
{
backgroundColor
:
"primary"
,
color
:
"secondary"
,
...
...
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