2023-10-23 23:26:27 +02:00
|
|
|
import useTranslation from "next-translate/useTranslation"
|
|
|
|
import type { Error } from "react-component-form"
|
2022-08-26 20:19:31 +02:00
|
|
|
|
2023-10-23 23:26:27 +02:00
|
|
|
const knownErrorKeywords = ["minLength", "maxLength", "format"]
|
2022-08-26 20:19:31 +02:00
|
|
|
|
|
|
|
const getErrorTranslationKey = (error: Error): string => {
|
|
|
|
if (knownErrorKeywords.includes(error?.keyword)) {
|
|
|
|
if (
|
2023-10-23 23:26:27 +02:00
|
|
|
error.keyword === "minLength" &&
|
|
|
|
typeof error.data === "string" &&
|
2022-08-26 20:19:31 +02:00
|
|
|
error.data.length === 0
|
|
|
|
) {
|
2023-10-23 23:26:27 +02:00
|
|
|
return "common:required"
|
2022-08-26 20:19:31 +02:00
|
|
|
}
|
2023-10-23 23:26:27 +02:00
|
|
|
if (error.keyword === "format") {
|
|
|
|
if (error.params["format"] === "email") {
|
|
|
|
return "common:invalid-email"
|
2022-08-26 20:19:31 +02:00
|
|
|
}
|
2023-10-23 23:26:27 +02:00
|
|
|
return "common:invalid"
|
2022-08-26 20:19:31 +02:00
|
|
|
}
|
|
|
|
return `common:${error.keyword}`
|
|
|
|
}
|
2023-10-23 23:26:27 +02:00
|
|
|
return "common:invalid"
|
2022-08-26 20:19:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export const useFormTranslation = () => {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
const getErrorTranslation = (
|
2023-10-23 23:26:27 +02:00
|
|
|
error: Error | undefined,
|
2022-08-26 20:19:31 +02:00
|
|
|
): string | undefined => {
|
|
|
|
if (error != null) {
|
|
|
|
return t(getErrorTranslationKey(error)).replace(
|
2023-10-23 23:26:27 +02:00
|
|
|
"{expected}",
|
|
|
|
error?.params?.["limit"],
|
2022-08-26 20:19:31 +02:00
|
|
|
)
|
|
|
|
}
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
const getFirstErrorTranslation = (
|
2023-10-23 23:26:27 +02:00
|
|
|
errors: Error[] | undefined,
|
2022-08-26 20:19:31 +02:00
|
|
|
): string | undefined => {
|
|
|
|
if (errors != null) {
|
|
|
|
return getErrorTranslation(errors[0])
|
|
|
|
}
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
return { getFirstErrorTranslation, getErrorTranslation }
|
|
|
|
}
|