117 lines
5 KiB
JavaScript
117 lines
5 KiB
JavaScript
import * as util from "../core/util.js";
|
||
const error = () => {
|
||
const Sizable = {
|
||
string: { unit: "אותיות", verb: "לכלול" },
|
||
file: { unit: "בייטים", verb: "לכלול" },
|
||
array: { unit: "פריטים", verb: "לכלול" },
|
||
set: { unit: "פריטים", verb: "לכלול" },
|
||
};
|
||
function getSizing(origin) {
|
||
return Sizable[origin] ?? null;
|
||
}
|
||
const parsedType = (data) => {
|
||
const t = typeof data;
|
||
switch (t) {
|
||
case "number": {
|
||
return Number.isNaN(data) ? "NaN" : "number";
|
||
}
|
||
case "object": {
|
||
if (Array.isArray(data)) {
|
||
return "array";
|
||
}
|
||
if (data === null) {
|
||
return "null";
|
||
}
|
||
if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) {
|
||
return data.constructor.name;
|
||
}
|
||
}
|
||
}
|
||
return t;
|
||
};
|
||
const Nouns = {
|
||
regex: "קלט",
|
||
email: "כתובת אימייל",
|
||
url: "כתובת רשת",
|
||
emoji: "אימוג'י",
|
||
uuid: "UUID",
|
||
uuidv4: "UUIDv4",
|
||
uuidv6: "UUIDv6",
|
||
nanoid: "nanoid",
|
||
guid: "GUID",
|
||
cuid: "cuid",
|
||
cuid2: "cuid2",
|
||
ulid: "ULID",
|
||
xid: "XID",
|
||
ksuid: "KSUID",
|
||
datetime: "תאריך וזמן ISO",
|
||
date: "תאריך ISO",
|
||
time: "זמן ISO",
|
||
duration: "משך זמן ISO",
|
||
ipv4: "כתובת IPv4",
|
||
ipv6: "כתובת IPv6",
|
||
cidrv4: "טווח IPv4",
|
||
cidrv6: "טווח IPv6",
|
||
base64: "מחרוזת בבסיס 64",
|
||
base64url: "מחרוזת בבסיס 64 לכתובות רשת",
|
||
json_string: "מחרוזת JSON",
|
||
e164: "מספר E.164",
|
||
jwt: "JWT",
|
||
template_literal: "קלט",
|
||
};
|
||
return (issue) => {
|
||
switch (issue.code) {
|
||
case "invalid_type":
|
||
return `קלט לא תקין: צריך ${issue.expected}, התקבל ${parsedType(issue.input)}`;
|
||
// return `Invalid input: expected ${issue.expected}, received ${util.getParsedType(issue.input)}`;
|
||
case "invalid_value":
|
||
if (issue.values.length === 1)
|
||
return `קלט לא תקין: צריך ${util.stringifyPrimitive(issue.values[0])}`;
|
||
return `קלט לא תקין: צריך אחת מהאפשרויות ${util.joinValues(issue.values, "|")}`;
|
||
case "too_big": {
|
||
const adj = issue.inclusive ? "<=" : "<";
|
||
const sizing = getSizing(issue.origin);
|
||
if (sizing)
|
||
return `גדול מדי: ${issue.origin ?? "value"} צריך להיות ${adj}${issue.maximum.toString()} ${sizing.unit ?? "elements"}`;
|
||
return `גדול מדי: ${issue.origin ?? "value"} צריך להיות ${adj}${issue.maximum.toString()}`;
|
||
}
|
||
case "too_small": {
|
||
const adj = issue.inclusive ? ">=" : ">";
|
||
const sizing = getSizing(issue.origin);
|
||
if (sizing) {
|
||
return `קטן מדי: ${issue.origin} צריך להיות ${adj}${issue.minimum.toString()} ${sizing.unit}`;
|
||
}
|
||
return `קטן מדי: ${issue.origin} צריך להיות ${adj}${issue.minimum.toString()}`;
|
||
}
|
||
case "invalid_format": {
|
||
const _issue = issue;
|
||
if (_issue.format === "starts_with")
|
||
return `מחרוזת לא תקינה: חייבת להתחיל ב"${_issue.prefix}"`;
|
||
if (_issue.format === "ends_with")
|
||
return `מחרוזת לא תקינה: חייבת להסתיים ב "${_issue.suffix}"`;
|
||
if (_issue.format === "includes")
|
||
return `מחרוזת לא תקינה: חייבת לכלול "${_issue.includes}"`;
|
||
if (_issue.format === "regex")
|
||
return `מחרוזת לא תקינה: חייבת להתאים לתבנית ${_issue.pattern}`;
|
||
return `${Nouns[_issue.format] ?? issue.format} לא תקין`;
|
||
}
|
||
case "not_multiple_of":
|
||
return `מספר לא תקין: חייב להיות מכפלה של ${issue.divisor}`;
|
||
case "unrecognized_keys":
|
||
return `מפתח${issue.keys.length > 1 ? "ות" : ""} לא מזוה${issue.keys.length > 1 ? "ים" : "ה"}: ${util.joinValues(issue.keys, ", ")}`;
|
||
case "invalid_key":
|
||
return `מפתח לא תקין ב${issue.origin}`;
|
||
case "invalid_union":
|
||
return "קלט לא תקין";
|
||
case "invalid_element":
|
||
return `ערך לא תקין ב${issue.origin}`;
|
||
default:
|
||
return `קלט לא תקין`;
|
||
}
|
||
};
|
||
};
|
||
export default function () {
|
||
return {
|
||
localeError: error(),
|
||
};
|
||
}
|