All files / app/service events.ts

13.44% Statements 16/119
0% Branches 0/29
0% Functions 0/11
13.44% Lines 16/119

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 26968x 68x 68x                             68x   68x   68x                                   68x             68x           68x                       68x                                 68x                                 68x                                                                           68x                                                                                         68x                                                                                         68x                                                           68x                        
import { Timestamp } from "google-protobuf/google/protobuf/timestamp_pb";
import { StringValue } from "google-protobuf/google/protobuf/wrappers_pb";
import { ListEventsReq } from "proto/communities_pb";
import {
  AttendanceState,
  CancelEventReq,
  CreateEventReq,
  GetEventReq,
  ListAllEventsReq,
  ListEventAttendeesReq,
  ListEventOrganizersReq,
  ListMyEventsReq,
  OfflineEventInformation,
  OnlineEventInformation,
  RequestCommunityInviteReq,
  SetEventAttendanceReq,
  UpdateEventReq,
} from "proto/events_pb";
 
import client from "./client";
 
export async function listCommunityEvents(
  communityId: number,
  pageToken?: string,
  pageSize?: number
) {
  const req = new ListEventsReq();
  req.setCommunityId(communityId);
  Iif (pageToken) {
    req.setPageToken(pageToken);
  }
  Iif (pageSize) {
    req.setPageSize(pageSize);
  }
 
  const res = await client.communities.listEvents(req);
  return res.toObject();
}
 
export async function getEvent(eventId: number) {
  const req = new GetEventReq();
  req.setEventId(eventId);
  const res = await client.events.getEvent(req);
  return res.toObject();
}
 
export function cancelEvent(eventId: number) {
  const req = new CancelEventReq();
  req.setEventId(eventId);
  return client.events.cancelEvent(req);
}
 
export function RequestCommunityInvite(eventId: number) {
  const req = new RequestCommunityInviteReq();
  req.setEventId(eventId);
  return client.events.requestCommunityInvite(req);
}
 
interface ListEventUsersInput {
  eventId: number;
  pageSize?: number;
  pageToken?: string;
}
 
export async function listEventOrganizers({
  eventId,
  pageSize,
  pageToken,
}: ListEventUsersInput) {
  const req = new ListEventOrganizersReq();
  req.setEventId(eventId);
  Iif (pageSize) {
    req.setPageSize(pageSize);
  }
  Iif (pageToken) {
    req.setPageToken(pageToken);
  }
  const res = await client.events.listEventOrganizers(req);
  return res.toObject();
}
 
export async function listEventAttendees({
  eventId,
  pageSize,
  pageToken,
}: ListEventUsersInput) {
  const req = new ListEventAttendeesReq();
  req.setEventId(eventId);
  Iif (pageSize) {
    req.setPageSize(pageSize);
  }
  Iif (pageToken) {
    req.setPageToken(pageToken);
  }
  const res = await client.events.listEventAttendees(req);
  return res.toObject();
}
 
export async function setEventAttendance({
  attendanceState,
  eventId,
}: {
  attendanceState: AttendanceState;
  eventId: number;
}) {
  const req = new SetEventAttendanceReq();
  req.setEventId(eventId);
  req.setAttendanceState(attendanceState);
  const res = await client.events.setEventAttendance(req);
  return res.toObject();
}
 
interface EventInput {
  content: string;
  photoKey?: string;
  title: string;
  startTime: Date;
  endTime: Date;
}
 
interface OnlineEventInput extends EventInput {
  isOnline: true;
  parentCommunityId: number;
  link: string;
}
 
interface OfflineEventInput extends EventInput {
  isOnline: false;
  address: string;
  lat: number;
  lng: number;
  parentCommunityId?: number;
}
 
export type CreateEventInput = OnlineEventInput | OfflineEventInput;
 
export async function createEvent(input: CreateEventInput) {
  const req = new CreateEventReq();
  req.setTitle(input.title);
  req.setContent(input.content);
  req.setStartTime(Timestamp.fromDate(input.startTime));
  req.setEndTime(Timestamp.fromDate(input.endTime));
 
  Iif (input.photoKey) {
    req.setPhotoKey(input.photoKey);
  }
 
  if (input.isOnline) {
    const onlineEventInfo = new OnlineEventInformation();
    onlineEventInfo.setLink(input.link);
    req.setParentCommunityId(input.parentCommunityId);
    req.setOnlineInformation(onlineEventInfo);
  } else {
    const offlineEventInfo = new OfflineEventInformation();
    offlineEventInfo.setAddress(input.address);
    offlineEventInfo.setLat(input.lat);
    offlineEventInfo.setLng(input.lng);
    req.setOfflineInformation(offlineEventInfo);
 
    Iif (input.parentCommunityId) {
      req.setParentCommunityId(input.parentCommunityId);
    }
  }
 
  const res = await client.events.createEvent(req);
  return res.toObject();
}
 
export interface UpdateOnlineEventInput
  extends Partial<Omit<OnlineEventInput, "parentCommunityId">> {
  isOnline: true;
}
export interface UpdateOfflineEventInput
  extends Partial<Omit<OfflineEventInput, "parentCommunityId">> {
  isOnline: false;
}
export type UpdateEventInput = (
  | UpdateOnlineEventInput
  | UpdateOfflineEventInput
) & { eventId: number };
 
export async function updateEvent(input: UpdateEventInput) {
  const req = new UpdateEventReq();
  req.setEventId(input.eventId);
  Iif (input.title) {
    req.setTitle(new StringValue().setValue(input.title));
  }
  Iif (input.content) {
    req.setContent(new StringValue().setValue(input.content));
  }
  Iif (input.startTime) {
    req.setStartTime(Timestamp.fromDate(input.startTime));
  }
  Iif (input.endTime) {
    req.setEndTime(Timestamp.fromDate(input.endTime));
  }
 
  Iif (input.photoKey) {
    req.setPhotoKey(new StringValue().setValue(input.photoKey));
  }
 
  if (input.isOnline) {
    Iif (input.link) {
      const onlineEventInfo = new OnlineEventInformation();
      onlineEventInfo.setLink(input.link);
      req.setOnlineInformation(onlineEventInfo);
    }
  } else Iif (input.address && input.lat && input.lng) {
    const offlineEventInfo = new OfflineEventInformation();
    offlineEventInfo.setAddress(input.address);
    offlineEventInfo.setLat(input.lat);
    offlineEventInfo.setLng(input.lng);
    req.setOfflineInformation(offlineEventInfo);
  }
 
  const res = await client.events.updateEvent(req);
  return res.toObject();
}
 
export interface ListAllEventsInput {
  pastEvents: boolean;
  pageSize?: number;
  pageToken?: string;
  showCancelled?: boolean;
}
 
export async function listAllEvents({
  pastEvents = false,
  pageSize,
  pageToken,
  showCancelled,
}: ListAllEventsInput) {
  const req = new ListAllEventsReq();
 
  Iif (pastEvents !== undefined) {
    req.setPast(pastEvents);
  }
  Iif (pageSize) {
    req.setPageSize(pageSize);
  }
  Iif (pageToken) {
    req.setPageToken(pageToken);
  }
  Iif (showCancelled !== undefined) {
    req.setIncludeCancelled(showCancelled);
  }
 
  const res = await client.events.listAllEvents(req);
  return res.toObject();
}
 
interface ListMyEventsInput {
  pageSize?: number;
  pageToken?: string;
}
 
export async function listMyEvents({ pageSize, pageToken }: ListMyEventsInput) {
  const req = new ListMyEventsReq();
  Iif (pageSize) {
    req.setPageSize(pageSize);
  }
  Iif (pageToken) {
    req.setPageToken(pageToken);
  }
 
  const res = await client.events.listMyEvents(req);
  return res.toObject();
}