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(doc): failed to process image upload #4120

Merged
merged 1 commit into from
Nov 21, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export interface IDocClipboardHook {
onCopyProperty?(start: number, end: number): IClipboardPropertyItem;
onCopyContent?(start: number, end: number): string;
onBeforePaste?: (body: IDocumentBody) => IDocumentBody;
onBeforePasteImage?: (file: File) => Promise<{ source: string; imageSourceType: ImageSourceType }>;
onBeforePasteImage?: (file: File) => Promise<{ source: string; imageSourceType: ImageSourceType } | null>;
}

export interface IDocClipboardService {
Expand Down Expand Up @@ -527,6 +527,9 @@ export class DocClipboardService extends Disposable implements IDocClipboardServ

await Promise.all(files.map(async (file, index) => {
const image = await onBeforePasteImage(file);
if (!image) {
return Promise.resolve();
}
const { width = 100, height = 100 } = await getImageSize(file);
const itemId = `paste_image_id_${index}`;
const body = doc.body!;
Expand Down
Loading