50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
const errorMessageForCodes = new Map([
|
|
[0, 'Something went wrong. Please try again a bit later.'],
|
|
[1, 'Comment cannot be found. Please refresh the page and try again.'],
|
|
[2, 'Failed to unmarshal incoming request.'],
|
|
[3, "You don't have permission for this operaton."],
|
|
[4, 'Invalid comment data.'],
|
|
[5, 'Comment cannot be found. Please refresh the page and try again.'],
|
|
[6, 'Site cannot be found. Please refresh the page and try again.'],
|
|
[7, 'User has been blocked.'],
|
|
[8, 'This post is read only.'],
|
|
[9, 'Comment changing failed. Please try again a bit later.'],
|
|
[10, 'It is too late to edit the comment.'],
|
|
[11, 'Comment already has reply, editing is not possible.'],
|
|
[12, 'Cannot save voting result. Please try again a bit later.'],
|
|
[13, 'You cannot vote for your own comment.'],
|
|
[14, 'You have already voted for the comment.'],
|
|
[15, 'Too many votes for the comment.'],
|
|
[16, 'Min score reached for the comment.'],
|
|
[17, 'Action rejected. Please try again a bit later.'],
|
|
[18, 'Requested file cannot be found.'],
|
|
]);
|
|
|
|
export type FetcherResponse =
|
|
| string
|
|
| {
|
|
code?: number;
|
|
details?: string;
|
|
};
|
|
|
|
export function extractErrorMessageFromResponse(response: FetcherResponse): string {
|
|
const defaultErrorMessage = 'Something went wrong. Please try again a bit later.';
|
|
if (!response) {
|
|
return defaultErrorMessage;
|
|
}
|
|
|
|
if (typeof response === 'string') {
|
|
return response;
|
|
}
|
|
|
|
if (typeof response.code === 'number' && errorMessageForCodes.has(response.code)) {
|
|
return errorMessageForCodes.get(response.code)!;
|
|
}
|
|
|
|
if (typeof response.details === 'string') {
|
|
return response.details;
|
|
}
|
|
|
|
return defaultErrorMessage;
|
|
}
|