Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cf-online-ui
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
Model registry
Operate
Environments
Monitor
Incidents
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
TO
cf-online-ui
Commits
9004a89b
Commit
9004a89b
authored
4 years ago
by
xaralis
Browse files
Options
Downloads
Patches
Plain Diff
feat: use form onSubmit over button clicks
parent
39c6d104
No related branches found
No related tags found
No related merge requests found
Pipeline
#2079
passed
4 years ago
Stage: build
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.env
+1
-1
1 addition, 1 deletion
.env
src/api.js
+1
-0
1 addition, 0 deletions
src/api.js
src/containers/AddAnnouncementForm.jsx
+5
-3
5 additions, 3 deletions
src/containers/AddAnnouncementForm.jsx
src/containers/AddPostForm.jsx
+5
-3
5 additions, 3 deletions
src/containers/AddPostForm.jsx
with
12 additions
and
7 deletions
.env
+
1
−
1
View file @
9004a89b
REACT_APP_STYLEGUIDE_URL=https://styleguide.pir-test.eu/2.3.3
REACT_APP_STYLEGUIDE_URL=https://styleguide.pir-test.eu/2.3.3
REACT_APP_API_BASE_URL=https://cf2021.pir
-test.eu
/api
REACT_APP_API_BASE_URL=https://cf2021.pir
ati.cz
/api
REACT_APP_MATOMO_ID=135
REACT_APP_MATOMO_ID=135
REACT_APP_SENTRY_DSN=https://aa80453ff4d54b9a9c1b49e79060498a@sentry.pir-test.eu/14
REACT_APP_SENTRY_DSN=https://aa80453ff4d54b9a9c1b49e79060498a@sentry.pir-test.eu/14
This diff is collapsed.
Click to expand it.
src/api.js
+
1
−
0
View file @
9004a89b
...
@@ -20,6 +20,7 @@ export const fetch = async (
...
@@ -20,6 +20,7 @@ export const fetch = async (
body
,
body
,
method
,
method
,
headers
,
headers
,
redirect
:
"
follow
"
,
});
});
if
(
!!
expectedStatus
&&
response
.
status
!==
expectedStatus
)
{
if
(
!!
expectedStatus
&&
response
.
status
!==
expectedStatus
)
{
...
...
This diff is collapsed.
Click to expand it.
src/containers/AddAnnouncementForm.jsx
+
5
−
3
View file @
9004a89b
...
@@ -46,6 +46,8 @@ const AddAnnouncementForm = ({ className }) => {
...
@@ -46,6 +46,8 @@ const AddAnnouncementForm = ({ className }) => {
};
};
const
onAdd
=
async
(
evt
)
=>
{
const
onAdd
=
async
(
evt
)
=>
{
evt
.
preventDefault
();
let
preventAction
=
false
;
let
preventAction
=
false
;
const
payload
=
{
const
payload
=
{
content
:
text
,
content
:
text
,
...
@@ -82,7 +84,7 @@ const AddAnnouncementForm = ({ className }) => {
...
@@ -82,7 +84,7 @@ const AddAnnouncementForm = ({ className }) => {
};
};
return
(
return
(
<
div
className
=
{
className
}
>
<
form
className
=
{
className
}
onSubmit
=
{
onAdd
}
>
{
addingError
&&
(
{
addingError
&&
(
<
ErrorMessage
>
<
ErrorMessage
>
Při přidávání oznámení došlo k problému:
{
addingError
}
.
Při přidávání oznámení došlo k problému:
{
addingError
}
.
...
@@ -150,7 +152,7 @@ const AddAnnouncementForm = ({ className }) => {
...
@@ -150,7 +152,7 @@ const AddAnnouncementForm = ({ className }) => {
</
div
>
</
div
>
<
Button
<
Button
onClick
=
{
onAdd
}
type
=
"submit"
className
=
"text-sm mt-4"
className
=
"text-sm mt-4"
hoverActive
hoverActive
loading
=
{
adding
}
loading
=
{
adding
}
...
@@ -159,7 +161,7 @@ const AddAnnouncementForm = ({ className }) => {
...
@@ -159,7 +161,7 @@ const AddAnnouncementForm = ({ className }) => {
>
>
Přidat oznámení
Přidat oznámení
</
Button
>
</
Button
>
</
div
>
</
form
>
);
);
};
};
...
...
This diff is collapsed.
Click to expand it.
src/containers/AddPostForm.jsx
+
5
−
3
View file @
9004a89b
...
@@ -74,6 +74,8 @@ const AddPostForm = ({ className, canAddProposal }) => {
...
@@ -74,6 +74,8 @@ const AddPostForm = ({ className, canAddProposal }) => {
};
};
const
onAdd
=
async
(
evt
)
=>
{
const
onAdd
=
async
(
evt
)
=>
{
evt
.
preventDefault
();
if
(
!!
text
)
{
if
(
!!
text
)
{
if
(
!
error
)
{
if
(
!
error
)
{
const
result
=
await
(
type
===
"
post
"
?
addPost
:
addProposal
).
run
({
const
result
=
await
(
type
===
"
post
"
?
addPost
:
addProposal
).
run
({
...
@@ -125,7 +127,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
...
@@ -125,7 +127,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
"
p-4 lg:p-8
"
+
(
showAddConfirm
||
!
expanded
?
"
hidden
"
:
""
)
"
p-4 lg:p-8
"
+
(
showAddConfirm
||
!
expanded
?
"
hidden
"
:
""
)
}
}
>
>
<
div
className
=
"space-y-4"
>
<
form
className
=
"space-y-4"
onSubmit
=
{
onAdd
}
>
{
apiError
&&
is429ApiError
&&
(
{
apiError
&&
is429ApiError
&&
(
<
div
className
=
"alert alert--warning"
>
<
div
className
=
"alert alert--warning"
>
<
i
className
=
"alert__icon ico--clock text-lg"
/>
<
i
className
=
"alert__icon ico--clock text-lg"
/>
...
@@ -203,7 +205,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
...
@@ -203,7 +205,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
<
div
className
=
"space-x-4"
>
<
div
className
=
"space-x-4"
>
<
Button
<
Button
onClick
=
{
onAdd
}
type
=
"submit"
disabled
=
{
error
||
addingPost
||
addingProposal
}
disabled
=
{
error
||
addingPost
||
addingProposal
}
loading
=
{
addingPost
||
addingProposal
}
loading
=
{
addingPost
||
addingProposal
}
fullwidth
fullwidth
...
@@ -227,7 +229,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
...
@@ -227,7 +229,7 @@ const AddPostForm = ({ className, canAddProposal }) => {
.
.
</
span
>
</
span
>
</
div
>
</
div
>
</
div
>
</
form
>
</
CardBody
>
</
CardBody
>
</
Card
>
</
Card
>
);
);
...
...
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