Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fabcity-map-frontend
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
Model registry
Operate
Environments
Terraform modules
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Map
fabcity-map-frontend
Merge requests
!16
Feat/filter tags
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feat/filter tags
feat/filterTags
into
develop
Overview
0
Commits
8
Pipelines
0
Changes
18
Merged
Fabian Schmidt
requested to merge
feat/filterTags
into
develop
3 years ago
Overview
0
Commits
8
Pipelines
0
Changes
18
Expand
closes
#10
Edited
3 years ago
by
Moritz Stückler
0
0
Merge request reports
Compare
develop
version 8
06c7d5b5
3 years ago
version 7
dab48766
3 years ago
version 6
6052277f
3 years ago
version 5
d339c5be
3 years ago
version 4
47040011
3 years ago
version 3
b7b8c1c7
3 years ago
version 2
052542c1
3 years ago
version 1
052542c1
3 years ago
develop (base)
and
latest version
latest version
49732c0c
8 commits,
3 years ago
version 8
06c7d5b5
7 commits,
3 years ago
version 7
dab48766
6 commits,
3 years ago
version 6
6052277f
5 commits,
3 years ago
version 5
d339c5be
4 commits,
3 years ago
version 4
47040011
3 commits,
3 years ago
version 3
b7b8c1c7
2 commits,
3 years ago
version 2
052542c1
1 commit,
3 years ago
version 1
052542c1
5 commits,
3 years ago
18 files
+
4067
−
6485
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
src/components/Form/AddPoiForm.tsx
+
15
−
14
Options
@@ -12,6 +12,7 @@ import TagInput from './TagInput';
import
{
removeDuplicateObjects
}
from
'
../../util/array
'
;
import
{
createPoi
,
createTags
}
from
'
../../graphql/mutations
'
;
import
Spinner
from
'
../Spinner
'
;
import
type
{
CreatePoiMutationMutationVariables
,
Mutation
}
from
'
../../generated/graphql
'
;
const
AddPoiForm
:
React
.
FC
=
()
=>
{
const
[
formData
,
setFormData
]
=
useState
<
PointOfInterestFormData
>
({
@@ -56,32 +57,36 @@ const AddPoiForm: React.FC = () => {
setIsLoading
(
true
);
try
{
const
newTags
:
Tag
[]
=
[];
cons
t
newTagIdsResponse
:
number
[]
=
[];
le
t
newTagIdsResponse
:
string
[]
=
[];
const
oldTags
:
Tag
[]
=
[];
selectedTags
.
forEach
((
tag
)
=>
(
tag
.
id
===
'
draft
'
?
newTags
.
push
(
tag
)
:
oldTags
.
push
(
tag
)));
if
(
newTags
.
length
)
{
const
tagsRes
=
await
fetcher
(
createTags
,
{
const
tagsRes
:
Mutation
=
await
fetcher
(
createTags
,
{
tags
:
newTags
.
map
(({
displayName
,
color
})
=>
({
displayName
,
color
,
})),
});
if
(
tagsRes
.
createTags
.
length
>
0
)
{
tagsRes
.
createTags
.
map
((
newTagResponse
:
{
id
:
string
})
=>
{
newTagIdsResponse
.
push
(
Number
(
newTagResponse
.
id
));
});
if
(
tagsRes
.
createTags
&&
tagsRes
.
createTags
.
length
>
0
)
{
newTagIdsResponse
=
tagsRes
.
createTags
.
filter
((
newTagResponse
)
=>
newTagResponse
?.
id
)
.
map
((
newTagResponse
)
=>
{
return
(
newTagResponse
as
Tag
).
id
;
});
}
}
const
finalData
=
{
...
formData
,
tagIds
:
[...
newTagIdsResponse
,
...
oldTags
.
map
((
oldTag
)
=>
Number
(
oldTag
.
id
))]
};
const
finalData
:
CreatePoiMutationMutationVariables
=
{
...
formData
,
tagIds
:
[...
newTagIdsResponse
,
...
oldTags
.
map
((
oldTag
)
=>
oldTag
.
id
)],
};
const
res
=
await
fetcher
(
createPoi
,
finalData
);
const
res
:
Mutation
=
await
fetcher
(
createPoi
,
finalData
);
if
(
res
.
createPoi
)
{
setNotification
({
title
:
'
Ort hinzugefügt
'
,
text
:
'
Ort wurde erfolgreich hinzugefügt. Bitte überprüfe deine E-Mails und klicke dort auf den Link um deine Mail-Adresse zu verifizieren.
'
,
text
:
'
Ort wurde erfolgreich hinzugefügt. Bitte überprüfe deine E-Mails und klicke dort auf den Link um deine Mail-Adresse zu verifizieren.
'
,
type
:
'
success
'
,
});
history
.
push
(
'
/
'
);
@@ -127,10 +132,6 @@ const AddPoiForm: React.FC = () => {
if
(
draftPoi
)
setFormData
({
...
formData
,
lat
:
draftPoi
[
0
],
lng
:
draftPoi
[
1
]
});
},
[
draftPoi
]);
useEffect
(()
=>
{
console
.
log
(
'
Form Data
'
,
formData
);
},
[
formData
]);
return
(
<
form
className
=
"flex-1 flex flex-col justify-between"
onSubmit
=
{
handleSubmit
}
ref
=
{
formRef
}
>
<
div
className
=
"flex flex-col"
>
Loading