- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
110 lines
4.3 KiB
JavaScript
110 lines
4.3 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 FormatDictionary = {
|
|
regex: "输入",
|
|
email: "电子邮件",
|
|
url: "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: "base64编码字符串",
|
|
base64url: "base64url编码字符串",
|
|
json_string: "JSON字符串",
|
|
e164: "E.164号码",
|
|
jwt: "JWT",
|
|
template_literal: "输入",
|
|
};
|
|
const TypeDictionary = {
|
|
nan: "NaN",
|
|
number: "数字",
|
|
array: "数组",
|
|
null: "空值(null)",
|
|
};
|
|
return (issue) => {
|
|
switch (issue.code) {
|
|
case "invalid_type": {
|
|
const expected = TypeDictionary[issue.expected] ?? issue.expected;
|
|
const receivedType = util.parsedType(issue.input);
|
|
const received = TypeDictionary[receivedType] ?? receivedType;
|
|
if (/^[A-Z]/.test(issue.expected)) {
|
|
return `无效输入:期望 instanceof ${issue.expected},实际接收 ${received}`;
|
|
}
|
|
return `无效输入:期望 ${expected},实际接收 ${received}`;
|
|
}
|
|
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 ?? "值"} ${adj}${issue.maximum.toString()} ${sizing.unit ?? "个元素"}`;
|
|
return `数值过大:期望 ${issue.origin ?? "值"} ${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 `无效${FormatDictionary[_issue.format] ?? issue.format}`;
|
|
}
|
|
case "not_multiple_of":
|
|
return `无效数字:必须是 ${issue.divisor} 的倍数`;
|
|
case "unrecognized_keys":
|
|
return `出现未知的键(key): ${util.joinValues(issue.keys, ", ")}`;
|
|
case "invalid_key":
|
|
return `${issue.origin} 中的键(key)无效`;
|
|
case "invalid_union":
|
|
return "无效输入";
|
|
case "invalid_element":
|
|
return `${issue.origin} 中包含无效值(value)`;
|
|
default:
|
|
return `无效输入`;
|
|
}
|
|
};
|
|
};
|
|
export default function () {
|
|
return {
|
|
localeError: error(),
|
|
};
|
|
}
|