a0b98a944f
* feat: introducing TextToDiagram v2 feature * fix: eslint issue * debug mermaid bundle size * tests: covering the utils * fix: import mock chunks dynamically to shrink the bundle size * fix: removing replay feature * fix: removing unused prop * fix: bumping workbox cache limit * snapshots + yarn.lock * bump mermaid-to-excalidraw@2 and split into its own chunk * bump node@20 * css tweaks * move files around & rewrite stream chunk schema * random naming & file structure refactor + some tweaks * fix preview theme * support custom warning renderer * label and css fix * fix and rwrite 429 handling * fix label --------- Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
91 lines
2.1 KiB
TypeScript
91 lines
2.1 KiB
TypeScript
type CANVAS_ERROR_NAMES = "CANVAS_ERROR" | "CANVAS_POSSIBLY_TOO_BIG";
|
|
|
|
export class CanvasError extends Error {
|
|
constructor(
|
|
message: string = "Couldn't export canvas.",
|
|
name: CANVAS_ERROR_NAMES = "CANVAS_ERROR",
|
|
) {
|
|
super();
|
|
this.name = name;
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export class AbortError extends DOMException {
|
|
constructor(message: string = "Request Aborted") {
|
|
super(message, "AbortError");
|
|
}
|
|
}
|
|
|
|
type ImageSceneDataErrorCode =
|
|
| "IMAGE_NOT_CONTAINS_SCENE_DATA"
|
|
| "IMAGE_SCENE_DATA_ERROR";
|
|
|
|
export class ImageSceneDataError extends Error {
|
|
public code;
|
|
constructor(
|
|
message = "Image Scene Data Error",
|
|
code: ImageSceneDataErrorCode = "IMAGE_SCENE_DATA_ERROR",
|
|
) {
|
|
super(message);
|
|
this.name = "EncodingError";
|
|
this.code = code;
|
|
}
|
|
}
|
|
|
|
type WorkerErrorCodes = "WORKER_URL_NOT_DEFINED" | "WORKER_IN_THE_MAIN_CHUNK";
|
|
|
|
export class WorkerUrlNotDefinedError extends Error {
|
|
public code;
|
|
constructor(
|
|
message = "Worker URL is not defined!",
|
|
code: WorkerErrorCodes = "WORKER_URL_NOT_DEFINED",
|
|
) {
|
|
super(message);
|
|
this.name = "WorkerUrlNotDefinedError";
|
|
this.code = code;
|
|
}
|
|
}
|
|
|
|
export class WorkerInTheMainChunkError extends Error {
|
|
public code;
|
|
constructor(
|
|
message = "Worker has to be in a separate chunk!",
|
|
code: WorkerErrorCodes = "WORKER_IN_THE_MAIN_CHUNK",
|
|
) {
|
|
super(message);
|
|
this.name = "WorkerInTheMainChunkError";
|
|
this.code = code;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Use this for generic, handled errors, so you can check against them
|
|
* and rethrow if needed
|
|
*/
|
|
export class ExcalidrawError extends Error {
|
|
constructor(message: string) {
|
|
super(message);
|
|
this.name = "ExcalidrawError";
|
|
}
|
|
}
|
|
|
|
export class RequestError extends Error {
|
|
public status: number;
|
|
public data: any;
|
|
toObject() {
|
|
return { name: this.name, status: this.status, message: this.message };
|
|
}
|
|
constructor({
|
|
message = "Something went wrong",
|
|
status = 500,
|
|
data,
|
|
}: { message?: string; status?: number; data?: any } = {}) {
|
|
super();
|
|
this.name = "RequestError";
|
|
this.message = message;
|
|
this.status = status;
|
|
this.data = data;
|
|
}
|
|
}
|