Add instant group admin update

master
Max 4 years ago
parent f5328cd57a
commit becbb0a73f

@ -2,6 +2,7 @@ import { User } from 'src/app/models/user';
import { Event } from 'src/app/models/event';
import { IGroup } from './interfaces/IGroup';
import { environment } from 'src/environments/environment';
import { IUser } from './interfaces/IUser';
export class Group {
id: number;
@ -32,17 +33,7 @@ export class Group {
}
}
if (groupDataResponse.admins) {
for (const admin of groupDataResponse.admins) {
user = new User();
this.admins.push(user.assignFromResponse(admin));
}
for (const admin of this.admins) {
for (const member of this.members) {
if (member.userID === admin.userID) {
member.isGroupAdmin = true;
}
}
}
this.updateAdmins(groupDataResponse.admins);
}
if (groupDataResponse.events) {
for (const event of groupDataResponse.events) {
@ -55,6 +46,21 @@ export class Group {
return this;
}
public updateAdmins(admins: IUser[]) {
// this.admins = [];
for (const admin of admins) {
const user = new User();
this.admins.push(user.assignFromResponse(admin));
}
for (const admin of this.admins) {
for (const member of this.members) {
if (member.userID === admin.userID) {
member.isGroupAdmin = true;
}
}
}
}
buildPictureUrl(path: string): string {
if (path) {
return environment.greenvironmentUrl + path;

@ -87,22 +87,17 @@ export class GroupService extends BaseService {
const body = {
query: `mutation($groupId: ID!, $userId: ID!) {
addGroupAdmin(groupId: $groupId, userId: $userId) {
admins{id name handle profilePicture}
admins{id name handle}
}
}`, 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;
group.updateAdmins(response.data.addGroupAdmin);
this.group.next(group);
}));
}
@ -111,22 +106,17 @@ export class GroupService extends BaseService {
const body = {
query: `mutation($groupId: ID!, $userId: ID!) {
removeGroupAdmin(groupId: $groupId, userId: $userId) {
admins{id name handle profilePicture}
admins{id name handle}
}
}`, 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;
group.updateAdmins(response.data.removeGroupAdmin);
this.group.next(group);
}));
}
@ -162,9 +152,7 @@ export class GroupService extends BaseService {
public deleteEvent(eventId: string) {
const body = {
query: `mutation($eventId: ID!) {
deleteEvent(eventId: $eventId) {
joined
}
deleteEvent(eventId: $eventId)
}`, variables: {
eventId
}

Loading…
Cancel
Save