Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
69 lines (58 sloc)
1.94 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <svelte:options immutable /> | |
| <script lang="ts"> | |
| import type { Moment } from "moment"; | |
| import { | |
| Calendar as CalendarBase, | |
| ICalendarSource, | |
| configureGlobalMomentLocale, | |
| } from "obsidian-calendar-ui"; | |
| import { onDestroy } from "svelte"; | |
| import type { ISettings } from "src/settings"; | |
| import { activeFile, dailyNotes, settings, weeklyNotes } from "./stores"; | |
| let today: Moment; | |
| $: today = getToday($settings); | |
| export let displayedMonth: Moment = today; | |
| export let sources: ICalendarSource[]; | |
| export let onHoverDay: (date: Moment, targetEl: EventTarget) => boolean; | |
| export let onHoverWeek: (date: Moment, targetEl: EventTarget) => boolean; | |
| export let onClickDay: (date: Moment, isMetaPressed: boolean) => boolean; | |
| export let onClickWeek: (date: Moment, isMetaPressed: boolean) => boolean; | |
| export let onContextMenuDay: (date: Moment, event: MouseEvent) => boolean; | |
| export let onContextMenuWeek: (date: Moment, event: MouseEvent) => boolean; | |
| export function tick() { | |
| today = window.moment(); | |
| } | |
| function getToday(settings: ISettings) { | |
| configureGlobalMomentLocale(settings.localeOverride, settings.weekStart); | |
| dailyNotes.reindex(); | |
| weeklyNotes.reindex(); | |
| return window.moment(); | |
| } | |
| // 1 minute heartbeat to keep `today` reflecting the current day | |
| let heartbeat = setInterval(() => { | |
| tick(); | |
| const isViewingCurrentMonth = displayedMonth.isSame(today, "day"); | |
| if (isViewingCurrentMonth) { | |
| // if it's midnight on the last day of the month, this will | |
| // update the display to show the new month. | |
| displayedMonth = today; | |
| } | |
| }, 1000 * 60); | |
| onDestroy(() => { | |
| clearInterval(heartbeat); | |
| }); | |
| </script> | |
| <CalendarBase | |
| {sources} | |
| {today} | |
| {onHoverDay} | |
| {onHoverWeek} | |
| {onContextMenuDay} | |
| {onContextMenuWeek} | |
| {onClickDay} | |
| {onClickWeek} | |
| bind:displayedMonth | |
| localeData={today.localeData()} | |
| selectedId={$activeFile} | |
| showWeekNums={$settings.showWeeklyNote} | |
| /> |