import { createEvent } from "ics"; import dayjs, { Dayjs } from "dayjs"; import EventMail from "./EventMail"; import utc from "dayjs/plugin/utc"; import timezone from "dayjs/plugin/timezone"; import toArray from "dayjs/plugin/toArray"; import localizedFormat from "dayjs/plugin/localizedFormat"; import { stripHtml } from "./helpers"; dayjs.extend(utc); dayjs.extend(timezone); dayjs.extend(toArray); dayjs.extend(localizedFormat); export default class EventOrganizerMail extends EventMail { /** * Returns the instance's event as an iCal event in string representation. * @protected */ protected getiCalEventAsString(): string { const icsEvent = createEvent({ start: dayjs(this.calEvent.startTime) .utc() .toArray() .slice(0, 6) .map((v, i) => (i === 1 ? v + 1 : v)), startInputType: "utc", productId: "calendso/ics", title: `${this.calEvent.type} with ${this.calEvent.attendees[0].name}`, description: this.calEvent.description + stripHtml(this.getAdditionalBody()) + stripHtml(this.getAdditionalFooter()), duration: { minutes: dayjs(this.calEvent.endTime).diff(dayjs(this.calEvent.startTime), "minute") }, organizer: { name: this.calEvent.organizer.name, email: this.calEvent.organizer.email }, attendees: this.calEvent.attendees.map((attendee: unknown) => ({ name: attendee.name, email: attendee.email, })), status: "CONFIRMED", }); if (icsEvent.error) { throw icsEvent.error; } return icsEvent.value; } protected getBodyHeader(): string { return "A new event has been scheduled."; } protected getBodyText(): string { return "You and any other attendees have been emailed with this information."; } protected getImage(): string { return ``; } /** * Returns the email text as HTML representation. * * @protected */ protected getHtmlRepresentation(): string { return ( `
${this.getBodyText()}
What | ${this.calEvent.type} |
When | ${this.getInviteeStart().format("dddd, LL")} ${this.getInviteeStart().format("h:mma")} (${ this.calEvent.attendees[0].timeZone }) |
Who | ${this.calEvent.attendees[0].name} ${this.calEvent.attendees[0].email} |
Where | ${this.getLocation()} |
Notes | ${this.calEvent.description} |