修改后台权限

This commit is contained in:
yoyuzh
2026-03-24 14:30:59 +08:00
parent 00f902f475
commit b2d9db7be9
9310 changed files with 1246063 additions and 48 deletions

24
node_modules/hono/dist/jsx/intrinsic-element/common.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
// src/jsx/intrinsic-element/common.ts
var deDupeKeyMap = {
title: [],
script: ["src"],
style: ["data-href"],
link: ["href"],
meta: ["name", "httpEquiv", "charset", "itemProp"]
};
var domRenderers = {};
var dataPrecedenceAttr = "data-precedence";
var isStylesheetLinkWithPrecedence = (props) => props.rel === "stylesheet" && "precedence" in props;
var shouldDeDupeByKey = (tagName, supportSort) => {
if (tagName === "link") {
return supportSort;
}
return deDupeKeyMap[tagName].length > 0;
};
export {
dataPrecedenceAttr,
deDupeKeyMap,
domRenderers,
isStylesheetLinkWithPrecedence,
shouldDeDupeByKey
};

View File

@@ -0,0 +1,165 @@
// src/jsx/intrinsic-element/components.ts
import { raw } from "../../helper/html/index.js";
import { JSXNode, getNameSpaceContext } from "../base.js";
import { toArray } from "../children.js";
import { PERMALINK } from "../constants.js";
import { useContext } from "../context.js";
import {
dataPrecedenceAttr,
deDupeKeyMap,
isStylesheetLinkWithPrecedence,
shouldDeDupeByKey
} from "./common.js";
var metaTagMap = /* @__PURE__ */ new WeakMap();
var insertIntoHead = (tagName, tag, props, precedence) => ({ buffer, context }) => {
if (!buffer) {
return;
}
const map = metaTagMap.get(context) || {};
metaTagMap.set(context, map);
const tags = map[tagName] ||= [];
let duped = false;
const deDupeKeys = deDupeKeyMap[tagName];
const deDupeByKey = shouldDeDupeByKey(tagName, precedence !== void 0);
if (deDupeByKey) {
LOOP: for (const [, tagProps] of tags) {
if (tagName === "link" && !(tagProps.rel === "stylesheet" && tagProps[dataPrecedenceAttr] !== void 0)) {
continue;
}
for (const key of deDupeKeys) {
if ((tagProps?.[key] ?? null) === props?.[key]) {
duped = true;
break LOOP;
}
}
}
}
if (duped) {
buffer[0] = buffer[0].replaceAll(tag, "");
} else if (deDupeByKey || tagName === "link") {
tags.push([tag, props, precedence]);
} else {
tags.unshift([tag, props, precedence]);
}
if (buffer[0].indexOf("</head>") !== -1) {
let insertTags;
if (tagName === "link" || precedence !== void 0) {
const precedences = [];
insertTags = tags.map(([tag2, , tagPrecedence], index) => {
if (tagPrecedence === void 0) {
return [tag2, Number.MAX_SAFE_INTEGER, index];
}
let order = precedences.indexOf(tagPrecedence);
if (order === -1) {
precedences.push(tagPrecedence);
order = precedences.length - 1;
}
return [tag2, order, index];
}).sort((a, b) => a[1] - b[1] || a[2] - b[2]).map(([tag2]) => tag2);
} else {
insertTags = tags.map(([tag2]) => tag2);
}
insertTags.forEach((tag2) => {
buffer[0] = buffer[0].replaceAll(tag2, "");
});
buffer[0] = buffer[0].replace(/(?=<\/head>)/, insertTags.join(""));
}
};
var returnWithoutSpecialBehavior = (tag, children, props) => raw(new JSXNode(tag, props, toArray(children ?? [])).toString());
var documentMetadataTag = (tag, children, props, sort) => {
if ("itemProp" in props) {
return returnWithoutSpecialBehavior(tag, children, props);
}
let { precedence, blocking, ...restProps } = props;
precedence = sort ? precedence ?? "" : void 0;
if (sort) {
restProps[dataPrecedenceAttr] = precedence;
}
const string = new JSXNode(tag, restProps, toArray(children || [])).toString();
if (string instanceof Promise) {
return string.then(
(resString) => raw(string, [
...resString.callbacks || [],
insertIntoHead(tag, resString, restProps, precedence)
])
);
} else {
return raw(string, [insertIntoHead(tag, string, restProps, precedence)]);
}
};
var title = ({ children, ...props }) => {
const nameSpaceContext = getNameSpaceContext();
if (nameSpaceContext) {
const context = useContext(nameSpaceContext);
if (context === "svg" || context === "head") {
return new JSXNode(
"title",
props,
toArray(children ?? [])
);
}
}
return documentMetadataTag("title", children, props, false);
};
var script = ({
children,
...props
}) => {
const nameSpaceContext = getNameSpaceContext();
if (["src", "async"].some((k) => !props[k]) || nameSpaceContext && useContext(nameSpaceContext) === "head") {
return returnWithoutSpecialBehavior("script", children, props);
}
return documentMetadataTag("script", children, props, false);
};
var style = ({
children,
...props
}) => {
if (!["href", "precedence"].every((k) => k in props)) {
return returnWithoutSpecialBehavior("style", children, props);
}
props["data-href"] = props.href;
delete props.href;
return documentMetadataTag("style", children, props, true);
};
var link = ({ children, ...props }) => {
if (["onLoad", "onError"].some((k) => k in props) || props.rel === "stylesheet" && (!("precedence" in props) || "disabled" in props)) {
return returnWithoutSpecialBehavior("link", children, props);
}
return documentMetadataTag("link", children, props, isStylesheetLinkWithPrecedence(props));
};
var meta = ({ children, ...props }) => {
const nameSpaceContext = getNameSpaceContext();
if (nameSpaceContext && useContext(nameSpaceContext) === "head") {
return returnWithoutSpecialBehavior("meta", children, props);
}
return documentMetadataTag("meta", children, props, false);
};
var newJSXNode = (tag, { children, ...props }) => (
// eslint-disable-next-line @typescript-eslint/no-explicit-any
new JSXNode(tag, props, toArray(children ?? []))
);
var form = (props) => {
if (typeof props.action === "function") {
props.action = PERMALINK in props.action ? props.action[PERMALINK] : void 0;
}
return newJSXNode("form", props);
};
var formActionableElement = (tag, props) => {
if (typeof props.formAction === "function") {
props.formAction = PERMALINK in props.formAction ? props.formAction[PERMALINK] : void 0;
}
return newJSXNode(tag, props);
};
var input = (props) => formActionableElement("input", props);
var button = (props) => formActionableElement("button", props);
export {
button,
form,
input,
link,
meta,
script,
style,
title
};