Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HUB Terra
SMS
Frontend
Commits
f5a95b94
Commit
f5a95b94
authored
4 years ago
by
Nils Brinckmann
Browse files
Options
Downloads
Patches
Plain Diff
And the new contact handling for configurations as well
parent
ec781942
No related branches found
No related tags found
2 merge requests
!90
Draft: restructure frontend properties 2
,
!82
Restructure frontend
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
services/sms/ConfigurationApi.ts
+35
-2
35 additions, 2 deletions
services/sms/ConfigurationApi.ts
with
35 additions
and
2 deletions
services/sms/ConfigurationApi.ts
+
35
−
2
View file @
f5a95b94
...
...
@@ -3,7 +3,7 @@
* Web client of the Sensor Management System software developed within
* the Helmholtz DataHub Initiative by GFZ and UFZ.
*
* Copyright (C) 2020
* Copyright (C) 2020
, 2021
* - Nils Brinckmann (GFZ, nils.brinckmann@gfz-potsdam.de)
* - Marc Hanisch (GFZ, marc.hanisch@gfz-potsdam.de)
* - Helmholtz Centre Potsdam - GFZ German Research Centre for
...
...
@@ -34,6 +34,8 @@
import
{
AxiosInstance
,
Method
}
from
'
axios
'
import
{
Configuration
}
from
'
@/models/Configuration
'
import
{
Contact
}
from
'
@/models/Contact
'
import
{
DynamicLocation
}
from
'
@/models/Location
'
import
{
Project
}
from
'
@/models/Project
'
// eslint-disable-next-line
...
...
@@ -49,7 +51,8 @@ import {
configurationWithMetaToConfigurationByAddingDummyObjects
,
configurationWithMetaToConfigurationByThrowingErrorOnMissing
}
from
'
@/serializers/jsonapi/ConfigurationSerializer
'
import
{
DynamicLocation
}
from
'
@/models/Location
'
import
{
ContactSerializer
}
from
'
@/serializers/jsonapi/ContactSerializer
'
interface
IRelationshipData
{
id
:
string
...
...
@@ -174,6 +177,36 @@ export class ConfigurationApi {
newSearchBuilder
():
ConfigurationSearchBuilder
{
return
new
ConfigurationSearchBuilder
(
this
.
axiosApi
,
this
.
serializer
)
}
findRelatedContacts
(
configurationId
:
string
):
Promise
<
Contact
[]
>
{
const
url
=
configurationId
+
'
/contacts
'
const
params
=
{
'
page[size]
'
:
10000
}
return
this
.
axiosApi
.
get
(
url
,
{
params
}).
then
((
rawServerResponse
)
=>
{
return
new
ContactSerializer
().
convertJsonApiObjectListToModelList
(
rawServerResponse
.
data
)
})
}
removeContact
(
configurationId
:
string
,
contactId
:
string
):
Promise
<
void
>
{
const
url
=
configurationId
+
'
/relationships/contacts
'
const
params
=
{
data
:
[{
type
:
'
contact
'
,
id
:
contactId
}]
}
return
this
.
axiosApi
.
delete
(
url
,
{
data
:
params
})
}
addContact
(
configurationId
:
string
,
contactId
:
string
):
Promise
<
void
>
{
const
url
=
configurationId
+
'
/relationships/contacts
'
const
data
=
[{
type
:
'
contact
'
,
id
:
contactId
}]
return
this
.
axiosApi
.
post
(
url
,
{
data
})
}
}
export
class
ConfigurationSearchBuilder
{
...
...
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