Buckets:
| import type { $ZodStringFormats } from "../core/checks.js"; | |
| import type * as errors from "../core/errors.js"; | |
| import * as util from "../core/util.js"; | |
| const error: () => errors.$ZodErrorMap = () => { | |
| const Sizable: Record<string, { unit: string; verb: string }> = { | |
| string: { unit: "znaków", verb: "mieć" }, | |
| file: { unit: "bajtów", verb: "mieć" }, | |
| array: { unit: "elementów", verb: "mieć" }, | |
| set: { unit: "elementów", verb: "mieć" }, | |
| }; | |
| function getSizing(origin: string): { unit: string; verb: string } | null { | |
| return Sizable[origin] ?? null; | |
| } | |
| const parsedType = (data: any): string => { | |
| const t = typeof data; | |
| switch (t) { | |
| case "number": { | |
| return Number.isNaN(data) ? "NaN" : "liczba"; | |
| } | |
| case "object": { | |
| if (Array.isArray(data)) { | |
| return "tablica"; | |
| } | |
| if (data === null) { | |
| return "null"; | |
| } | |
| if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) { | |
| return data.constructor.name; | |
| } | |
| } | |
| } | |
| return t; | |
| }; | |
| const Nouns: { | |
| [k in $ZodStringFormats | (string & {})]?: string; | |
| } = { | |
| regex: "wyrażenie", | |
| email: "adres email", | |
| url: "URL", | |
| emoji: "emoji", | |
| uuid: "UUID", | |
| uuidv4: "UUIDv4", | |
| uuidv6: "UUIDv6", | |
| nanoid: "nanoid", | |
| guid: "GUID", | |
| cuid: "cuid", | |
| cuid2: "cuid2", | |
| ulid: "ULID", | |
| xid: "XID", | |
| ksuid: "KSUID", | |
| datetime: "data i godzina w formacie ISO", | |
| date: "data w formacie ISO", | |
| time: "godzina w formacie ISO", | |
| duration: "czas trwania ISO", | |
| ipv4: "adres IPv4", | |
| ipv6: "adres IPv6", | |
| cidrv4: "zakres IPv4", | |
| cidrv6: "zakres IPv6", | |
| base64: "ciąg znaków zakodowany w formacie base64", | |
| base64url: "ciąg znaków zakodowany w formacie base64url", | |
| json_string: "ciąg znaków w formacie JSON", | |
| e164: "liczba E.164", | |
| jwt: "JWT", | |
| template_literal: "wejście", | |
| }; | |
| return (issue) => { | |
| switch (issue.code) { | |
| case "invalid_type": | |
| return `Nieprawidłowe dane wejściowe: oczekiwano ${issue.expected}, otrzymano ${parsedType(issue.input)}`; | |
| case "invalid_value": | |
| if (issue.values.length === 1) | |
| return `Nieprawidłowe dane wejściowe: oczekiwano ${util.stringifyPrimitive(issue.values[0])}`; | |
| return `Nieprawidłowa opcja: oczekiwano jednej z wartości ${util.joinValues(issue.values, "|")}`; | |
| case "too_big": { | |
| const adj = issue.inclusive ? "<=" : "<"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) { | |
| return `Za duża wartość: oczekiwano, że ${issue.origin ?? "wartość"} będzie mieć ${adj}${issue.maximum.toString()} ${sizing.unit ?? "elementów"}`; | |
| } | |
| return `Zbyt duż(y/a/e): oczekiwano, że ${issue.origin ?? "wartość"} będzie wynosić ${adj}${issue.maximum.toString()}`; | |
| } | |
| case "too_small": { | |
| const adj = issue.inclusive ? ">=" : ">"; | |
| const sizing = getSizing(issue.origin); | |
| if (sizing) { | |
| return `Za mała wartość: oczekiwano, że ${issue.origin ?? "wartość"} będzie mieć ${adj}${issue.minimum.toString()} ${sizing.unit ?? "elementów"}`; | |
| } | |
| return `Zbyt mał(y/a/e): oczekiwano, że ${issue.origin ?? "wartość"} będzie wynosić ${adj}${issue.minimum.toString()}`; | |
| } | |
| case "invalid_format": { | |
| const _issue = issue as errors.$ZodStringFormatIssues; | |
| if (_issue.format === "starts_with") | |
| return `Nieprawidłowy ciąg znaków: musi zaczynać się od "${_issue.prefix}"`; | |
| if (_issue.format === "ends_with") return `Nieprawidłowy ciąg znaków: musi kończyć się na "${_issue.suffix}"`; | |
| if (_issue.format === "includes") return `Nieprawidłowy ciąg znaków: musi zawierać "${_issue.includes}"`; | |
| if (_issue.format === "regex") return `Nieprawidłowy ciąg znaków: musi odpowiadać wzorcowi ${_issue.pattern}`; | |
| return `Nieprawidłow(y/a/e) ${Nouns[_issue.format] ?? issue.format}`; | |
| } | |
| case "not_multiple_of": | |
| return `Nieprawidłowa liczba: musi być wielokrotnością ${issue.divisor}`; | |
| case "unrecognized_keys": | |
| return `Nierozpoznane klucze${issue.keys.length > 1 ? "s" : ""}: ${util.joinValues(issue.keys, ", ")}`; | |
| case "invalid_key": | |
| return `Nieprawidłowy klucz w ${issue.origin}`; | |
| case "invalid_union": | |
| return "Nieprawidłowe dane wejściowe"; | |
| case "invalid_element": | |
| return `Nieprawidłowa wartość w ${issue.origin}`; | |
| default: | |
| return `Nieprawidłowe dane wejściowe`; | |
| } | |
| }; | |
| }; | |
| export default function (): { localeError: errors.$ZodErrorMap } { | |
| return { | |
| localeError: error(), | |
| }; | |
| } | |
Xet Storage Details
- Size:
- 4.74 kB
- Xet hash:
- 584fff8bbfcb3b9dda38fbeb189f33af570a5767d2efdcb59743b918b9901099
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.