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

fix: poll interval to request Notion #9

Merged
merged 5 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions src/NotionExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ export class NotionExporter {

private pollTask = (
taskId: string,
pollInterval: number = 50
pollInterval: number = 500
yannbolliger marked this conversation as resolved.
Show resolved Hide resolved
): Promise<string> =>
new Promise((resolve, reject) => {
const poll = async () => {
const task = await this.getTask(taskId)
if (task.state === "success" && task.status.exportURL)
resolve(task.status.exportURL)
else if (task.state === "in_progress" || task.state === "not_started") {
setTimeout(poll, pollInterval)
setTimeout(poll, this.config.pollInterval || pollInterval)
} else {
console.error(taskId, task)
reject(`Export task failed: ${taskId}.`)
Expand Down
3 changes: 3 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,13 @@ export interface Config {
locale?: string
/** Export all blocks of the DB/page or just the ones in the current view. Default: "all" */
collectionViewExportType?: "currentView" | "all"
/** Poll export task finished interval in ms */
pollInterval?: number
}

export const defaultConfig: Config = {
timeZone: "UTC",
locale: "en",
collectionViewExportType: "all",
pollInterval: 2000,
}