Add groupService functions to add and remove group admins

master
Max 4 years ago
parent 0bb2fcf8d7
commit 0713b7f439

@ -18,7 +18,7 @@ const getGroupGraphqlQuery = `query($groupId: ID!) {
picture
deletable
creator{id name handle}
admins{id name handle}
admins{id name handle profilePicture}
members{id name handle profilePicture}
events{id name dueDate joined}
}
@ -82,6 +82,55 @@ export class GroupService extends BaseService {
}));
}
public addGroupAdmin(userId: string, groupId: string) {
const body = {
query: `mutation($groupId: ID!, $userId: ID!) {
addGroupAdmin(groupId: $groupId, userId: $userId) {
admins{id name handle profilePicture}
}
}`, variables: {
userId,
groupId
}
};
return this.postGraphql(body, null, 0)
.pipe(tap(response => {
const admins: User[] = [];
for (const admin of response.data.addGroupAdmin) {
admins.push(admin.assignFromResponse(admin));
}
const group = this.group.getValue();
group.admins = admins;
this.group.next(group);
}));
}
public removeGroupAdmin(userId: string, groupId: string) {
const body = {
query: `mutation($groupId: ID!, $userId: ID!) {
removeGroupAdmin(groupId: $groupId, userId: $userId) {
admins{id name handle profilePicture}
}
}`, variables: {
userId,
groupId
}
};
return this.postGraphql(body, null, 0)
.pipe(tap(response => {
const admins: User[] = [];
for (const admin of response.data.addGroupAdmin) {
admins.push(admin.assignFromResponse(admin));
}
const group = this.group.getValue();
group.admins = admins;
this.group.next(group);
}));
}
public joinEvent(eventId: string) {
const body = {
query: `mutation($eventId: ID!) {

Loading…
Cancel
Save