-
Notifications
You must be signed in to change notification settings - Fork 2
implement async convert #743
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
base: main
Are you sure you want to change the base?
Conversation
|
"reload": "Reload", | ||
"export.message.started": "Export file started", | ||
"export.message.succeeded": "Export file succeeded", | ||
"export.header.failed": "export file failed" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"export.header.failed": "export file failed" | |
"export.header.failed": "Export case failed" |
"export.message.started": "Export file started", | ||
"export.message.succeeded": "Export file succeeded", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"export.message.started": "Export file started", | |
"export.message.succeeded": "Export file succeeded", | |
"export.message.started": "Export case started", | |
"export.message.succeeded": "Export case succeeded", |
const eventData = JSON.parse(event.data); | ||
if (eventData?.headers?.notificationType === 'caseExportSucceeded') { | ||
const { caseUuid, userId, exportUuid, error } = eventData.headers; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we can not typing the notification as in study?
abortController: AbortController | ||
) => | ||
backendFetch( | ||
backendFetchText( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exportUuid return as string but when download you send UUID.. it is better to use all as UUID.. (also typing Notification as in study)
No description provided.