Skip to content
Snippets Groups Projects
Commit f5a95b94 authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

And the new contact handling for configurations as well

parent ec781942
No related branches found
No related tags found
2 merge requests!90Draft: restructure frontend properties 2,!82Restructure frontend
......@@ -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 {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment