mirror of
https://github.com/documenso/documenso.git
synced 2026-08-19 21:11:54 +10:00
151 lines
6.9 KiB
TypeScript
151 lines
6.9 KiB
TypeScript
import { AppErrorCode } from '@documenso/lib/errors/app-error';
|
|
import type { MessageDescriptor } from '@lingui/core';
|
|
import { msg } from '@lingui/core/macro';
|
|
import { match } from 'ts-pattern';
|
|
|
|
export type ToastMessageDescriptor = {
|
|
title: MessageDescriptor;
|
|
description: MessageDescriptor;
|
|
};
|
|
|
|
export const RECIPIENT_LIMIT_EXCEEDED_ERROR_MESSAGE = {
|
|
title: msg`Too many recipients`,
|
|
description: msg`This document has too many recipients. Please remove some recipients or contact support if you need more.`,
|
|
};
|
|
|
|
export const FAIR_USE_LIMIT_EXCEEDED_ERROR_MESSAGE = {
|
|
title: msg`Fair use limit exceeded`,
|
|
description: msg`Your organisation has reached its plan's fair use limit. Please contact your organisation administrator or support to continue.`,
|
|
};
|
|
|
|
export const getDistributeErrorMessage = (code: string): ToastMessageDescriptor => {
|
|
return match(code)
|
|
.with('RECIPIENT_LIMIT_EXCEEDED', () => RECIPIENT_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.with(AppErrorCode.TOO_MANY_REQUESTS, () => FAIR_USE_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.otherwise(() => ({
|
|
title: msg`Something went wrong`,
|
|
description: msg`An error occurred while distributing the document.`,
|
|
}));
|
|
};
|
|
|
|
export const getDirectTemplateErrorMessage = (code: string): ToastMessageDescriptor => {
|
|
return match(code)
|
|
.with('RECIPIENT_LIMIT_EXCEEDED', () => RECIPIENT_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.with(AppErrorCode.TOO_MANY_REQUESTS, () => FAIR_USE_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.with(AppErrorCode.MISSING_SIGNATURE_FIELD, () => ({
|
|
title: msg`Missing signature fields`,
|
|
description: msg`This direct link template cannot be used because one or more signers do not have a signature field assigned.`,
|
|
}))
|
|
.otherwise(() => ({
|
|
title: msg`Something went wrong`,
|
|
description: msg`We were unable to submit this document at this time. Please try again later.`,
|
|
}));
|
|
};
|
|
|
|
/**
|
|
* Toast messages for errors thrown while a recipient attempts to complete
|
|
* (sign) a document, so the user knows whether retrying can help and what to
|
|
* do next.
|
|
*/
|
|
export const getSigningCompletionErrorMessage = (code: string): ToastMessageDescriptor => {
|
|
return match(code)
|
|
.with(AppErrorCode.NOT_FOUND, () => ({
|
|
title: msg`Document no longer available`,
|
|
description: msg`This document can no longer be signed. It may have been removed by the sender, or your signing access may have been revoked. Please contact the sender for a new signing link.`,
|
|
}))
|
|
.with(AppErrorCode.RECIPIENT_HAS_UNSIGNED_FIELDS, () => ({
|
|
title: msg`Some fields were not saved`,
|
|
description: msg`One or more of your required fields have not been saved. Please refresh the page, complete any empty required fields, and try again.`,
|
|
}))
|
|
.with(AppErrorCode.RECIPIENT_OUT_OF_TURN, () => ({
|
|
title: msg`It's not your turn to sign yet`,
|
|
description: msg`This document is signed in a set order and other recipients must sign before you. You will receive an email when it is your turn.`,
|
|
}))
|
|
.with(AppErrorCode.RECIPIENT_EXPIRED, () => ({
|
|
title: msg`Signing link expired`,
|
|
description: msg`Your signing link has expired. Please contact the sender to request a new one.`,
|
|
}))
|
|
.with(AppErrorCode.ENVELOPE_COMPLETED, () => ({
|
|
title: msg`Document already completed`,
|
|
description: msg`This document has already been completed and no further signatures can be added.`,
|
|
}))
|
|
.with(AppErrorCode.ENVELOPE_REJECTED, () => ({
|
|
title: msg`Document rejected`,
|
|
description: msg`This document has been rejected by a recipient and can no longer be signed.`,
|
|
}))
|
|
.with(AppErrorCode.ENVELOPE_CANCELLED, () => ({
|
|
title: msg`Document cancelled`,
|
|
description: msg`This document has been cancelled by the sender and can no longer be signed. Please contact the sender if you believe this is a mistake.`,
|
|
}))
|
|
.with(AppErrorCode.ENVELOPE_DRAFT, () => ({
|
|
title: msg`Document not ready`,
|
|
description: msg`This document has not been sent for signing yet. Please wait for the sender to send it before signing.`,
|
|
}))
|
|
.otherwise(() => ({
|
|
title: msg`Something went wrong`,
|
|
description: msg`We were unable to submit this document at this time. Please try again later.`,
|
|
}));
|
|
};
|
|
|
|
export const getUploadErrorMessage = (code: string): ToastMessageDescriptor => {
|
|
return match(code)
|
|
.with(AppErrorCode.TOO_MANY_REQUESTS, () => FAIR_USE_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.with('INVALID_DOCUMENT_FILE', () => ({
|
|
title: msg`Error`,
|
|
description: msg`You cannot upload encrypted PDFs.`,
|
|
}))
|
|
.with(AppErrorCode.LIMIT_EXCEEDED, () => ({
|
|
title: msg`Error`,
|
|
description: msg`You have reached your document limit for this month. Please upgrade your plan.`,
|
|
}))
|
|
.with('ENVELOPE_ITEM_LIMIT_EXCEEDED', () => ({
|
|
title: msg`Error`,
|
|
description: msg`You have reached the limit of the number of files per envelope.`,
|
|
}))
|
|
.with('UNSUPPORTED_FILE_TYPE', () => ({
|
|
title: msg`Error`,
|
|
description: msg`This file type isn't supported. Please upload a PDF or Word document.`,
|
|
}))
|
|
.with('CONVERSION_SERVICE_UNAVAILABLE', () => ({
|
|
title: msg`Error`,
|
|
description: msg`Document conversion is temporarily unavailable. Please try again shortly or upload a PDF.`,
|
|
}))
|
|
.with('CONVERSION_FAILED', () => ({
|
|
title: msg`Error`,
|
|
description: msg`We couldn't convert this file. Please check it's a valid Word document or upload a PDF instead.`,
|
|
}))
|
|
.otherwise(() => ({
|
|
title: msg`Error`,
|
|
description: msg`An error occurred while uploading your document.`,
|
|
}));
|
|
};
|
|
|
|
export const getTemplateUseErrorMessage = (code: string): ToastMessageDescriptor => {
|
|
return match(code)
|
|
.with('DOCUMENT_SEND_FAILED', () => ({
|
|
title: msg`Error`,
|
|
description: msg`The document was created but could not be sent to recipients.`,
|
|
}))
|
|
.with(AppErrorCode.MISSING_SIGNATURE_FIELD, () => ({
|
|
title: msg`Missing signature fields`,
|
|
description: msg`The document could not be sent because some signers do not have a signature field. Please edit the template and add a signature field for each signer.`,
|
|
}))
|
|
.with(AppErrorCode.INVALID_BODY, AppErrorCode.INVALID_REQUEST, () => ({
|
|
title: msg`Error`,
|
|
description: msg`The document could not be created because of missing or invalid information. Please review the template's recipients and fields.`,
|
|
}))
|
|
.with(AppErrorCode.NOT_FOUND, () => ({
|
|
title: msg`Error`,
|
|
description: msg`The template or one of its recipients could not be found.`,
|
|
}))
|
|
.with(AppErrorCode.LIMIT_EXCEEDED, () => ({
|
|
title: msg`Error`,
|
|
description: msg`You have reached your document limit for this plan. Please upgrade your plan.`,
|
|
}))
|
|
.with(AppErrorCode.TOO_MANY_REQUESTS, () => FAIR_USE_LIMIT_EXCEEDED_ERROR_MESSAGE)
|
|
.otherwise(() => ({
|
|
title: msg`Error`,
|
|
description: msg`An error occurred while creating document from template.`,
|
|
}));
|
|
};
|