Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a basic date picker modal #1098

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions src/core/functions/internal_functions/date/DatePickerModal.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import { TemplaterError } from "utils/Error";
import {
ButtonComponent,
Modal,
moment
} from "obsidian";

export class DateModal extends Modal {
private resolve: (value: string) => void;
private reject: (reason?: TemplaterError) => void;
private submitted = false;
private value: string;

constructor(
private title: string,
private format: string,
) {
super(app);
this.value = moment().format(format);
}

onOpen(): void {
this.titleEl.setText(this.title);
this.createForm();
}

onClose(): void {
this.contentEl.empty();
if (!this.submitted) {
// TOFIX: for some reason throwing TemplaterError on iOS causes the app to freeze.
// this.reject(new TemplaterError("Cancelled prompt"));
this.reject();
}
}

createForm(): void {
const div = this.contentEl.createDiv();
div.addClass("templater-date-div");
const datePicker = this.contentEl.createEl("input");
datePicker.type = "date";
const buttonDiv = this.contentEl.createDiv();
buttonDiv.addClass("templater-button-div");
const submitButton = new ButtonComponent(buttonDiv);
submitButton.buttonEl.addClass("mod-cta");
submitButton.setButtonText("Submit").onClick((evt: Event) => {
this.resolveAndClose(evt);
});

datePicker.addClass("templater-prompt-input");
datePicker.value = this.value;
datePicker.addEventListener("input", (event) => {
this.value = moment((event.target as HTMLInputElement)?.valueAsDate).format(this.format) || moment().format(this.format);
});
}

private resolveAndClose(evt: Event | KeyboardEvent) {
this.submitted = true;
evt.preventDefault();
this.resolve(this.value);
this.close();
}

async openAndGetValue(
resolve: (value: string) => void,
reject: (reason?: TemplaterError) => void
): Promise<void> {
this.resolve = resolve;
this.reject = reject;
this.open();
}
}
33 changes: 33 additions & 0 deletions src/core/functions/internal_functions/date/InternalModuleDate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { TemplaterError } from "utils/Error";
import { InternalModule } from "../InternalModule";
import { ModuleName } from "editor/TpDocumentation";
import { DateModal } from "./DatePickerModal";

export class InternalModuleDate extends InternalModule {
public name: ModuleName = "date";
Expand All @@ -10,6 +11,7 @@ export class InternalModuleDate extends InternalModule {
this.static_functions.set("tomorrow", this.generate_tomorrow());
this.static_functions.set("weekday", this.generate_weekday());
this.static_functions.set("yesterday", this.generate_yesterday());
this.static_functions.set("date_picker", this.generate_date_picker());
}

async create_dynamic_templates(): Promise<void> {}
Expand Down Expand Up @@ -86,4 +88,35 @@ export class InternalModuleDate extends InternalModule {
return window.moment().add(-1, "days").format(format);
};
}

generate_date_picker(): (
title: string,
format: string,
throw_on_cancel: boolean,
) => Promise<string> {
return async (
title: string,
format = "YYYY-MM-DD",
throw_on_cancel = false
): Promise<string> => {
const datePicker = new DateModal(
title,
format
);
const promise = new Promise(
(
resolve: (value: any) => void,
reject: (reason?: TemplaterError) => void
) => datePicker.openAndGetValue(resolve, reject)
);
try {
return await promise;
} catch (error) {
if (throw_on_cancel) {
throw error;
}
return null as any;
}
};
}
}