Skip to content

Commit

Permalink
Add option to specify a timezone for events (#2623)
Browse files Browse the repository at this point in the history
* Add option to specify a timezone for events

* Amend message, update docs
  • Loading branch information
denispapec authored Jan 15, 2024
1 parent 674d7f2 commit 1f2081a
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 14 deletions.
1 change: 1 addition & 0 deletions docs/widgets/services/calendar.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ widget:
url: https://domain.url/with/link/to.ics # URL with calendar events
name: My Events # required - name for these calendar events
color: zinc # optional - defaults to pre-defined color for the service (zinc for ical)
timezone: America/Los_Angeles # optional - force timezone for events (if it's the same - no change, if missing or different in ical - will be converted to this timezone)
params: # optional - additional params for the service
showName: true # optional - show name before event title in event line - defaults to false
```
Expand Down
10 changes: 6 additions & 4 deletions src/widgets/calendar/agenda.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { DateTime } from "luxon";
import classNames from "classnames";
import { useTranslation } from "next-i18next";

import Event from "./event";
import Event, { compareDateTimezoneAware } from "./event";

export default function Agenda({ service, colorVariants, events, showDate }) {
const { widget } = service;
Expand All @@ -15,8 +15,10 @@ export default function Agenda({ service, colorVariants, events, showDate }) {
const eventsArray = Object.keys(events)
.filter(
(eventKey) =>
showDate.minus({ days: widget?.previousDays ?? 0 }).startOf("day").ts <=
events[eventKey].date?.startOf("day").ts,
showDate
.setZone(events[eventKey].date.zoneName)
.minus({ days: widget?.previousDays ?? 0 })
.startOf("day").ts <= events[eventKey].date?.startOf("day").ts,
)
.map((eventKey) => events[eventKey])
.sort((a, b) => a.date - b.date)
Expand Down Expand Up @@ -56,7 +58,7 @@ export default function Agenda({ service, colorVariants, events, showDate }) {
event={event}
colorVariants={colorVariants}
showDate={j === 0}
showTime={widget?.showTime && event.date.startOf("day").ts === showDate.startOf("day").ts}
showTime={widget?.showTime && compareDateTimezoneAware(showDate, event)}
/>
))}
</div>
Expand Down
4 changes: 4 additions & 0 deletions src/widgets/calendar/event.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@ export default function Event({ event, colorVariants, showDate = false, showTime
</div>
);
}

export function compareDateTimezoneAware(date, event) {
return date.setZone(event.date.zoneName).startOf("day").valueOf() === event.date.startOf("day").valueOf();
}
12 changes: 8 additions & 4 deletions src/widgets/calendar/integrations/ical.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ export default function Integration({ config, params, setEvents, hideErrors }) {
}
}

const startDate = DateTime.fromISO(params.start);
const endDate = DateTime.fromISO(params.end);
const zone = config?.timezone || null;
const startDate = DateTime.fromISO(params.start, { zone });
const endDate = DateTime.fromISO(params.end, { zone });

if (icalError || !parsedIcal || !startDate.isValid || !endDate.isValid) {
return;
Expand All @@ -43,12 +44,15 @@ export default function Integration({ config, params, setEvents, hideErrors }) {
const duration = event.dtend.value - event.dtstart.value;
const days = duration / (1000 * 60 * 60 * 24);

const now = DateTime.now().setZone(zone);
const eventDate = DateTime.fromJSDate(date, { zone });

for (let j = 0; j < days; j += 1) {
eventsToAdd[`${event?.uid?.value}${i}${j}${type}`] = {
title,
date: DateTime.fromJSDate(date).plus({ days: j }),
date: eventDate.plus({ days: j }),
color: config?.color ?? "zinc",
isCompleted: DateTime.fromJSDate(date) < DateTime.now(),
isCompleted: eventDate < now,
additional: event.location?.value,
type: "ical",
};
Expand Down
10 changes: 4 additions & 6 deletions src/widgets/calendar/monthly.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { DateTime, Info } from "luxon";
import classNames from "classnames";
import { useTranslation } from "next-i18next";

import Event from "./event";
import Event, { compareDateTimezoneAware } from "./event";

const cellStyle = "relative w-10 flex items-center justify-center flex-col";
const monthButton = "pl-6 pr-6 ml-2 mr-2 hover:bg-theme-100/20 dark:hover:bg-white/5 rounded-md cursor-pointer";
Expand All @@ -12,9 +12,7 @@ export function Day({ weekNumber, weekday, events, colorVariants, showDate, setS
const currentDate = DateTime.now();

const cellDate = showDate.set({ weekday, weekNumber }).startOf("day");
const filteredEvents = events?.filter(
(event) => event.date?.startOf("day").toUnixInteger() === cellDate.toUnixInteger(),
);
const filteredEvents = events?.filter((event) => compareDateTimezoneAware(cellDate, event));

const dayStyles = (displayDate) => {
let style = "h-9 ";
Expand Down Expand Up @@ -173,15 +171,15 @@ export default function Monthly({ service, colorVariants, events, showDate, setS

<div className="flex flex-col">
{eventsArray
?.filter((event) => showDate.startOf("day").ts === event.date?.startOf("day").ts)
?.filter((event) => compareDateTimezoneAware(showDate, event))
.slice(0, widget?.maxEvents ?? 10)
.map((event) => (
<Event
key={`event-monthly-${event.title}-${event.date}-${event.additional}`}
event={event}
colorVariants={colorVariants}
showDateColumn={widget?.showTime ?? false}
showTime={widget?.showTime && event.date.startOf("day").ts === showDate.startOf("day").ts}
showTime={widget?.showTime && compareDateTimezoneAware(showDate, event)}
/>
))}
</div>
Expand Down

0 comments on commit 1f2081a

Please sign in to comment.