From 2f38b8393e0f341d2ca24cc062dda3b5b7a2c351 Mon Sep 17 00:00:00 2001 From: cdle Date: Thu, 6 Jul 2023 09:22:52 +0800 Subject: [PATCH] x --- README.md | 10 ++-- core/adapter.go | 46 ++++++++++++++----- core/admin/index.html | 2 +- core/admin/p__Proxy__index.414b0326.async.js | 1 + core/admin/p__Proxy__index.7d578af0.async.js | 1 - .../{umi.b07a580e.js => umi.37bf7c95.js} | 2 +- core/base_sender.go | 27 +++++------ core/common/sender.go | 10 ++-- core/plugin_impl.go | 43 ++++++++--------- core/proxy.go | 25 +++++----- 10 files changed, 93 insertions(+), 74 deletions(-) create mode 100644 core/admin/p__Proxy__index.414b0326.async.js delete mode 100644 core/admin/p__Proxy__index.7d578af0.async.js rename core/admin/{umi.b07a580e.js => umi.37bf7c95.js} (99%) diff --git a/README.md b/README.md index 7fabbfd..47c5e08 100644 --- a/README.md +++ b/README.md @@ -293,11 +293,11 @@ interface Sender { getPlatform(): string; //获取消息平台 getBotId(): string; //获取机器人ID reply(content: string): string; //回复消息,媒体消息推荐使用CQ码实现,返回消息ID - recallMessage(meesageId: string | string[]): Promise; //撤回消息 - kick(user_id: string): Promise; //移出群聊 - unkick(user_id: string): Promise; //取消移出群聊 - ban(user_id: string, duration: number): Promise; //禁言,并指定时长 - unban(user_id: string): Promise; //取消禁言 + recallMessage(meesageId: string | string[] | number): {error: string}; //撤回消息,number类型时为延时毫秒 + kick(user_id: string): {error: string}; //移出群聊 + unkick(user_id: string): {error: string}; //取消移出群聊 + ban(user_id: string, duration: number): {error: string}; //禁言,并指定时长 + unban(user_id: string): {error: string}; //取消禁言 } ``` diff --git a/core/adapter.go b/core/adapter.go index e45919f..ba99825 100644 --- a/core/adapter.go +++ b/core/adapter.go @@ -740,36 +740,60 @@ func (sender *CustomSender) Copy() common.Sender { return &new } -func (sender *CustomSender) RecallMessage(ps ...interface{}) error { +func (sender *CustomSender) RecallMessage(ps ...interface{}) { + recalls := []func(){} + var timeout int for _, p := range ps { switch p := p.(type) { + case int, int64: + timeout = utils.Int(p) case string: - sender.Reply(mystr.BuildCQCode("delete", H{"id": p}, "")) + if p != "" { + recalls = append(recalls, func() { + sender.Reply(mystr.BuildCQCode("delete", H{"id": p}, "")) + }) + } case []string: for _, v := range p { - sender.Reply(mystr.BuildCQCode("delete", H{"id": v}, "")) + if v != "" { + recalls = append(recalls, func() { + sender.Reply(mystr.BuildCQCode("delete", H{"id": v}, "")) + }) + } } case [][]string: for _, v := range p { for _, v2 := range v { - sender.Reply(mystr.BuildCQCode("delete", H{"id": v2}, "")) + recalls = append(recalls, func() { + sender.Reply(mystr.BuildCQCode("delete", H{"id": v2}, "")) + }) } } } } - return nil + go func() { + if timeout != 0 { + time.Sleep(time.Millisecond * time.Duration(timeout)) + } + for _, recall := range recalls { + recall() + } + }() } -func (sender *CustomSender) GroupKick(uid string, reject_add_request bool) { - sender.Reply(mystr.BuildCQCode("kick", H{"user_id": uid, "chat_id": sender.GetChatID(), "forever": reject_add_request}, "")) +func (sender *CustomSender) GroupKick(uid string, reject_add_request bool) error { + _, err := sender.Reply(mystr.BuildCQCode("kick", H{"user_id": uid, "chat_id": sender.GetChatID(), "forever": reject_add_request}, "")) + return err } -func (sender *CustomSender) GroupBan(uid string, duration int) { - sender.Reply(mystr.BuildCQCode("ban", H{"user_id": uid, "chat_id": sender.GetChatID(), "duration": duration}, "")) +func (sender *CustomSender) GroupBan(uid string, duration int) error { + _, err := sender.Reply(mystr.BuildCQCode("ban", H{"user_id": uid, "chat_id": sender.GetChatID(), "duration": duration}, "")) + return err } -func (sender *CustomSender) GroupUnban(uid string) { - sender.Reply(mystr.BuildCQCode("ban", H{"user_id": uid, "chat_id": sender.GetChatID(), "duration": 0}, "")) +func (sender *CustomSender) GroupUnban(uid string) error { + _, err := sender.Reply(mystr.BuildCQCode("ban", H{"user_id": uid, "chat_id": sender.GetChatID(), "duration": 0}, "")) + return err } func (sender *CustomSender) IsAdmin() bool { diff --git a/core/admin/index.html b/core/admin/index.html index 8007006..083637e 100644 --- a/core/admin/index.html +++ b/core/admin/index.html @@ -8,6 +8,6 @@
- + \ No newline at end of file diff --git a/core/admin/p__Proxy__index.414b0326.async.js b/core/admin/p__Proxy__index.414b0326.async.js new file mode 100644 index 0000000..9c5c158 --- /dev/null +++ b/core/admin/p__Proxy__index.414b0326.async.js @@ -0,0 +1 @@ +"use strict";(self.webpackChunkant_design_pro=self.webpackChunkant_design_pro||[]).push([[583],{96642:function(ae,w,r){var E=r(75782),T=r(58733),K=r(50959),u=r(72961),B=r(11527),j=["fieldProps","min","proFieldProps","max"],U=function(y,W){var G=y.fieldProps,o=y.min,O=y.proFieldProps,d=y.max,L=(0,T.Z)(y,j);return(0,B.jsx)(u.Z,(0,E.Z)({valueType:"digit",fieldProps:(0,E.Z)({min:o,max:d},G),ref:W,filedConfig:{defaultProps:{width:"100%"}},proFieldProps:O},L))},A=K.forwardRef(U);w.Z=A},59419:function(ae,w,r){var E=r(75782),T=r(58733),K=r(18518),u=r(50959),B=r(60061),j=r(72961),U=r(11527),A=["fieldProps","children","params","proFieldProps","mode","valueEnum","request","showSearch","options"],z=["fieldProps","children","params","proFieldProps","mode","valueEnum","request","options"],y=u.forwardRef(function(d,L){var Y=d.fieldProps,ne=d.children,_=d.params,q=d.proFieldProps,R=d.mode,S=d.valueEnum,V=d.request,e=d.showSearch,c=d.options,l=(0,T.Z)(d,A),a=(0,u.useContext)(B.Z);return(0,U.jsx)(j.Z,(0,E.Z)((0,E.Z)({valueEnum:(0,K.h)(S),request:V,params:_,valueType:"select",filedConfig:{customLightMode:!0},fieldProps:(0,E.Z)({options:c,mode:R,showSearch:e,getPopupContainer:a.getPopupContainer},Y),ref:L,proFieldProps:q},l),{},{children:ne}))}),W=u.forwardRef(function(d,L){var Y=d.fieldProps,ne=d.children,_=d.params,q=d.proFieldProps,R=d.mode,S=d.valueEnum,V=d.request,e=d.options,c=(0,T.Z)(d,z),l=(0,E.Z)({options:e,mode:R||"multiple",labelInValue:!0,showSearch:!0,showArrow:!1,autoClearSearchValue:!0,optionLabelProp:"label"},Y),a=(0,u.useContext)(B.Z);return(0,U.jsx)(j.Z,(0,E.Z)((0,E.Z)({valueEnum:(0,K.h)(S),request:V,params:_,valueType:"select",filedConfig:{customLightMode:!0},fieldProps:(0,E.Z)({getPopupContainer:a.getPopupContainer},l),ref:L,proFieldProps:q},c),{},{children:ne}))}),G=y,o=W,O=G;O.SearchSelect=o,O.displayName="ProFormComponent",w.Z=O},40792:function(ae,w,r){var E=r(75782),T=r(58733),K=r(50959),u=r(72961),B=r(11527),j=["fieldProps","unCheckedChildren","checkedChildren","proFieldProps"],U=K.forwardRef(function(A,z){var y=A.fieldProps,W=A.unCheckedChildren,G=A.checkedChildren,o=A.proFieldProps,O=(0,T.Z)(A,j);return(0,B.jsx)(u.Z,(0,E.Z)({valueType:"switch",fieldProps:(0,E.Z)({unCheckedChildren:W,checkedChildren:G},y),ref:z,valuePropName:"checked",proFieldProps:o,filedConfig:{valuePropName:"checked",ignoreWidth:!0}},O))});w.Z=U},66732:function(ae,w,r){var E=r(75782),T=r(58733),K=r(50959),u=r(72961),B=r(11527),j=["fieldProps","proFieldProps"],U=["fieldProps","proFieldProps"],A="text",z=function(o){var O=o.fieldProps,d=o.proFieldProps,L=(0,T.Z)(o,j);return(0,B.jsx)(u.Z,(0,E.Z)({valueType:A,fieldProps:O,filedConfig:{valueType:A},proFieldProps:d},L))},y=function(o){var O=o.fieldProps,d=o.proFieldProps,L=(0,T.Z)(o,U);return(0,B.jsx)(u.Z,(0,E.Z)({valueType:"password",fieldProps:O,proFieldProps:d,filedConfig:{valueType:A}},L))},W=z;W.Password=y,W.displayName="ProFormComponent",w.Z=W},82730:function(ae,w,r){r.r(w),r.d(w,{default:function(){return oe}});var E=r(25359),T=r.n(E),K=r(49811),u=r.n(K),B=r(54306),j=r.n(B),U=r(27693),z={randomUUID:typeof crypto!="undefined"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};let y;const W=new Uint8Array(16);function G(){if(!y&&(y=typeof crypto!="undefined"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!y))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return y(W)}const o=[];for(let n=0;n<256;++n)o.push((n+256).toString(16).slice(1));function O(n,s=0){return(o[n[s+0]]+o[n[s+1]]+o[n[s+2]]+o[n[s+3]]+"-"+o[n[s+4]]+o[n[s+5]]+"-"+o[n[s+6]]+o[n[s+7]]+"-"+o[n[s+8]]+o[n[s+9]]+"-"+o[n[s+10]]+o[n[s+11]]+o[n[s+12]]+o[n[s+13]]+o[n[s+14]]+o[n[s+15]]).toLowerCase()}function d(n,s=0){const b=O(n,s);if(!validate(b))throw TypeError("Stringified UUID is invalid");return b}var L=null;function Y(n,s,b){if(z.randomUUID&&!s&&!n)return z.randomUUID();n=n||{};const x=n.random||(n.rng||G)();if(x[6]=x[6]&15|64,x[8]=x[8]&63|128,s){b=b||0;for(let m=0;m<16;++m)s[b+m]=x[m];return s}return O(x)}var ne=Y,_=r(12472),q=r(19646),R=r(81308),S=r(66732),V=r(59419),e=r(24176),c=r(96642),l=r(40792),a=r(86195),i=r(4050),M=r(833),v=r(21362),ee=r(68243),N=r(26572),H=r(79112),g=r(50959),t=r(11527),oe=function(){var n=(0,g.useRef)(),s=(0,g.useState)(le),b=j()(s,2),x=b[0],m=b[1],te=[{title:"\u7F16\u53F7",dataIndex:"index",key:"index"},{title:"\u540D\u79F0",dataIndex:"name",key:"name"},{title:"\u7C7B\u578B",dataIndex:"type",key:"type",render:function(Z,p){return(0,t.jsx)(i.Z,{color:"purple",children:Z})}},{title:"\u670D\u52A1\u5668",dataIndex:"server",key:"server"},{title:"\u7AEF\u53E3",dataIndex:"port",key:"port"},{title:"\u5907\u6CE8",dataIndex:"remark",key:"remark"},{title:"\u521B\u5EFA\u65E5\u671F",dataIndex:"created_at",key:"created_at",render:function(Z,p){return(0,t.jsx)("span",{children:new Date(Z*1e3).toLocaleDateString()})}},{title:"\u542F\u7528",dataIndex:"enable",key:"enable",renderFormItem:function(){return(0,t.jsx)(M.Z,{disabled:!0,defaultChecked:!1})},render:function(Z,p){return(0,t.jsx)(M.Z,{onChange:function($){p.enable=$;var h={};h[p.id]=p,(0,a.request)("/api/storage",{method:"put",data:h}).then(function(C){var f,P,Q=!1;for(var J in C.errors)Q=!0,v.ZP.warning(C.errors[J],10);var F=!0;for(var ie in C.messages)F=!0,v.ZP.info(C.messages[ie],10);!Q&&!F&&v.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),(f=n.current)===null||f===void 0||(P=f.reloadAndRest)===null||P===void 0||P.call(f)})},defaultChecked:p==null?void 0:p.enable})}},{title:"\u64CD\u4F5C",valueType:"option",width:"10%",render:function(Z,p){return[(0,t.jsx)("a",{onClick:function(){return m(p)},children:"\u7F16\u8F91"},"more"),(0,t.jsx)("a",{onClick:function(){var $={};$[p.id]="",(0,a.request)("/api/storage",{method:"put",data:$}).then(function(h){var C,f,P=!1;for(var Q in h.errors)P=!0,v.ZP.warning(h.errors[Q],10);var J=!0;for(var F in h.messages)J=!0,v.ZP.info(h.messages[F],10);!P&&!J&&v.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),(C=n.current)===null||C===void 0||(f=C.reloadAndRest)===null||f===void 0||f.call(C)})},children:"\u5220\u9664"},"delete")]}}];return(0,t.jsxs)(_._z,{content:"\u4EE3\u7406\u5217\u8868",children:[(0,t.jsx)(ee.Z,{style:{marginBottom:10},children:(0,t.jsx)(N.ZP,{type:"primary",onClick:function(){m(de)},icon:(0,t.jsx)(U.Z,{}),children:"\u65B0\u5EFA\u4E00\u884C"})}),(0,t.jsx)(q.Z,{search:!1,actionRef:n,rowKey:function(Z){return Z.id},columns:te,request:u()(T()().mark(function D(){var Z,p=arguments;return T()().wrap(function($){for(;;)switch($.prev=$.next){case 0:return Z=p.length>0&&p[0]!==void 0?p[0]:{},$.abrupt("return",(0,a.request)("/api/storage?keys=proxies",{params:Z}).then(function(h){var C=[],f=0;for(var P in h.data)f++,h.data[P].id=P,h.data[P].index=f,C.push(h.data[P]);return h.data=C,h}));case 2:case"end":return $.stop()}},D)}))}),x.id!="-1"&&(0,t.jsx)(X,{open:x.id!="-1",data:x,onCancel:function(){return m(le)},onFinish:function(){var D=u()(T()().mark(function Z(p){var k;return T()().wrap(function(h){for(;;)switch(h.prev=h.next){case 0:k={},x.id==""&&(x.id="proxies."+ne()),k[x.id]=p,(0,a.request)("/api/storage",{method:"put",data:k}).then(function(C){var f,P,Q=!1;for(var J in C.errors)Q=!0,v.ZP.warning(C.errors[J],4);var F=!0;for(var ie in C.messages)F=!0,v.ZP.info(C.messages[ie],4);!Q&&!F&&v.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),m(le),(f=n.current)===null||f===void 0||(P=f.reloadAndRest)===null||P===void 0||P.call(f)});case 4:case"end":return h.stop()}},Z)}));return function(Z){return D.apply(this,arguments)}}()})]})};function X(n){var s,b,x,m,te,D,Z=(0,g.useState)({}),p=j()(Z,2),k=p[0],$=p[1],h=(0,g.useState)({}),C=j()(h,2),f=C[0],P=C[1],Q=(0,g.useState)(n.data.type),J=j()(Q,2),F=J[0],ie=J[1],se=(0,g.useRef)(),fe=(0,g.useState)((s=(b=n.data)===null||b===void 0?void 0:b.plugin)!==null&&s!==void 0?s:""),ve=j()(fe,2),Pe=ve[0],Ee=ve[1],xe=(0,g.useState)((x=n.data["plugin-opts"])===null||x===void 0?void 0:x.mode),he=j()(xe,2),ge=he[0],Ce=he[1];return(0,g.useEffect)(function(){return(0,a.request)("/api/proxy/scripts").then(function(ue){ue.data&&$(ue.data)}),function(){}},[]),(0,t.jsx)(H.Z,{title:n.data.id==0?"\u521B\u5EFA":"\u7F16\u8F91",open:!0,onCancel:n.onCancel,onOk:function(){var I;n.onFinish(se==null||(I=se.current)===null||I===void 0?void 0:I.getFieldsValue())},children:(0,t.jsxs)(R.A,{formRef:se,onValuesChange:function(I){if("type"in I&&ie(I.type),"plugin"in I){var re,ce,Fe=(re=I==null?void 0:I.plugin)!==null&&re!==void 0?re:"";Ee(Fe),(ce=se.current)===null||ce===void 0||ce.setFieldValue("plugin-opts",{}),Ce("")}if(console.log(I),"plugin-opts"in I&&"mode"in I["plugin-opts"]){var me,pe,ye=(me=(pe=I["plugin-opts"])===null||pe===void 0?void 0:pe.mode)!==null&&me!==void 0?me:"";Ce(ye)}},onFinish:n.onFinish,submitter:!1,children:[(0,t.jsxs)(R.A.Group,{title:"\u63CF\u8FF0",children:[(0,t.jsx)(S.Z,{tooltip:"\u7CFB\u7EDF\u552F\u4E00\u4E0D\u53EF\u66F4\u6539\uFF0C\u53EA\u80FD\u5220\u9664\u3002",name:"id",initialValue:n.data.id,label:"\u7FA4\u7EC4ID",hidden:!0}),(0,t.jsx)(S.Z,{name:"name",initialValue:n.data.name,label:"\u540D\u79F0",required:!0}),(0,t.jsx)(S.Z,{name:"remark",initialValue:n.data.remark,label:"\u5907\u6CE8",rules:[{message:"\u8BF7\u586B\u5199\u7FA4\u5907\u6CE8"}]})]}),(0,t.jsx)(R.A.Group,{children:(0,t.jsx)(V.Z,{tooltip:"\u5E73\u53F0\u63A5\u5165\u7CFB\u7EDF\u540E\u5C06\u81EA\u52A8\u51FA\u73B0\u5728\u5217\u8868\u4E2D\u3002",initialValue:n.data.type,valueEnum:{http:"Http",socks5:"Socks5",trojan:"Trojan",vmess:"Vmess",ss:"Shadowsocks",ssr:"ShadowSocksR",snell:"Snell"},width:"md",name:"type",label:"\u7C7B\u578B",required:!0})}),(0,t.jsxs)(e.UW,{title:"\u4EE3\u7406\u53C2\u6570",children:[(0,t.jsx)(S.Z,{name:"server",initialValue:n.data.server,label:"\u5730\u5740",required:!0}),(0,t.jsx)(c.Z,{name:"port",initialValue:n.data.port,label:"\u7AEF\u53E3",required:!0}),["http","socks5"].includes(F)&&(0,t.jsx)(S.Z,{name:"username",initialValue:n.data.username,label:"\u7528\u6237"}),["snell"].includes(F)&&(0,t.jsx)(S.Z,{name:"psk",initialValue:n.data.psk,label:"\u9884\u5171\u4EAB\u5BC6\u94A5"}),["http","ss","socks5","trojan"].includes(F)&&(0,t.jsx)(S.Z,{name:"password",initialValue:n.data.password,label:"\u5BC6\u7801"}),["vmess"].includes(F)&&(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(c.Z,{name:"uuid",initialValue:n.data.uuid,label:"UUID"}),(0,t.jsx)(c.Z,{name:"alterId",initialValue:n.data.alterId,label:"AlterId"})]}),["vmess","trojan"].includes(F)&&(0,t.jsx)(l.Z,{name:"skip-cert-verify",initialValue:n.data["skip-cert-verify"],label:"\u8DF3\u8FC7\u8BC1\u4E66\u9A8C\u8BC1"}),["http","ss","vmess","socks5"].includes(F)&&(0,t.jsx)(l.Z,{name:"tls",initialValue:n.data.tls,label:"TLS"}),["vmess","trojan"].includes(F)&&(0,t.jsx)(t.Fragment,{children:(0,t.jsx)(V.Z,{name:"network",initialValue:n.data.network,label:"\u4F20\u8F93\u65B9\u5F0F",width:"sm",valueEnum:Object.assign({ws:"WebSocket"},F=="vmess"?{h2:"HTTP/2"}:{http:"Http"})})}),["ss","vmess","ssr"].includes(F)&&(0,t.jsx)(V.Z,{name:"cipher",initialValue:n.data.tls?n.data.tls:"none",label:"\u52A0\u5BC6\u65B9\u5F0F",width:"md",valueEnum:F=="vmess"?{none:"none",auto:"Auto","chacha20-poly1305":"ChaCha20-Poly1305","aes-128-gcm":"AES-128-GCM"}:{"aes-128-gcm":"AES-128-GCM","aes-192-gcm":"AES-192-GCM","aes-256-gcm":"AES-256-GCM","aes-128-cfb":"AES-128-CFB","aes-192-cfb":"AES-192-CFB","aes-256-cfb":"AES-256-CFB","aes-128-ctr":"AES-128-CTR","aes-192-ctr":"AES-192-CTR","aes-256-ctr":"AES-256-CTR","rc4-md5":"RC4-MD5","chacha20-ietf":"ChaCha20-IETF",xchacha20:"XChaCha20","chacha20-ietf-poly1305":"ChaCha20-IETF-Poly1305","xchacha20-ietf-poly1305":"XChaCha20-IETF-Poly1305"}}),["ss"].includes(F)&&(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(V.Z,{name:"plugin",initialValue:(m=n.data.plugin)!==null&&m!==void 0?m:"",label:"\u63D2\u4EF6",width:"md",valueEnum:{"":"none",obfs:"obfs","v2ray-plugin":"v2ray-plugin"}}),Pe!=""&&(0,t.jsxs)(e.UW,{title:"\u63D2\u4EF6\u53C2\u6570",children:[(0,t.jsx)(R.A.Group,{children:(0,t.jsx)(V.Z,{name:["plugin-opts","mode"],label:"\u6A21\u5F0F",width:"md",valueEnum:{"":"none",tls:"TLS",http:"Http",websocket:"Websocket"}})}),["websocket"].includes(ge)&&(0,t.jsxs)(t.Fragment,{children:[(0,t.jsxs)(R.A.Group,{children:[(0,t.jsx)(l.Z,{label:"TLS",name:["plugin-opts","tls"]}),(0,t.jsx)(l.Z,{label:"\u8DF3\u8FC7\u8BC1\u4E66\u9A8C\u8BC1",name:["plugin-opts","skip-cert-verify"]})]}),(0,t.jsxs)(R.A.Group,{children:[(0,t.jsx)(l.Z,{label:"WebSocket",name:["plugin-opts","wss"]}),(0,t.jsx)(S.Z,{label:"\u4E3B\u673A(Host)",name:["plugin-opts","host"]}),(0,t.jsx)(S.Z,{label:"\u8DEF\u5F84(Path)",name:["plugin-opts","path"]}),(0,t.jsx)(l.Z,{label:"\u591A\u8DEF\u590D\u7528(Mux)",name:["plugin-opts","mux"]})]}),(0,t.jsx)(R.A.Group,{children:(0,t.jsx)(S.Z,{label:"\u81EA\u5B9A\u4E49\u8BF7\u6C42\u5934(Headers)",name:["plugin-opts","headers","custom"]})})]}),["http","tls"].includes(ge)&&(0,t.jsx)(t.Fragment,{children:(0,t.jsx)(R.A.Group,{children:(0,t.jsx)(S.Z,{label:"\u4E3B\u673A(Host)",name:["plugin-opts","host"]})})})]})]})]}),(0,t.jsxs)(e.UW,{title:"\u652F\u63F4\u65B9\u5F0F",children:[(0,t.jsx)(V.Z,{initialValue:(te=n.data.rules)!==null&&te!==void 0?te:[],tooltip:"\u8F93\u5165\uFF0C\u56DE\u8F66\u6216\u70B9\u51FB\u9009\u62E9\u4EE5\u6DFB\u52A0\u6570\u636E",name:"rules",label:"\u57DF\u540D&IP",fieldProps:{mode:"multiple",showSearch:!0,onSearch:function(I){(0,a.request)("/api/proxy/rules?keyword="+I).then(function(re){re&&re.data&&P(re.data)})}},width:"lg",valueEnum:f}),(0,t.jsx)(V.Z,{initialValue:(D=n.data.plugins)!==null&&D!==void 0?D:[],name:"plugins",label:"\u811A\u672C",width:"lg",fieldProps:{mode:"multiple"},valueEnum:k})]})]})},n.data.chat_id)}var le={id:"-1",index:0,type:"",server:"",port:0,name:""},de={id:"",index:0,type:"",server:"",port:0,name:"",enable:!0}},4050:function(ae,w,r){r.d(w,{Z:function(){return V}});var E=r(96157),T=r(84875),K=r.n(T),u=r(50959),B=r(85548),j=r(78862),U=r(70458);function A(e){return typeof e!="string"?e:e.charAt(0).toUpperCase()+e.slice(1)}var z=r(49272),y=r(42498),W=r(97624),G=r(74074);const o=(e,c,l)=>{const a=A(l);return{[`${e.componentCls}-${c}`]:{color:e[`color${l}`],background:e[`color${a}Bg`],borderColor:e[`color${a}Border`]}}},O=e=>(0,y.Z)(e,(c,l)=>{let{textColor:a,lightBorderColor:i,lightColor:M,darkColor:v}=l;return{[`${e.componentCls}-${c}`]:{color:a,background:M,borderColor:i,"&-inverse":{color:e.colorTextLightSolid,background:v,borderColor:v},[`&${e.componentCls}-borderless`]:{borderColor:"transparent"}}}}),d=e=>{const{paddingXXS:c,lineWidth:l,tagPaddingHorizontal:a,componentCls:i}=e,M=a-l,v=c-l;return{[i]:Object.assign(Object.assign({},(0,z.Wf)(e)),{display:"inline-block",height:"auto",marginInlineEnd:e.marginXS,paddingInline:M,fontSize:e.tagFontSize,lineHeight:`${e.tagLineHeight}px`,whiteSpace:"nowrap",background:e.tagDefaultBg,border:`${e.lineWidth}px ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadiusSM,opacity:1,transition:`all ${e.motionDurationMid}`,textAlign:"start",[`&${i}-rtl`]:{direction:"rtl"},"&, a, a:hover":{color:e.tagDefaultColor},[`${i}-close-icon`]:{marginInlineStart:v,color:e.colorTextDescription,fontSize:e.tagIconSize,cursor:"pointer",transition:`all ${e.motionDurationMid}`,"&:hover":{color:e.colorTextHeading}},[`&${i}-has-color`]:{borderColor:"transparent",[`&, a, a:hover, ${e.iconCls}-close, ${e.iconCls}-close:hover`]:{color:e.colorTextLightSolid}},["&-checkable"]:{backgroundColor:"transparent",borderColor:"transparent",cursor:"pointer",[`&:not(${i}-checkable-checked):hover`]:{color:e.colorPrimary,backgroundColor:e.colorFillSecondary},"&:active, &-checked":{color:e.colorTextLightSolid},"&-checked":{backgroundColor:e.colorPrimary,"&:hover":{backgroundColor:e.colorPrimaryHover}},"&:active":{backgroundColor:e.colorPrimaryActive}},["&-hidden"]:{display:"none"},[`> ${e.iconCls} + span, > span + ${e.iconCls}`]:{marginInlineStart:M}}),[`${i}-borderless`]:{borderColor:"transparent",background:e.tagBorderlessBg}}};var L=(0,W.Z)("Tag",e=>{const{fontSize:c,lineHeight:l,lineWidth:a,fontSizeIcon:i}=e,M=Math.round(c*l),v=e.fontSizeSM,ee=M-a*2,N=e.colorFillQuaternary,H=e.colorText,g=(0,G.TS)(e,{tagFontSize:v,tagLineHeight:ee,tagDefaultBg:N,tagDefaultColor:H,tagIconSize:i-2*a,tagPaddingHorizontal:8,tagBorderlessBg:e.colorFillTertiary});return[d(g),O(g),o(g,"success","Success"),o(g,"processing","Info"),o(g,"error","Error"),o(g,"warning","Warning")]}),Y=function(e,c){var l={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&c.indexOf(a)<0&&(l[a]=e[a]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,a=Object.getOwnPropertySymbols(e);i{const{prefixCls:c,className:l,checked:a,onChange:i,onClick:M}=e,v=Y(e,["prefixCls","className","checked","onChange","onClick"]),{getPrefixCls:ee}=u.useContext(U.E_),N=X=>{i==null||i(!a),M==null||M(X)},H=ee("tag",c),[g,t]=L(H),oe=K()(H,{[`${H}-checkable`]:!0,[`${H}-checkable-checked`]:a},l,t);return g(u.createElement("span",Object.assign({},v,{className:oe,onClick:N})))},q=function(e,c){var l={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&c.indexOf(a)<0&&(l[a]=e[a]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var i=0,a=Object.getOwnPropertySymbols(e);i{const{prefixCls:l,className:a,rootClassName:i,style:M,children:v,icon:ee,color:N,onClose:H,closeIcon:g,closable:t=!1,bordered:oe=!0}=e,X=q(e,["prefixCls","className","rootClassName","style","children","icon","color","onClose","closeIcon","closable","bordered"]),{getPrefixCls:le,direction:de}=u.useContext(U.E_),[n,s]=u.useState(!0);u.useEffect(()=>{"visible"in X&&s(X.visible)},[X.visible]);const b=(0,B.o2)(N)||(0,B.yT)(N),x=Object.assign({backgroundColor:N&&!b?N:void 0},M),m=le("tag",l),[te,D]=L(m),Z=K()(m,{[`${m}-${N}`]:b,[`${m}-has-color`]:N&&!b,[`${m}-hidden`]:!n,[`${m}-rtl`]:de==="rtl",[`${m}-borderless`]:!oe},a,i,D),p=P=>{P.stopPropagation(),H==null||H(P),!P.defaultPrevented&&s(!1)},k=u.useMemo(()=>t?g?u.createElement("span",{className:`${m}-close-icon`,onClick:p},g):u.createElement(E.Z,{className:`${m}-close-icon`,onClick:p}):null,[t,g,m,p]),$=typeof X.onClick=="function"||v&&v.type==="a",h=ee||null,C=h?u.createElement(u.Fragment,null,h,u.createElement("span",null,v)):v,f=u.createElement("span",Object.assign({},X,{ref:c,className:Z,style:x}),C,k);return te($?u.createElement(j.Z,null,f):f)},S=u.forwardRef(R);S.CheckableTag=_;var V=S}}]); diff --git a/core/admin/p__Proxy__index.7d578af0.async.js b/core/admin/p__Proxy__index.7d578af0.async.js deleted file mode 100644 index 73585cb..0000000 --- a/core/admin/p__Proxy__index.7d578af0.async.js +++ /dev/null @@ -1 +0,0 @@ -"use strict";(self.webpackChunkant_design_pro=self.webpackChunkant_design_pro||[]).push([[583],{96642:function(re,L,r){var C=r(75782),b=r(58733),V=r(50959),s=r(72961),R=r(11527),M=["fieldProps","min","proFieldProps","max"],B=function(y,$){var z=y.fieldProps,n=y.min,j=y.proFieldProps,u=y.max,U=(0,b.Z)(y,M);return(0,R.jsx)(s.Z,(0,C.Z)({valueType:"digit",fieldProps:(0,C.Z)({min:n,max:u},z),ref:$,filedConfig:{defaultProps:{width:"100%"}},proFieldProps:j},U))},O=V.forwardRef(B);L.Z=O},59419:function(re,L,r){var C=r(75782),b=r(58733),V=r(18518),s=r(50959),R=r(60061),M=r(72961),B=r(11527),O=["fieldProps","children","params","proFieldProps","mode","valueEnum","request","showSearch","options"],w=["fieldProps","children","params","proFieldProps","mode","valueEnum","request","options"],y=s.forwardRef(function(u,U){var Y=u.fieldProps,ee=u.children,k=u.params,_=u.proFieldProps,Q=u.mode,W=u.valueEnum,X=u.request,e=u.showSearch,v=u.options,c=(0,b.Z)(u,O),a=(0,s.useContext)(R.Z);return(0,B.jsx)(M.Z,(0,C.Z)((0,C.Z)({valueEnum:(0,V.h)(W),request:X,params:k,valueType:"select",filedConfig:{customLightMode:!0},fieldProps:(0,C.Z)({options:v,mode:Q,showSearch:e,getPopupContainer:a.getPopupContainer},Y),ref:U,proFieldProps:_},c),{},{children:ee}))}),$=s.forwardRef(function(u,U){var Y=u.fieldProps,ee=u.children,k=u.params,_=u.proFieldProps,Q=u.mode,W=u.valueEnum,X=u.request,e=u.options,v=(0,b.Z)(u,w),c=(0,C.Z)({options:e,mode:Q||"multiple",labelInValue:!0,showSearch:!0,showArrow:!1,autoClearSearchValue:!0,optionLabelProp:"label"},Y),a=(0,s.useContext)(R.Z);return(0,B.jsx)(M.Z,(0,C.Z)((0,C.Z)({valueEnum:(0,V.h)(W),request:X,params:k,valueType:"select",filedConfig:{customLightMode:!0},fieldProps:(0,C.Z)({getPopupContainer:a.getPopupContainer},c),ref:U,proFieldProps:_},v),{},{children:ee}))}),z=y,n=$,j=z;j.SearchSelect=n,j.displayName="ProFormComponent",L.Z=j},40792:function(re,L,r){var C=r(75782),b=r(58733),V=r(50959),s=r(72961),R=r(11527),M=["fieldProps","unCheckedChildren","checkedChildren","proFieldProps"],B=V.forwardRef(function(O,w){var y=O.fieldProps,$=O.unCheckedChildren,z=O.checkedChildren,n=O.proFieldProps,j=(0,b.Z)(O,M);return(0,R.jsx)(s.Z,(0,C.Z)({valueType:"switch",fieldProps:(0,C.Z)({unCheckedChildren:$,checkedChildren:z},y),ref:w,valuePropName:"checked",proFieldProps:n,filedConfig:{valuePropName:"checked",ignoreWidth:!0}},j))});L.Z=B},66732:function(re,L,r){var C=r(75782),b=r(58733),V=r(50959),s=r(72961),R=r(11527),M=["fieldProps","proFieldProps"],B=["fieldProps","proFieldProps"],O="text",w=function(n){var j=n.fieldProps,u=n.proFieldProps,U=(0,b.Z)(n,M);return(0,R.jsx)(s.Z,(0,C.Z)({valueType:O,fieldProps:j,filedConfig:{valueType:O},proFieldProps:u},U))},y=function(n){var j=n.fieldProps,u=n.proFieldProps,U=(0,b.Z)(n,B);return(0,R.jsx)(s.Z,(0,C.Z)({valueType:"password",fieldProps:j,proFieldProps:u,filedConfig:{valueType:O}},U))},$=w;$.Password=y,$.displayName="ProFormComponent",L.Z=$},82730:function(re,L,r){r.r(L),r.d(L,{default:function(){return te}});var C=r(25359),b=r.n(C),V=r(49811),s=r.n(V),R=r(54306),M=r.n(R),B=r(27693),w={randomUUID:typeof crypto!="undefined"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};let y;const $=new Uint8Array(16);function z(){if(!y&&(y=typeof crypto!="undefined"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!y))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return y($)}const n=[];for(let t=0;t<256;++t)n.push((t+256).toString(16).slice(1));function j(t,i=0){return(n[t[i+0]]+n[t[i+1]]+n[t[i+2]]+n[t[i+3]]+"-"+n[t[i+4]]+n[t[i+5]]+"-"+n[t[i+6]]+n[t[i+7]]+"-"+n[t[i+8]]+n[t[i+9]]+"-"+n[t[i+10]]+n[t[i+11]]+n[t[i+12]]+n[t[i+13]]+n[t[i+14]]+n[t[i+15]]).toLowerCase()}function u(t,i=0){const S=j(t,i);if(!validate(S))throw TypeError("Stringified UUID is invalid");return S}var U=null;function Y(t,i,S){if(w.randomUUID&&!i&&!t)return w.randomUUID();t=t||{};const D=t.random||(t.rng||z)();if(D[6]=D[6]&15|64,D[8]=D[8]&63|128,i){S=S||0;for(let f=0;f<16;++f)i[S+f]=D[f];return i}return j(D)}var ee=Y,k=r(12472),_=r(19646),Q=r(81308),W=r(66732),X=r(59419),e=r(24176),v=r(96642),c=r(40792),a=r(86195),l=r(4050),Z=r(833),h=r(21362),q=r(68243),K=r(26572),N=r(79112),E=r(50959),o=r(11527),te=function(){var t=(0,E.useRef)(),i=(0,E.useState)(ae),S=M()(i,2),D=S[0],f=S[1],ne=[{title:"\u7F16\u53F7",dataIndex:"index",key:"index"},{title:"\u540D\u79F0",dataIndex:"name",key:"name"},{title:"\u7C7B\u578B",dataIndex:"type",key:"type",render:function(T,p){return(0,o.jsx)(l.Z,{color:"purple",children:T})}},{title:"\u670D\u52A1\u5668",dataIndex:"server",key:"server"},{title:"\u7AEF\u53E3",dataIndex:"port",key:"port"},{title:"\u5907\u6CE8",dataIndex:"remark",key:"remark"},{title:"\u521B\u5EFA\u65E5\u671F",dataIndex:"created_at",key:"created_at",render:function(T,p){return(0,o.jsx)("span",{children:new Date(T*1e3).toLocaleDateString()})}},{title:"\u542F\u7528",dataIndex:"enable",key:"enable",renderFormItem:function(){return(0,o.jsx)(Z.Z,{disabled:!0,defaultChecked:!1})},render:function(T,p){return(0,o.jsx)(Z.Z,{onChange:function(A){p.enable=A;var d={};d[p.id]=p,(0,a.request)("/api/storage",{method:"put",data:d}).then(function(g){var P,m,x=!1;for(var F in g.errors)x=!0,h.ZP.warning(g.errors[F],4);var G=!0;for(var le in g.messages)G=!0,h.ZP.info(g.messages[le],4);!x&&!G&&h.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),(P=t.current)===null||P===void 0||(m=P.reloadAndRest)===null||m===void 0||m.call(P)})},defaultChecked:p==null?void 0:p.enable})}},{title:"\u64CD\u4F5C",valueType:"option",width:"10%",render:function(T,p){return[(0,o.jsx)("a",{onClick:function(){return f(p)},children:"\u7F16\u8F91"},"more"),(0,o.jsx)("a",{onClick:function(){var A={};A[p.id]="",(0,a.request)("/api/storage",{method:"put",data:A}).then(function(d){var g,P,m=!1;for(var x in d.errors)m=!0,h.ZP.warning(d.errors[x],4);var F=!0;for(var G in d.messages)F=!0,h.ZP.info(d.messages[G],4);!m&&!F&&h.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),(g=t.current)===null||g===void 0||(P=g.reloadAndRest)===null||P===void 0||P.call(g)})},children:"\u5220\u9664"},"delete")]}}];return(0,o.jsxs)(k._z,{content:"\u4EE3\u7406\u5217\u8868",children:[(0,o.jsx)(q.Z,{style:{marginBottom:10},children:(0,o.jsx)(K.ZP,{type:"primary",onClick:function(){f(oe)},icon:(0,o.jsx)(B.Z,{}),children:"\u65B0\u5EFA\u4E00\u884C"})}),(0,o.jsx)(_.Z,{search:!1,actionRef:t,rowKey:function(T){return T.id},columns:ne,request:s()(b()().mark(function I(){var T,p=arguments;return b()().wrap(function(A){for(;;)switch(A.prev=A.next){case 0:return T=p.length>0&&p[0]!==void 0?p[0]:{},A.abrupt("return",(0,a.request)("/api/storage?keys=proxies",{params:T}).then(function(d){var g=[],P=0;for(var m in d.data)P++,d.data[m].id=m,d.data[m].index=P,g.push(d.data[m]);return d.data=g,d}));case 2:case"end":return A.stop()}},I)}))}),D.id!="-1"&&(0,o.jsx)(J,{open:D.id!="-1",data:D,onCancel:function(){return f(ae)},onFinish:function(){var I=s()(b()().mark(function T(p){var H;return b()().wrap(function(d){for(;;)switch(d.prev=d.next){case 0:H={},D.id==""&&(D.id="proxies."+ee()),H[D.id]=p,(0,a.request)("/api/storage",{method:"put",data:H}).then(function(g){var P,m,x=!1;for(var F in g.errors)x=!0,h.ZP.warning(g.errors[F],4);var G=!0;for(var le in g.messages)G=!0,h.ZP.info(g.messages[le],4);!x&&!G&&h.ZP.success("\u63D0\u4EA4\u6210\u529F\uFF01",1),f(ae),(P=t.current)===null||P===void 0||(m=P.reloadAndRest)===null||m===void 0||m.call(P)});case 4:case"end":return d.stop()}},T)}));return function(T){return I.apply(this,arguments)}}()})]})};function J(t){var i,S,D=(0,E.useState)({}),f=M()(D,2),ne=f[0],I=f[1],T=(0,E.useState)({}),p=M()(T,2),H=p[0],A=p[1],d=(0,E.useRef)(),g=function(x){var F;return(F=d.current)===null||F===void 0?void 0:F.getFieldValue(x)},P=function(x,F){var G;return(G=d.current)===null||G===void 0?void 0:G.setFieldValue(x,F)};return(0,E.useEffect)(function(){var m,x=(m=d.current)===null||m===void 0?void 0:m.getFieldValue("platform");return(0,a.request)("/api/proxy/scripts").then(function(F){F.data&&I(F.data)}),function(){}},[]),(0,o.jsx)(N.Z,{title:t.data.id==0?"\u521B\u5EFA":"\u7F16\u8F91",open:!0,onCancel:t.onCancel,onOk:function(){var x;t.onFinish(d==null||(x=d.current)===null||x===void 0?void 0:x.getFieldsValue())},children:(0,o.jsxs)(Q.A,{formRef:d,onValuesChange:function(x){},onFinish:t.onFinish,submitter:!1,children:[(0,o.jsxs)(Q.A.Group,{title:"\u63CF\u8FF0",children:[(0,o.jsx)(W.Z,{tooltip:"\u7CFB\u7EDF\u552F\u4E00\u4E0D\u53EF\u66F4\u6539\uFF0C\u53EA\u80FD\u5220\u9664\u3002",name:"id",initialValue:t.data.id,label:"\u7FA4\u7EC4ID",hidden:!0}),(0,o.jsx)(W.Z,{name:"name",initialValue:t.data.name,label:"\u540D\u79F0",required:!0}),(0,o.jsx)(W.Z,{name:"remark",initialValue:t.data.remark,label:"\u5907\u6CE8",rules:[{message:"\u8BF7\u586B\u5199\u7FA4\u5907\u6CE8"}]})]}),(0,o.jsx)(Q.A.Group,{children:(0,o.jsx)(X.Z,{tooltip:"\u5E73\u53F0\u63A5\u5165\u7CFB\u7EDF\u540E\u5C06\u81EA\u52A8\u51FA\u73B0\u5728\u5217\u8868\u4E2D\u3002",initialValue:t.data.type,valueEnum:{http:"HTTP",https:"HTTPS",socks5:"SOCKS5","socks5-tls":"SOCKS5-TLS",trojan:"Trojan",vmess:"VMess",shadowsocks:"Shadowsocks",snell:"Snell",http2:"HTTP2",quic:"QUIC"},name:"type",label:"\u7C7B\u578B",required:!0})}),(0,o.jsxs)(e.UW,{title:"\u4EE3\u7406\u53C2\u6570",children:[(0,o.jsx)(W.Z,{name:"server",initialValue:t.data.server,label:"\u5730\u5740",required:!0}),(0,o.jsx)(v.Z,{name:"port",initialValue:t.data.port,label:"\u7AEF\u53E3",required:!0}),(0,o.jsx)(W.Z,{name:"username",initialValue:t.data.username,label:"\u7528\u6237"}),(0,o.jsx)(W.Z,{name:"password",initialValue:t.data.password,label:"\u5BC6\u7801"}),(0,o.jsx)(c.Z,{name:"skip-cert-verify",initialValue:t.data["skip-cert-verify"],label:"\u8DF3\u8FC7\u8BC1\u4E66\u9A8C\u8BC1"}),(0,o.jsx)(c.Z,{name:"tls",initialValue:t.data.tls,label:"TLS"}),(0,o.jsx)(X.Z,{name:"cipher",initialValue:t.data.tls?t.data.tls:"none",label:"\u52A0\u5BC6\u65B9\u5F0F",width:200,valueEnum:{none:"\u4E0D\u52A0\u5BC6","aes-128-gcm":"AES-128-GCM","aes-192-gcm":"AES-192-GCM","aes-256-gcm":"AES-256-GCM","aes-128-ctr":"AES-128-CTR","aes-192-ctr":"AES-192-CTR","aes-256-ctr":"AES-256-CTR","aes-128-cfb":"AES-128-CFB","aes-192-cfb":"AES-192-CFB","aes-256-cfb":"AES-256-CFB","camellia-128-cfb":"Camellia-128-CFB","camellia-192-cfb":"Camellia-192-CFB","camellia-256-cfb":"Camellia-256-CFB","chacha20-ietf-poly1305":"ChaCha20-IETF-Poly1305","chacha20-ietf":"ChaCha20-IETF","rc4-md5":"RC4-MD5","xchacha20-ietf-poly1305":"XChaCha20-IETF-Poly1305"}})]}),(0,o.jsxs)(e.UW,{title:"\u652F\u63F4\u65B9\u5F0F",children:[(0,o.jsx)(X.Z,{initialValue:(i=t.data.rules)!==null&&i!==void 0?i:[],tooltip:"\u8F93\u5165\uFF0C\u56DE\u8F66\u6216\u70B9\u51FB\u9009\u62E9\u4EE5\u6DFB\u52A0\u6570\u636E",name:"rules",label:"\u57DF\u540D&IP",fieldProps:{mode:"multiple",showSearch:!0,onSearch:function(x){(0,a.request)("/api/proxy/rules?keyword="+x).then(function(F){F&&F.data&&A(F.data)})}},width:"lg",valueEnum:H}),(0,o.jsx)(X.Z,{initialValue:(S=t.data.plugins)!==null&&S!==void 0?S:[],name:"plugins",label:"\u811A\u672C",width:"lg",fieldProps:{mode:"multiple"},valueEnum:ne})]})]})},t.data.chat_id)}var ae={id:"-1",index:0,type:"",server:"",port:0,name:""},oe={id:"",index:0,type:"",server:"",port:0,name:"",enable:!0}},4050:function(re,L,r){r.d(L,{Z:function(){return X}});var C=r(96157),b=r(84875),V=r.n(b),s=r(50959),R=r(85548),M=r(78862),B=r(70458);function O(e){return typeof e!="string"?e:e.charAt(0).toUpperCase()+e.slice(1)}var w=r(49272),y=r(42498),$=r(97624),z=r(74074);const n=(e,v,c)=>{const a=O(c);return{[`${e.componentCls}-${v}`]:{color:e[`color${c}`],background:e[`color${a}Bg`],borderColor:e[`color${a}Border`]}}},j=e=>(0,y.Z)(e,(v,c)=>{let{textColor:a,lightBorderColor:l,lightColor:Z,darkColor:h}=c;return{[`${e.componentCls}-${v}`]:{color:a,background:Z,borderColor:l,"&-inverse":{color:e.colorTextLightSolid,background:h,borderColor:h},[`&${e.componentCls}-borderless`]:{borderColor:"transparent"}}}}),u=e=>{const{paddingXXS:v,lineWidth:c,tagPaddingHorizontal:a,componentCls:l}=e,Z=a-c,h=v-c;return{[l]:Object.assign(Object.assign({},(0,w.Wf)(e)),{display:"inline-block",height:"auto",marginInlineEnd:e.marginXS,paddingInline:Z,fontSize:e.tagFontSize,lineHeight:`${e.tagLineHeight}px`,whiteSpace:"nowrap",background:e.tagDefaultBg,border:`${e.lineWidth}px ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadiusSM,opacity:1,transition:`all ${e.motionDurationMid}`,textAlign:"start",[`&${l}-rtl`]:{direction:"rtl"},"&, a, a:hover":{color:e.tagDefaultColor},[`${l}-close-icon`]:{marginInlineStart:h,color:e.colorTextDescription,fontSize:e.tagIconSize,cursor:"pointer",transition:`all ${e.motionDurationMid}`,"&:hover":{color:e.colorTextHeading}},[`&${l}-has-color`]:{borderColor:"transparent",[`&, a, a:hover, ${e.iconCls}-close, ${e.iconCls}-close:hover`]:{color:e.colorTextLightSolid}},["&-checkable"]:{backgroundColor:"transparent",borderColor:"transparent",cursor:"pointer",[`&:not(${l}-checkable-checked):hover`]:{color:e.colorPrimary,backgroundColor:e.colorFillSecondary},"&:active, &-checked":{color:e.colorTextLightSolid},"&-checked":{backgroundColor:e.colorPrimary,"&:hover":{backgroundColor:e.colorPrimaryHover}},"&:active":{backgroundColor:e.colorPrimaryActive}},["&-hidden"]:{display:"none"},[`> ${e.iconCls} + span, > span + ${e.iconCls}`]:{marginInlineStart:Z}}),[`${l}-borderless`]:{borderColor:"transparent",background:e.tagBorderlessBg}}};var U=(0,$.Z)("Tag",e=>{const{fontSize:v,lineHeight:c,lineWidth:a,fontSizeIcon:l}=e,Z=Math.round(v*c),h=e.fontSizeSM,q=Z-a*2,K=e.colorFillQuaternary,N=e.colorText,E=(0,z.TS)(e,{tagFontSize:h,tagLineHeight:q,tagDefaultBg:K,tagDefaultColor:N,tagIconSize:l-2*a,tagPaddingHorizontal:8,tagBorderlessBg:e.colorFillTertiary});return[u(E),j(E),n(E,"success","Success"),n(E,"processing","Info"),n(E,"error","Error"),n(E,"warning","Warning")]}),Y=function(e,v){var c={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&v.indexOf(a)<0&&(c[a]=e[a]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var l=0,a=Object.getOwnPropertySymbols(e);l{const{prefixCls:v,className:c,checked:a,onChange:l,onClick:Z}=e,h=Y(e,["prefixCls","className","checked","onChange","onClick"]),{getPrefixCls:q}=s.useContext(B.E_),K=J=>{l==null||l(!a),Z==null||Z(J)},N=q("tag",v),[E,o]=U(N),te=V()(N,{[`${N}-checkable`]:!0,[`${N}-checkable-checked`]:a},c,o);return E(s.createElement("span",Object.assign({},h,{className:te,onClick:K})))},_=function(e,v){var c={};for(var a in e)Object.prototype.hasOwnProperty.call(e,a)&&v.indexOf(a)<0&&(c[a]=e[a]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var l=0,a=Object.getOwnPropertySymbols(e);l{const{prefixCls:c,className:a,rootClassName:l,style:Z,children:h,icon:q,color:K,onClose:N,closeIcon:E,closable:o=!1,bordered:te=!0}=e,J=_(e,["prefixCls","className","rootClassName","style","children","icon","color","onClose","closeIcon","closable","bordered"]),{getPrefixCls:ae,direction:oe}=s.useContext(B.E_),[t,i]=s.useState(!0);s.useEffect(()=>{"visible"in J&&i(J.visible)},[J.visible]);const S=(0,R.o2)(K)||(0,R.yT)(K),D=Object.assign({backgroundColor:K&&!S?K:void 0},Z),f=ae("tag",c),[ne,I]=U(f),T=V()(f,{[`${f}-${K}`]:S,[`${f}-has-color`]:K&&!S,[`${f}-hidden`]:!t,[`${f}-rtl`]:oe==="rtl",[`${f}-borderless`]:!te},a,l,I),p=m=>{m.stopPropagation(),N==null||N(m),!m.defaultPrevented&&i(!1)},H=s.useMemo(()=>o?E?s.createElement("span",{className:`${f}-close-icon`,onClick:p},E):s.createElement(C.Z,{className:`${f}-close-icon`,onClick:p}):null,[o,E,f,p]),A=typeof J.onClick=="function"||h&&h.type==="a",d=q||null,g=d?s.createElement(s.Fragment,null,d,s.createElement("span",null,h)):h,P=s.createElement("span",Object.assign({},J,{ref:v,className:T,style:D}),g,H);return ne(A?s.createElement(M.Z,null,P):P)},W=s.forwardRef(Q);W.CheckableTag=k;var X=W}}]); diff --git a/core/admin/umi.b07a580e.js b/core/admin/umi.37bf7c95.js similarity index 99% rename from core/admin/umi.b07a580e.js rename to core/admin/umi.37bf7c95.js index 7237618..84a0199 100644 --- a/core/admin/umi.b07a580e.js +++ b/core/admin/umi.37bf7c95.js @@ -287,6 +287,6 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function f(c){return n(c)||i(c)||(0,l.Z)(c)||r()}},34242:function(h,y,e){"use strict";e.d(y,{Z:function(){return i}});var o=e(82604);function n(l,r){if((0,o.Z)(l)!=="object"||l===null)return l;var f=l[Symbol.toPrimitive];if(f!==void 0){var c=f.call(l,r||"default");if((0,o.Z)(c)!=="object")return c;throw new TypeError("@@toPrimitive must return a primitive value.")}return(r==="string"?String:Number)(l)}function i(l){var r=n(l,"string");return(0,o.Z)(r)==="symbol"?r:String(r)}},82604:function(h,y,e){"use strict";e.d(y,{Z:function(){return o}});function o(n){return o=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(i){return typeof i}:function(i){return i&&typeof Symbol=="function"&&i.constructor===Symbol&&i!==Symbol.prototype?"symbol":typeof i},o(n)}},7979:function(h,y,e){"use strict";e.d(y,{Z:function(){return n}});var o=e(45725);function n(i,l){if(i){if(typeof i=="string")return(0,o.Z)(i,l);var r=Object.prototype.toString.call(i).slice(8,-1);if(r==="Object"&&i.constructor&&(r=i.constructor.name),r==="Map"||r==="Set")return Array.from(i);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return(0,o.Z)(i,l)}}},8681:function(h,y,e){"use strict";e.d(y,{Z:function(){return o}});function o(n,i){(i==null||i>n.length)&&(i=n.length);for(var l=0,r=new Array(i);l=i.length?{done:!0}:{done:!1,value:i[f++]}},e:function(g){throw g},f:c}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var u=!0,d=!1,m;return{s:function(){r=r.call(i)},n:function(){var g=r.next();return u=g.done,g},e:function(g){d=!0,m=g},f:function(){try{!u&&r.return!=null&&r.return()}finally{if(d)throw m}}}}},76614:function(h,y,e){"use strict";e.d(y,{Z:function(){return f}});function o(c){return o=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(d){return d.__proto__||Object.getPrototypeOf(d)},o(c)}function n(){if(typeof Reflect=="undefined"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(c){return!1}}var i=e(26143),l=e(60790);function r(c,u){if(u&&((0,i.Z)(u)==="object"||typeof u=="function"))return u;if(u!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return(0,l.Z)(c)}function f(c){var u=n();return function(){var m=o(c),b;if(u){var g=o(this).constructor;b=Reflect.construct(m,arguments,g)}else b=m.apply(this,arguments);return r(this,b)}}},24572:function(h,y,e){"use strict";e.d(y,{Z:function(){return n}});var o=e(1536);function n(i,l,r){return l=(0,o.Z)(l),l in i?Object.defineProperty(i,l,{value:r,enumerable:!0,configurable:!0,writable:!0}):i[l]=r,i}},51163:function(h,y,e){"use strict";e.d(y,{Z:function(){return o}});function o(){return o=Object.assign?Object.assign.bind():function(n){for(var i=1;i=0)&&(r[c]=i[c]);return r}function n(i,l){if(i==null)return{};var r=o(i,l),f,c;if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(i);for(c=0;c=0)&&Object.prototype.propertyIsEnumerable.call(i,f)&&(r[f]=i[f])}return r}},99932:function(h,y,e){"use strict";e.d(y,{Z:function(){return n}});var o=e(26143);function n(){"use strict";n=function(){return i};var i={},l=Object.prototype,r=l.hasOwnProperty,f=Object.defineProperty||function(F,D,w){F[D]=w.value},c=typeof Symbol=="function"?Symbol:{},u=c.iterator||"@@iterator",d=c.asyncIterator||"@@asyncIterator",m=c.toStringTag||"@@toStringTag";function b(F,D,w){return Object.defineProperty(F,D,{value:w,enumerable:!0,configurable:!0,writable:!0}),F[D]}try{b({},"")}catch(F){b=function(w,k,U){return w[k]=U}}function g(F,D,w,k){var U=D&&D.prototype instanceof M?D:M,Z=Object.create(U.prototype),J=new ne(k||[]);return f(Z,"_invoke",{value:V(F,w,J)}),Z}function x(F,D,w){try{return{type:"normal",arg:F.call(D,w)}}catch(k){return{type:"throw",arg:k}}}i.wrap=g;var T={};function M(){}function L(){}function $(){}var O={};b(O,u,function(){return this});var N=Object.getPrototypeOf,j=N&&N(N(oe([])));j&&j!==l&&r.call(j,u)&&(O=j);var I=$.prototype=M.prototype=Object.create(O);function R(F){["next","throw","return"].forEach(function(D){b(F,D,function(w){return this._invoke(D,w)})})}function A(F,D){function w(U,Z,J,ue){var Fe=x(F[U],F,Z);if(Fe.type!=="throw"){var be=Fe.arg,we=be.value;return we&&(0,o.Z)(we)=="object"&&r.call(we,"__await")?D.resolve(we.__await).then(function(De){w("next",De,J,ue)},function(De){w("throw",De,J,ue)}):D.resolve(we).then(function(De){be.value=De,J(be)},function(De){return w("throw",De,J,ue)})}ue(Fe.arg)}var k;f(this,"_invoke",{value:function(Z,J){function ue(){return new D(function(Fe,be){w(Z,J,Fe,be)})}return k=k?k.then(ue,ue):ue()}})}function V(F,D,w){var k="suspendedStart";return function(U,Z){if(k==="executing")throw new Error("Generator is already running");if(k==="completed"){if(U==="throw")throw Z;return _()}for(w.method=U,w.arg=Z;;){var J=w.delegate;if(J){var ue=H(J,w);if(ue){if(ue===T)continue;return ue}}if(w.method==="next")w.sent=w._sent=w.arg;else if(w.method==="throw"){if(k==="suspendedStart")throw k="completed",w.arg;w.dispatchException(w.arg)}else w.method==="return"&&w.abrupt("return",w.arg);k="executing";var Fe=x(F,D,w);if(Fe.type==="normal"){if(k=w.done?"completed":"suspendedYield",Fe.arg===T)continue;return{value:Fe.arg,done:w.done}}Fe.type==="throw"&&(k="completed",w.method="throw",w.arg=Fe.arg)}}}function H(F,D){var w=D.method,k=F.iterator[w];if(k===void 0)return D.delegate=null,w==="throw"&&F.iterator.return&&(D.method="return",D.arg=void 0,H(F,D),D.method==="throw")||w!=="return"&&(D.method="throw",D.arg=new TypeError("The iterator does not provide a '"+w+"' method")),T;var U=x(k,F.iterator,D.arg);if(U.type==="throw")return D.method="throw",D.arg=U.arg,D.delegate=null,T;var Z=U.arg;return Z?Z.done?(D[F.resultName]=Z.value,D.next=F.nextLoc,D.method!=="return"&&(D.method="next",D.arg=void 0),D.delegate=null,T):Z:(D.method="throw",D.arg=new TypeError("iterator result is not an object"),D.delegate=null,T)}function G(F){var D={tryLoc:F[0]};1 in F&&(D.catchLoc=F[1]),2 in F&&(D.finallyLoc=F[2],D.afterLoc=F[3]),this.tryEntries.push(D)}function K(F){var D=F.completion||{};D.type="normal",delete D.arg,F.completion=D}function ne(F){this.tryEntries=[{tryLoc:"root"}],F.forEach(G,this),this.reset(!0)}function oe(F){if(F){var D=F[u];if(D)return D.call(F);if(typeof F.next=="function")return F;if(!isNaN(F.length)){var w=-1,k=function U(){for(;++w=0;--U){var Z=this.tryEntries[U],J=Z.completion;if(Z.tryLoc==="root")return k("end");if(Z.tryLoc<=this.prev){var ue=r.call(Z,"catchLoc"),Fe=r.call(Z,"finallyLoc");if(ue&&Fe){if(this.prev=0;--k){var U=this.tryEntries[k];if(U.tryLoc<=this.prev&&r.call(U,"finallyLoc")&&this.prev=0;--w){var k=this.tryEntries[w];if(k.finallyLoc===D)return this.complete(k.completion,k.afterLoc),K(k),T}},catch:function(D){for(var w=this.tryEntries.length-1;w>=0;--w){var k=this.tryEntries[w];if(k.tryLoc===D){var U=k.completion;if(U.type==="throw"){var Z=U.arg;K(k)}return Z}}throw new Error("illegal catch attempt")},delegateYield:function(D,w,k){return this.delegate={iterator:oe(D),resultName:w,nextLoc:k},this.method==="next"&&(this.arg=void 0),T}},i}},91600:function(h,y,e){"use strict";e.d(y,{Z:function(){return r}});var o=e(20533);function n(f,c){var u=f==null?null:typeof Symbol!="undefined"&&f[Symbol.iterator]||f["@@iterator"];if(u!=null){var d,m,b,g,x=[],T=!0,M=!1;try{if(b=(u=u.call(f)).next,c===0){if(Object(u)!==u)return;T=!1}else for(;!(T=(d=b.call(u)).done)&&(x.push(d.value),x.length!==c);T=!0);}catch(L){M=!0,m=L}finally{try{if(!T&&u.return!=null&&(g=u.return(),Object(g)!==g))return}finally{if(M)throw m}}return x}}var i=e(22266),l=e(71885);function r(f,c){return(0,o.Z)(f)||n(f,c)||(0,i.Z)(f,c)||(0,l.Z)()}},9942:function(h,y,e){"use strict";e.d(y,{Z:function(){return r}});var o=e(20533),n=e(52987),i=e(22266),l=e(71885);function r(f){return(0,o.Z)(f)||(0,n.Z)(f)||(0,i.Z)(f)||(0,l.Z)()}},49544:function(h,y,e){"use strict";e.d(y,{Z:function(){return f}});var o=e(8681);function n(c){if(Array.isArray(c))return(0,o.Z)(c)}var i=e(52987),l=e(22266);function r(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function f(c){return n(c)||(0,i.Z)(c)||(0,l.Z)(c)||r()}},1536:function(h,y,e){"use strict";e.d(y,{Z:function(){return i}});var o=e(26143);function n(l,r){if((0,o.Z)(l)!=="object"||l===null)return l;var f=l[Symbol.toPrimitive];if(f!==void 0){var c=f.call(l,r||"default");if((0,o.Z)(c)!=="object")return c;throw new TypeError("@@toPrimitive must return a primitive value.")}return(r==="string"?String:Number)(l)}function i(l){var r=n(l,"string");return(0,o.Z)(r)==="symbol"?r:String(r)}},26143:function(h,y,e){"use strict";e.d(y,{Z:function(){return o}});function o(n){return o=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(i){return typeof i}:function(i){return i&&typeof Symbol=="function"&&i.constructor===Symbol&&i!==Symbol.prototype?"symbol":typeof i},o(n)}},22266:function(h,y,e){"use strict";e.d(y,{Z:function(){return n}});var o=e(8681);function n(i,l){if(i){if(typeof i=="string")return(0,o.Z)(i,l);var r=Object.prototype.toString.call(i).slice(8,-1);if(r==="Object"&&i.constructor&&(r=i.constructor.name),r==="Map"||r==="Set")return Array.from(i);if(r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return(0,o.Z)(i,l)}}},71448:function(h,y,e){"use strict";e.d(y,{Ab:function(){return l},Fr:function(){return r},G$:function(){return i},K$:function(){return d},MS:function(){return o},h5:function(){return f},lK:function(){return M},uj:function(){return n}});var o="-ms-",n="-moz-",i="-webkit-",l="comm",r="rule",f="decl",c="@page",u="@media",d="@import",m="@charset",b="@viewport",g="@supports",x="@document",T="@namespace",M="@keyframes",L="@font-face",$="@counter-style",O="@font-feature-values"},42727:function(h,y,e){"use strict";e.d(y,{MY:function(){return l}});var o=e(71448),n=e(22697),i=e(97765);function l(d){return(0,i.cE)(r("",null,null,null,[""],d=(0,i.un)(d),0,[0],d))}function r(d,m,b,g,x,T,M,L,$){for(var O=0,N=0,j=M,I=0,R=0,A=0,V=1,H=1,G=1,K=0,ne="",oe=x,_=T,F=g,D=ne;H;)switch(A=K,K=(0,i.lp)()){case 40:if(A!=108&&(0,n.uO)(D,j-1)==58){(0,n.Cw)(D+=(0,n.gx)((0,i.iF)(K),"&","&\f"),"&\f")!=-1&&(G=-1);break}case 34:case 39:case 91:D+=(0,i.iF)(K);break;case 9:case 10:case 13:case 32:D+=(0,i.Qb)(A);break;case 92:D+=(0,i.kq)((0,i.Ud)()-1,7);continue;case 47:switch((0,i.fj)()){case 42:case 47:(0,n.R3)(c((0,i.q6)((0,i.lp)(),(0,i.Ud)()),m,b),$);break;default:D+="/"}break;case 123*V:L[O++]=(0,n.to)(D)*G;case 125*V:case 59:case 0:switch(K){case 0:case 125:H=0;case 59+N:R>0&&(0,n.to)(D)-j&&(0,n.R3)(R>32?u(D+";",g,b,j-1):u((0,n.gx)(D," ","")+";",g,b,j-2),$);break;case 59:D+=";";default:if((0,n.R3)(F=f(D,m,b,O,N,x,L,ne,oe=[],_=[],j),T),K===123)if(N===0)r(D,m,F,F,oe,T,j,L,_);else switch(I===99&&(0,n.uO)(D,3)===110?100:I){case 100:case 109:case 115:r(d,F,F,g&&(0,n.R3)(f(d,F,F,0,0,x,L,ne,x,oe=[],j),_),x,_,j,L,g?oe:_);break;default:r(D,F,F,F,[""],_,0,L,_)}}O=N=R=0,V=G=1,ne=D="",j=M;break;case 58:j=1+(0,n.to)(D),R=A;default:if(V<1){if(K==123)--V;else if(K==125&&V++==0&&(0,i.mp)()==125)continue}switch(D+=(0,n.Dp)(K),K*V){case 38:G=N>0?1:(D+="\f",-1);break;case 44:L[O++]=((0,n.to)(D)-1)*G,G=1;break;case 64:(0,i.fj)()===45&&(D+=(0,i.iF)((0,i.lp)())),I=(0,i.fj)(),N=j=(0,n.to)(ne=D+=(0,i.QU)((0,i.Ud)())),K++;break;case 45:A===45&&(0,n.to)(D)==2&&(V=0)}}return T}function f(d,m,b,g,x,T,M,L,$,O,N){for(var j=x-1,I=x===0?T:[""],R=(0,n.Ei)(I),A=0,V=0,H=0;A0?I[G]+" "+K:(0,n.gx)(K,/&\f/g,I[G])))&&($[H++]=ne);return(0,i.dH)(d,m,b,x===0?o.Fr:L,$,O,N)}function c(d,m,b){return(0,i.dH)(d,m,b,o.Ab,(0,n.Dp)((0,i.Tb)()),(0,n.tb)(d,2,-2),0)}function u(d,m,b,g){return(0,i.dH)(d,m,b,o.h5,(0,n.tb)(d,0,g),(0,n.tb)(d,g+1,-1),g)}},90137:function(h,y,e){"use strict";e.d(y,{P:function(){return l},q:function(){return i}});var o=e(71448),n=e(22697);function i(r,f){for(var c="",u=(0,n.Ei)(r),d=0;d0?(0,o.uO)(c,--r):0,i--,f===10&&(i=1,n--),f}function g(){return f=r2||L(f)>3?"":" "}function R(K){for(;g();)switch(L(f)){case 0:append(G(r-1),K);break;case 2:append(N(f),K);break;default:append(from(f),K)}return K}function A(K,ne){for(;--ne&&g()&&!(f<48||f>102||f>57&&f<65||f>70&&f<97););return M(K,T()+(ne<6&&x()==32&&g()==32))}function V(K){for(;g();)switch(f){case K:return r;case 34:case 39:K!==34&&K!==39&&V(f);break;case 40:K===41&&V(K);break;case 92:g();break}return r}function H(K,ne){for(;g()&&K+f!==57;)if(K+f===84&&x()===47)break;return"/*"+M(ne,r-1)+"*"+(0,o.Dp)(K===47?K:g())}function G(K){for(;!L(x());)g();return M(K,r)}},22697:function(h,y,e){"use strict";e.d(y,{$e:function(){return T},Cw:function(){return u},Dp:function(){return n},EQ:function(){return f},Ei:function(){return g},R3:function(){return x},Wn:function(){return o},f0:function(){return i},fy:function(){return r},gx:function(){return c},tb:function(){return m},to:function(){return b},uO:function(){return d},vp:function(){return l}});var o=Math.abs,n=String.fromCharCode,i=Object.assign;function l(M,L){return d(M,0)^45?(((L<<2^d(M,0))<<2^d(M,1))<<2^d(M,2))<<2^d(M,3):0}function r(M){return M.trim()}function f(M,L){return(M=L.exec(M))?M[0]:M}function c(M,L,$){return M.replace(L,$)}function u(M,L){return M.indexOf(L)}function d(M,L){return M.charCodeAt(L)|0}function m(M,L,$){return M.slice(L,$)}function b(M){return M.length}function g(M){return M.length}function x(M,L){return L.push(M),M}function T(M,L){return M.map(L).join("")}},94083:function(h,y,e){"use strict";e.d(y,{J$:function(){return Je},ZP:function(){return _e},kY:function(){return Q}});var o=e(50959),n=e(4322);const i=new WeakMap,l={},r={},f=()=>{},c=f(),u=Object,d=Ze=>Ze===c,m=Ze=>typeof Ze=="function",b=(Ze,vt)=>Kp(Kp({},Ze),vt),g="undefined",x=typeof window!=g,T=typeof document!=g,M=()=>x&&typeof window.requestAnimationFrame!=g,L=(Ze,vt)=>{const wt=i.get(Ze);return[()=>Ze.get(vt)||l,me=>{if(!d(vt)){const We=Ze.get(vt);vt in r||(r[vt]=We),wt[5](vt,b(We,me),We||l)}},wt[6],()=>!d(vt)&&vt in r?r[vt]:Ze.get(vt)||l]},$=new WeakMap;let O=0;const N=Ze=>{const vt=typeof Ze,wt=Ze&&Ze.constructor,me=wt==Date;let We,Ke;if(u(Ze)===Ze&&!me&&wt!=RegExp){if(We=$.get(Ze),We)return We;if(We=++O+"~",$.set(Ze,We),wt==Array){for(We="@",Ke=0;Kej,[R,A]=x&&window.addEventListener?[window.addEventListener.bind(window),window.removeEventListener.bind(window)]:[f,f],V=()=>{const Ze=T&&document.visibilityState;return d(Ze)||Ze!=="hidden"},H=Ze=>(T&&document.addEventListener("visibilitychange",Ze),R("focus",Ze),()=>{T&&document.removeEventListener("visibilitychange",Ze),A("focus",Ze)}),G=Ze=>{const vt=()=>{j=!0,Ze()},wt=()=>{j=!1};return R("online",vt),R("offline",wt),()=>{A("online",vt),A("offline",wt)}},K={isOnline:I,isVisible:V},ne={initFocus:H,initReconnect:G},oe=!o.useId,_=!x||"Deno"in window,F=Ze=>M()?window.requestAnimationFrame(Ze):setTimeout(Ze,1),D=_?o.useEffect:o.useLayoutEffect,w=typeof navigator!="undefined"&&navigator.connection,k=!_&&w&&(["slow-2g","2g"].includes(w.effectiveType)||w.saveData),U=Ze=>{if(m(Ze))try{Ze=Ze()}catch(wt){Ze=""}const vt=Ze;return Ze=typeof Ze=="string"?Ze:(Array.isArray(Ze)?Ze.length:Ze)?N(Ze):"",[Ze,vt]};let Z=0;const J=()=>++Z,ue=0,Fe=1,be=2;var we={__proto__:null,FOCUS_EVENT:ue,RECONNECT_EVENT:Fe,MUTATE_EVENT:be};function De(...Ze){return Dv(this,null,function*(){const[vt,wt,me,We]=Ze,Ke=b({populateCache:!0,throwOnError:!0},typeof We=="boolean"?{revalidate:We}:We||{});let mt=Ke.populateCache;const Ot=Ke.rollbackOnError;let Ut=Ke.optimisticData;const cn=Ke.revalidate!==!1,Ne=nt=>typeof Ot=="function"?Ot(nt):Ot!==!1,Me=Ke.throwOnError;if(m(wt)){const nt=wt,Mt=[],Lt=vt.keys();for(let Ct=Lt.next();!Ct.done;Ct=Lt.next()){const fn=Ct.value;!fn.startsWith("$inf$")&&nt(vt.get(fn)._k)&&Mt.push(fn)}return Promise.all(Mt.map(at))}return at(wt);function at(nt){return Dv(this,null,function*(){const[Mt]=U(nt);if(!Mt)return;const[Lt,Ct]=L(vt,Mt),[fn,zn,Mn]=i.get(vt),Tn=fn[Mt],or=()=>cn&&(delete Mn[Mt],Tn&&Tn[0])?Tn[0](be).then(()=>Lt().data):Lt().data;if(Ze.length<3)return or();let Qn=me,In;const Dn=J();zn[Mt]=[Dn,0];const $t=!d(Ut),kt=Lt(),jt=kt.data,Jt=kt._c,pn=d(Jt)?jt:Jt;if($t&&(Ut=m(Ut)?Ut(pn):Ut,Ct({data:Ut,_c:pn})),m(Qn))try{Qn=Qn(pn)}catch(bn){In=bn}if(Qn&&m(Qn.then))if(Qn=yield Qn.catch(bn=>{In=bn}),Dn!==zn[Mt][0]){if(In)throw In;return Qn}else In&&$t&&Ne(In)&&(mt=!0,Qn=pn,Ct({data:Qn,_c:c}));mt&&(In||(m(mt)&&(Qn=mt(Qn,pn)),Ct({data:Qn,_c:c}))),zn[Mt][1]=J();const Fn=yield or();if(Ct({_c:c}),In){if(Me)throw In;return}return mt?Fn:Qn})}})}const He=(Ze,vt)=>{for(const wt in Ze)Ze[wt][0]&&Ze[wt][0](vt)},Ve=(Ze,vt)=>{if(!i.has(Ze)){const wt=b(ne,vt),me={},We=De.bind(c,Ze);let Ke=f;const mt={},Ot=(Ne,Me)=>{const at=mt[Ne]||[];return mt[Ne]=at,at.push(Me),()=>at.splice(at.indexOf(Me),1)},Ut=(Ne,Me,at)=>{Ze.set(Ne,Me);const nt=mt[Ne];if(nt)for(let Mt=nt.length;Mt--;)nt[Mt](Me,at)},cn=()=>{if(!i.has(Ze)&&(i.set(Ze,[me,{},{},{},We,Ut,Ot]),!_)){const Ne=wt.initFocus(setTimeout.bind(c,He.bind(c,me,ue))),Me=wt.initReconnect(setTimeout.bind(c,He.bind(c,me,Fe)));Ke=()=>{Ne&&Ne(),Me&&Me(),i.delete(Ze)}}};return cn(),[Ze,We,cn,Ke]}return[Ze,i.get(Ze)[4]]},Ie=(Ze,vt,wt,me,We)=>{const Ke=wt.errorRetryCount,mt=We.retryCount,Ot=~~((Math.random()+.5)*(1<<(mt<8?mt:8)))*wt.errorRetryInterval;!d(Ke)&&mt>Ke||setTimeout(me,Ot,We)},Le=(Ze,vt)=>N(Ze)==N(vt),[dt,St]=Ve(new Map),ht=b({onLoadingSlow:f,onSuccess:f,onError:f,onErrorRetry:Ie,onDiscarded:f,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:k?1e4:5e3,focusThrottleInterval:5*1e3,dedupingInterval:2*1e3,loadingTimeout:k?5e3:3e3,compare:Le,isPaused:()=>!1,cache:dt,mutate:St,fallback:{}},K),pt=(Ze,vt)=>{const wt=b(Ze,vt);if(vt){const{use:me,fallback:We}=Ze,{use:Ke,fallback:mt}=vt;me&&Ke&&(wt.use=me.concat(Ke)),We&&mt&&(wt.fallback=b(We,mt))}return wt},Rt=(0,o.createContext)({}),q=Ze=>{const{value:vt}=Ze,wt=(0,o.useContext)(Rt),me=m(vt),We=(0,o.useMemo)(()=>me?vt(wt):vt,[me,wt,vt]),Ke=(0,o.useMemo)(()=>me?We:pt(wt,We),[me,wt,We]),mt=We&&We.provider,[Ot]=(0,o.useState)(()=>mt?Ve(mt(Ke.cache||dt),We):c);return Ot&&(Ke.cache=Ot[0],Ke.mutate=Ot[1]),D(()=>{if(Ot)return Ot[2]&&Ot[2](),Ot[3]},[]),(0,o.createElement)(Rt.Provider,b(Ze,{value:Ke}))},B=x&&window.__SWR_DEVTOOLS_USE__,S=B?window.__SWR_DEVTOOLS_USE__:[],C=()=>{B&&(window.__SWR_DEVTOOLS_REACT__=o)},Y=Ze=>m(Ze[1])?[Ze[0],Ze[1],Ze[2]||{}]:[Ze[0],null,(Ze[1]===null?Ze[2]:Ze[1])||{}],Q=()=>b(ht,(0,o.useContext)(Rt)),se=(Ze,vt)=>{const wt=U(Ze)[0],[,,,me]=i.get(dt);if(me[wt])return me[wt];const We=vt(Ze);return me[wt]=We,We},ye=Ze=>(vt,wt,me)=>Ze(vt,wt&&((...Ke)=>{const mt=U(vt)[0],[,,,Ot]=i.get(dt),Ut=Ot[mt];return Ut?(delete Ot[mt],Ut):wt(...Ke)}),me),re=S.concat(ye),he=Ze=>function(...wt){const me=Q(),[We,Ke,mt]=Y(wt),Ot=pt(me,mt);let Ut=Ze;const{use:cn}=Ot,Ne=(cn||[]).concat(re);for(let Me=Ne.length;Me--;)Ut=Ne[Me](Ut);return Ut(We,Ke||Ot.fetcher||null,Ot)},ot=Ze=>{const vt=useState({})[1],wt=useRef(!1),me=useRef(Ze),We=useRef({data:!1,error:!1,isValidating:!1}),Ke=useCallback(mt=>{let Ot=!1;const Ut=me.current;for(const cn in mt){const Ne=cn;Ut[Ne]!==mt[Ne]&&(Ut[Ne]=mt[Ne],We.current[Ne]&&(Ot=!0))}Ot&&!wt.current&&(oe?vt({}):React.startTransition(()=>vt({})))},[]);return D(()=>(wt.current=!1,()=>{wt.current=!0})),[me,We.current,Ke]},Ue=(Ze,vt,wt)=>{const me=vt[Ze]||(vt[Ze]=[]);return me.push(wt),()=>{const We=me.indexOf(wt);We>=0&&(me[We]=me[me.length-1],me.pop())}},Se=(Ze,vt)=>(...wt)=>{const[me,We,Ke]=Y(wt),mt=(Ke.use||[]).concat(vt);return Ze(me,We,KC(Kp({},Ke),{use:mt}))};C();const tt={dedupe:!0},yt=(Ze,vt,wt)=>{const{cache:me,compare:We,suspense:Ke,fallbackData:mt,revalidateOnMount:Ot,revalidateIfStale:Ut,refreshInterval:cn,refreshWhenHidden:Ne,refreshWhenOffline:Me,keepPreviousData:at}=wt,[nt,Mt,Lt]=i.get(me),[Ct,fn]=U(Ze),zn=(0,o.useRef)(!1),Mn=(0,o.useRef)(!1),Tn=(0,o.useRef)(Ct),or=(0,o.useRef)(vt),Qn=(0,o.useRef)(wt),In=()=>Qn.current,Dn=()=>In().isVisible()&&In().isOnline(),[$t,kt,jt,Jt]=L(me,Ct),pn=(0,o.useRef)({}).current,Fn=d(mt)?wt.fallback[Ct]:mt,bn=(_n,tr)=>{let Tr=!0;for(const Ir in pn){const Sr=Ir;Sr==="data"?We(tr[Sr],_n[Sr])||d(_n[Sr])&&We(tr[Sr],er)||(Tr=!1):tr[Sr]!==_n[Sr]&&(Tr=!1)}return Tr},Zn=(0,o.useMemo)(()=>{const _n=(()=>!Ct||!vt?!1:d(Ot)?In().isPaused()||Ke?!1:d(Ut)?!0:Ut:Ot)(),tr=Sr=>{const rt=b(Sr);return delete rt._k,_n?Kp({isValidating:!0,isLoading:!0},rt):rt};let Tr=tr($t());const Ir=tr(Jt());return[()=>{const Sr=tr($t());return bn(Sr,Tr)?Tr:Tr=Sr},()=>Ir]},[me,Ct]),Jn=(0,n.useSyncExternalStore)((0,o.useCallback)(_n=>jt(Ct,(tr,Tr)=>{bn(Tr,tr)||_n()}),[me,Ct]),Zn[0],Zn[1]),sr=!zn.current,br=nt[Ct]&&nt[Ct].length>0,Or=Jn.data,ur=d(Or)?Fn:Or,cr=Jn.error,Pr=(0,o.useRef)(ur),er=at?d(Or)?Pr.current:Or:ur,Sa=(()=>br&&!d(cr)?!1:sr&&!d(Ot)?Ot:In().isPaused()?!1:Ke?d(ur)?!1:Ut:d(ur)||Ut)(),ya=!!(Ct&&vt&&sr&&Sa),Pa=d(Jn.isValidating)?ya:Jn.isValidating,$a=d(Jn.isLoading)?ya:Jn.isLoading,fa=(0,o.useCallback)(_n=>Dv(this,null,function*(){const tr=or.current;if(!Ct||!tr||Mn.current||In().isPaused())return!1;let Tr,Ir,Sr=!0;const rt=_n||{},Xe=!Lt[Ct]||!rt.dedupe,ut=()=>oe?!Mn.current&&Ct===Tn.current&&zn.current:Ct===Tn.current,st={isValidating:!1,isLoading:!1},It=()=>{kt(st)},Ye=()=>{const le=Lt[Ct];le&&le[1]===Ir&&delete Lt[Ct]},ve={isValidating:!0};d($t().data)&&(ve.isLoading=!0);try{if(Xe&&(kt(ve),wt.loadingTimeout&&d($t().data)&&setTimeout(()=>{Sr&&ut()&&In().onLoadingSlow(Ct,wt)},wt.loadingTimeout),Lt[Ct]=[tr(fn),J()]),[Tr,Ir]=Lt[Ct],Tr=yield Tr,Xe&&setTimeout(Ye,wt.dedupingInterval),!Lt[Ct]||Lt[Ct][1]!==Ir)return Xe&&ut()&&In().onDiscarded(Ct),!1;st.error=c;const le=Mt[Ct];if(!d(le)&&(Ir<=le[0]||Ir<=le[1]||le[1]===0))return It(),Xe&&ut()&&In().onDiscarded(Ct),!1;const Ee=$t().data;st.data=We(Ee,Tr)?Ee:Tr,Xe&&ut()&&In().onSuccess(Tr,Ct,wt)}catch(le){Ye();const Ee=In(),{shouldRetryOnError:de}=Ee;Ee.isPaused()||(st.error=le,Xe&&ut()&&(Ee.onError(le,Ct,Ee),(de===!0||m(de)&&de(le))&&Dn()&&Ee.onErrorRetry(le,Ct,Ee,fa,{retryCount:(rt.retryCount||0)+1,dedupe:!0})))}return Sr=!1,It(),!0}),[Ct,me]),nr=(0,o.useCallback)((..._n)=>De(me,Tn.current,..._n),[]);if(D(()=>{or.current=vt,Qn.current=wt,d(Or)||(Pr.current=Or)}),D(()=>{if(!Ct)return;const _n=fa.bind(c,tt);let tr=0;const Ir=Ue(Ct,nt,Sr=>{if(Sr==we.FOCUS_EVENT){const rt=Date.now();In().revalidateOnFocus&&rt>tr&&Dn()&&(tr=rt+In().focusThrottleInterval,_n())}else if(Sr==we.RECONNECT_EVENT)In().revalidateOnReconnect&&Dn()&&_n();else if(Sr==we.MUTATE_EVENT)return fa()});return Mn.current=!1,Tn.current=Ct,zn.current=!0,kt({_k:fn}),Sa&&(d(ur)||_?_n():F(_n)),()=>{Mn.current=!0,Ir()}},[Ct]),D(()=>{let _n;function tr(){const Ir=m(cn)?cn(ur):cn;Ir&&_n!==-1&&(_n=setTimeout(Tr,Ir))}function Tr(){!$t().error&&(Ne||In().isVisible())&&(Me||In().isOnline())?fa(tt).then(tr):tr()}return tr(),()=>{_n&&(clearTimeout(_n),_n=-1)}},[cn,Ne,Me,Ct]),(0,o.useDebugValue)(er),Ke&&d(ur)&&Ct)throw!oe&&_?new Error("Fallback data is required when using suspense in SSR."):(or.current=vt,Qn.current=wt,Mn.current=!1,d(cr)?fa(tt):cr);return{mutate:nr,get data(){return pn.data=!0,er},get error(){return pn.error=!0,cr},get isValidating(){return pn.isValidating=!0,Pa},get isLoading(){return pn.isLoading=!0,$a}}},Je=u.defineProperty(q,"defaultValue",{value:ht}),Nt=Ze=>serialize(Ze)[0];var _e=he(yt)}},Ls={};function fe(h){var y=Ls[h];if(y!==void 0)return y.exports;var e=Ls[h]={id:h,loaded:!1,exports:{}};return yl[h].call(e.exports,e,e.exports,fe),e.loaded=!0,e.exports}fe.m=yl,function(){fe.n=function(h){var y=h&&h.__esModule?function(){return h.default}:function(){return h};return fe.d(y,{a:y}),y}}(),function(){var h=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},y;fe.t=function(e,o){if(o&1&&(e=this(e)),o&8||typeof e=="object"&&e&&(o&4&&e.__esModule||o&16&&typeof e.then=="function"))return e;var n=Object.create(null);fe.r(n);var i={};y=y||[null,h({}),h([]),h(h)];for(var l=o&2&&e;typeof l=="object"&&!~y.indexOf(l);l=h(l))Object.getOwnPropertyNames(l).forEach(function(r){i[r]=function(){return e[r]}});return i.default=function(){return e},fe.d(n,i),n}}(),function(){fe.d=function(h,y){for(var e in y)fe.o(y,e)&&!fe.o(h,e)&&Object.defineProperty(h,e,{enumerable:!0,get:y[e]})}}(),function(){fe.f={},fe.e=function(h){return Promise.all(Object.keys(fe.f).reduce(function(y,e){return fe.f[e](h,y),y},[]))}}(),function(){fe.u=function(h){return""+({81:"p__Message__Noreply__index",96:"p__Plugin__Share__index",145:"p__Plugin__Subscribe__index",185:"p__Welcome",274:"p__Carry__index",294:"p__Basic__index",301:"t__plugin-layout__Layout",354:"p__Storage__index",366:"p__User__Login__index",398:"p__Script__index",402:"p__Reply__index",430:"p__Master__index",538:"p__Message__Private__index",571:"p__404",583:"p__Proxy__index",737:"p__Plugin__Publish__index",929:"p__Secret__Fenyong__index",966:"p__Message__Listen__index"}[h]||h)+"."+{54:"698cd806",81:"7e4d6d65",96:"47d4de2f",118:"99dbea07",145:"122c4cdc",164:"c823ecee",185:"31f51469",273:"3dfaac85",274:"4274a36e",294:"9e867cce",301:"f972cb61",315:"ca5fa681",354:"53f68d94",361:"a6a74763",366:"a85e5196",398:"5a05d19e",402:"a17ebe51",430:"bf2b2645",454:"045543df",472:"ccfb3d48",538:"31d914cd",571:"7e3f819c",583:"7d578af0",630:"42a3526e",646:"abeba3c8",650:"6dec3238",737:"3ba2cf00",845:"273402fd",852:"e34fba04",929:"809c357f",964:"43acb396",966:"c2e6f837",989:"2d9cc9ce"}[h]+".async.js"}}(),function(){fe.miniCssF=function(h){return"t__plugin-layout__Layout.74b4118c.chunk.css"}}(),function(){fe.g=function(){if(typeof globalThis=="object")return globalThis;try{return this||new Function("return this")()}catch(h){if(typeof window=="object")return window}}()}(),function(){fe.o=function(h,y){return Object.prototype.hasOwnProperty.call(h,y)}}(),function(){var h={},y="ant-design-pro:";fe.l=function(e,o,n,i){if(h[e]){h[e].push(o);return}var l,r;if(n!==void 0)for(var f=document.getElementsByTagName("script"),c=0;c0&&(0,n.to)(D)-j&&(0,n.R3)(R>32?u(D+";",g,b,j-1):u((0,n.gx)(D," ","")+";",g,b,j-2),$);break;case 59:D+=";";default:if((0,n.R3)(F=f(D,m,b,O,N,x,L,ne,oe=[],_=[],j),T),K===123)if(N===0)r(D,m,F,F,oe,T,j,L,_);else switch(I===99&&(0,n.uO)(D,3)===110?100:I){case 100:case 109:case 115:r(d,F,F,g&&(0,n.R3)(f(d,F,F,0,0,x,L,ne,x,oe=[],j),_),x,_,j,L,g?oe:_);break;default:r(D,F,F,F,[""],_,0,L,_)}}O=N=R=0,V=G=1,ne=D="",j=M;break;case 58:j=1+(0,n.to)(D),R=A;default:if(V<1){if(K==123)--V;else if(K==125&&V++==0&&(0,i.mp)()==125)continue}switch(D+=(0,n.Dp)(K),K*V){case 38:G=N>0?1:(D+="\f",-1);break;case 44:L[O++]=((0,n.to)(D)-1)*G,G=1;break;case 64:(0,i.fj)()===45&&(D+=(0,i.iF)((0,i.lp)())),I=(0,i.fj)(),N=j=(0,n.to)(ne=D+=(0,i.QU)((0,i.Ud)())),K++;break;case 45:A===45&&(0,n.to)(D)==2&&(V=0)}}return T}function f(d,m,b,g,x,T,M,L,$,O,N){for(var j=x-1,I=x===0?T:[""],R=(0,n.Ei)(I),A=0,V=0,H=0;A0?I[G]+" "+K:(0,n.gx)(K,/&\f/g,I[G])))&&($[H++]=ne);return(0,i.dH)(d,m,b,x===0?o.Fr:L,$,O,N)}function c(d,m,b){return(0,i.dH)(d,m,b,o.Ab,(0,n.Dp)((0,i.Tb)()),(0,n.tb)(d,2,-2),0)}function u(d,m,b,g){return(0,i.dH)(d,m,b,o.h5,(0,n.tb)(d,0,g),(0,n.tb)(d,g+1,-1),g)}},90137:function(h,y,e){"use strict";e.d(y,{P:function(){return l},q:function(){return i}});var o=e(71448),n=e(22697);function i(r,f){for(var c="",u=(0,n.Ei)(r),d=0;d0?(0,o.uO)(c,--r):0,i--,f===10&&(i=1,n--),f}function g(){return f=r2||L(f)>3?"":" "}function R(K){for(;g();)switch(L(f)){case 0:append(G(r-1),K);break;case 2:append(N(f),K);break;default:append(from(f),K)}return K}function A(K,ne){for(;--ne&&g()&&!(f<48||f>102||f>57&&f<65||f>70&&f<97););return M(K,T()+(ne<6&&x()==32&&g()==32))}function V(K){for(;g();)switch(f){case K:return r;case 34:case 39:K!==34&&K!==39&&V(f);break;case 40:K===41&&V(K);break;case 92:g();break}return r}function H(K,ne){for(;g()&&K+f!==57;)if(K+f===84&&x()===47)break;return"/*"+M(ne,r-1)+"*"+(0,o.Dp)(K===47?K:g())}function G(K){for(;!L(x());)g();return M(K,r)}},22697:function(h,y,e){"use strict";e.d(y,{$e:function(){return T},Cw:function(){return u},Dp:function(){return n},EQ:function(){return f},Ei:function(){return g},R3:function(){return x},Wn:function(){return o},f0:function(){return i},fy:function(){return r},gx:function(){return c},tb:function(){return m},to:function(){return b},uO:function(){return d},vp:function(){return l}});var o=Math.abs,n=String.fromCharCode,i=Object.assign;function l(M,L){return d(M,0)^45?(((L<<2^d(M,0))<<2^d(M,1))<<2^d(M,2))<<2^d(M,3):0}function r(M){return M.trim()}function f(M,L){return(M=L.exec(M))?M[0]:M}function c(M,L,$){return M.replace(L,$)}function u(M,L){return M.indexOf(L)}function d(M,L){return M.charCodeAt(L)|0}function m(M,L,$){return M.slice(L,$)}function b(M){return M.length}function g(M){return M.length}function x(M,L){return L.push(M),M}function T(M,L){return M.map(L).join("")}},94083:function(h,y,e){"use strict";e.d(y,{J$:function(){return Je},ZP:function(){return _e},kY:function(){return Q}});var o=e(50959),n=e(4322);const i=new WeakMap,l={},r={},f=()=>{},c=f(),u=Object,d=Ze=>Ze===c,m=Ze=>typeof Ze=="function",b=(Ze,vt)=>Kp(Kp({},Ze),vt),g="undefined",x=typeof window!=g,T=typeof document!=g,M=()=>x&&typeof window.requestAnimationFrame!=g,L=(Ze,vt)=>{const wt=i.get(Ze);return[()=>Ze.get(vt)||l,me=>{if(!d(vt)){const We=Ze.get(vt);vt in r||(r[vt]=We),wt[5](vt,b(We,me),We||l)}},wt[6],()=>!d(vt)&&vt in r?r[vt]:Ze.get(vt)||l]},$=new WeakMap;let O=0;const N=Ze=>{const vt=typeof Ze,wt=Ze&&Ze.constructor,me=wt==Date;let We,Ke;if(u(Ze)===Ze&&!me&&wt!=RegExp){if(We=$.get(Ze),We)return We;if(We=++O+"~",$.set(Ze,We),wt==Array){for(We="@",Ke=0;Kej,[R,A]=x&&window.addEventListener?[window.addEventListener.bind(window),window.removeEventListener.bind(window)]:[f,f],V=()=>{const Ze=T&&document.visibilityState;return d(Ze)||Ze!=="hidden"},H=Ze=>(T&&document.addEventListener("visibilitychange",Ze),R("focus",Ze),()=>{T&&document.removeEventListener("visibilitychange",Ze),A("focus",Ze)}),G=Ze=>{const vt=()=>{j=!0,Ze()},wt=()=>{j=!1};return R("online",vt),R("offline",wt),()=>{A("online",vt),A("offline",wt)}},K={isOnline:I,isVisible:V},ne={initFocus:H,initReconnect:G},oe=!o.useId,_=!x||"Deno"in window,F=Ze=>M()?window.requestAnimationFrame(Ze):setTimeout(Ze,1),D=_?o.useEffect:o.useLayoutEffect,w=typeof navigator!="undefined"&&navigator.connection,k=!_&&w&&(["slow-2g","2g"].includes(w.effectiveType)||w.saveData),U=Ze=>{if(m(Ze))try{Ze=Ze()}catch(wt){Ze=""}const vt=Ze;return Ze=typeof Ze=="string"?Ze:(Array.isArray(Ze)?Ze.length:Ze)?N(Ze):"",[Ze,vt]};let Z=0;const J=()=>++Z,ue=0,Fe=1,be=2;var we={__proto__:null,FOCUS_EVENT:ue,RECONNECT_EVENT:Fe,MUTATE_EVENT:be};function De(...Ze){return Dv(this,null,function*(){const[vt,wt,me,We]=Ze,Ke=b({populateCache:!0,throwOnError:!0},typeof We=="boolean"?{revalidate:We}:We||{});let mt=Ke.populateCache;const Ot=Ke.rollbackOnError;let Ut=Ke.optimisticData;const cn=Ke.revalidate!==!1,Ne=nt=>typeof Ot=="function"?Ot(nt):Ot!==!1,Me=Ke.throwOnError;if(m(wt)){const nt=wt,Mt=[],Lt=vt.keys();for(let Ct=Lt.next();!Ct.done;Ct=Lt.next()){const fn=Ct.value;!fn.startsWith("$inf$")&&nt(vt.get(fn)._k)&&Mt.push(fn)}return Promise.all(Mt.map(at))}return at(wt);function at(nt){return Dv(this,null,function*(){const[Mt]=U(nt);if(!Mt)return;const[Lt,Ct]=L(vt,Mt),[fn,zn,Mn]=i.get(vt),Tn=fn[Mt],or=()=>cn&&(delete Mn[Mt],Tn&&Tn[0])?Tn[0](be).then(()=>Lt().data):Lt().data;if(Ze.length<3)return or();let Qn=me,In;const Dn=J();zn[Mt]=[Dn,0];const $t=!d(Ut),kt=Lt(),jt=kt.data,Jt=kt._c,pn=d(Jt)?jt:Jt;if($t&&(Ut=m(Ut)?Ut(pn):Ut,Ct({data:Ut,_c:pn})),m(Qn))try{Qn=Qn(pn)}catch(bn){In=bn}if(Qn&&m(Qn.then))if(Qn=yield Qn.catch(bn=>{In=bn}),Dn!==zn[Mt][0]){if(In)throw In;return Qn}else In&&$t&&Ne(In)&&(mt=!0,Qn=pn,Ct({data:Qn,_c:c}));mt&&(In||(m(mt)&&(Qn=mt(Qn,pn)),Ct({data:Qn,_c:c}))),zn[Mt][1]=J();const Fn=yield or();if(Ct({_c:c}),In){if(Me)throw In;return}return mt?Fn:Qn})}})}const He=(Ze,vt)=>{for(const wt in Ze)Ze[wt][0]&&Ze[wt][0](vt)},Ve=(Ze,vt)=>{if(!i.has(Ze)){const wt=b(ne,vt),me={},We=De.bind(c,Ze);let Ke=f;const mt={},Ot=(Ne,Me)=>{const at=mt[Ne]||[];return mt[Ne]=at,at.push(Me),()=>at.splice(at.indexOf(Me),1)},Ut=(Ne,Me,at)=>{Ze.set(Ne,Me);const nt=mt[Ne];if(nt)for(let Mt=nt.length;Mt--;)nt[Mt](Me,at)},cn=()=>{if(!i.has(Ze)&&(i.set(Ze,[me,{},{},{},We,Ut,Ot]),!_)){const Ne=wt.initFocus(setTimeout.bind(c,He.bind(c,me,ue))),Me=wt.initReconnect(setTimeout.bind(c,He.bind(c,me,Fe)));Ke=()=>{Ne&&Ne(),Me&&Me(),i.delete(Ze)}}};return cn(),[Ze,We,cn,Ke]}return[Ze,i.get(Ze)[4]]},Ie=(Ze,vt,wt,me,We)=>{const Ke=wt.errorRetryCount,mt=We.retryCount,Ot=~~((Math.random()+.5)*(1<<(mt<8?mt:8)))*wt.errorRetryInterval;!d(Ke)&&mt>Ke||setTimeout(me,Ot,We)},Le=(Ze,vt)=>N(Ze)==N(vt),[dt,St]=Ve(new Map),ht=b({onLoadingSlow:f,onSuccess:f,onError:f,onErrorRetry:Ie,onDiscarded:f,revalidateOnFocus:!0,revalidateOnReconnect:!0,revalidateIfStale:!0,shouldRetryOnError:!0,errorRetryInterval:k?1e4:5e3,focusThrottleInterval:5*1e3,dedupingInterval:2*1e3,loadingTimeout:k?5e3:3e3,compare:Le,isPaused:()=>!1,cache:dt,mutate:St,fallback:{}},K),pt=(Ze,vt)=>{const wt=b(Ze,vt);if(vt){const{use:me,fallback:We}=Ze,{use:Ke,fallback:mt}=vt;me&&Ke&&(wt.use=me.concat(Ke)),We&&mt&&(wt.fallback=b(We,mt))}return wt},Rt=(0,o.createContext)({}),q=Ze=>{const{value:vt}=Ze,wt=(0,o.useContext)(Rt),me=m(vt),We=(0,o.useMemo)(()=>me?vt(wt):vt,[me,wt,vt]),Ke=(0,o.useMemo)(()=>me?We:pt(wt,We),[me,wt,We]),mt=We&&We.provider,[Ot]=(0,o.useState)(()=>mt?Ve(mt(Ke.cache||dt),We):c);return Ot&&(Ke.cache=Ot[0],Ke.mutate=Ot[1]),D(()=>{if(Ot)return Ot[2]&&Ot[2](),Ot[3]},[]),(0,o.createElement)(Rt.Provider,b(Ze,{value:Ke}))},B=x&&window.__SWR_DEVTOOLS_USE__,S=B?window.__SWR_DEVTOOLS_USE__:[],C=()=>{B&&(window.__SWR_DEVTOOLS_REACT__=o)},Y=Ze=>m(Ze[1])?[Ze[0],Ze[1],Ze[2]||{}]:[Ze[0],null,(Ze[1]===null?Ze[2]:Ze[1])||{}],Q=()=>b(ht,(0,o.useContext)(Rt)),se=(Ze,vt)=>{const wt=U(Ze)[0],[,,,me]=i.get(dt);if(me[wt])return me[wt];const We=vt(Ze);return me[wt]=We,We},ye=Ze=>(vt,wt,me)=>Ze(vt,wt&&((...Ke)=>{const mt=U(vt)[0],[,,,Ot]=i.get(dt),Ut=Ot[mt];return Ut?(delete Ot[mt],Ut):wt(...Ke)}),me),re=S.concat(ye),he=Ze=>function(...wt){const me=Q(),[We,Ke,mt]=Y(wt),Ot=pt(me,mt);let Ut=Ze;const{use:cn}=Ot,Ne=(cn||[]).concat(re);for(let Me=Ne.length;Me--;)Ut=Ne[Me](Ut);return Ut(We,Ke||Ot.fetcher||null,Ot)},ot=Ze=>{const vt=useState({})[1],wt=useRef(!1),me=useRef(Ze),We=useRef({data:!1,error:!1,isValidating:!1}),Ke=useCallback(mt=>{let Ot=!1;const Ut=me.current;for(const cn in mt){const Ne=cn;Ut[Ne]!==mt[Ne]&&(Ut[Ne]=mt[Ne],We.current[Ne]&&(Ot=!0))}Ot&&!wt.current&&(oe?vt({}):React.startTransition(()=>vt({})))},[]);return D(()=>(wt.current=!1,()=>{wt.current=!0})),[me,We.current,Ke]},Ue=(Ze,vt,wt)=>{const me=vt[Ze]||(vt[Ze]=[]);return me.push(wt),()=>{const We=me.indexOf(wt);We>=0&&(me[We]=me[me.length-1],me.pop())}},Se=(Ze,vt)=>(...wt)=>{const[me,We,Ke]=Y(wt),mt=(Ke.use||[]).concat(vt);return Ze(me,We,KC(Kp({},Ke),{use:mt}))};C();const tt={dedupe:!0},yt=(Ze,vt,wt)=>{const{cache:me,compare:We,suspense:Ke,fallbackData:mt,revalidateOnMount:Ot,revalidateIfStale:Ut,refreshInterval:cn,refreshWhenHidden:Ne,refreshWhenOffline:Me,keepPreviousData:at}=wt,[nt,Mt,Lt]=i.get(me),[Ct,fn]=U(Ze),zn=(0,o.useRef)(!1),Mn=(0,o.useRef)(!1),Tn=(0,o.useRef)(Ct),or=(0,o.useRef)(vt),Qn=(0,o.useRef)(wt),In=()=>Qn.current,Dn=()=>In().isVisible()&&In().isOnline(),[$t,kt,jt,Jt]=L(me,Ct),pn=(0,o.useRef)({}).current,Fn=d(mt)?wt.fallback[Ct]:mt,bn=(_n,tr)=>{let Tr=!0;for(const Ir in pn){const Sr=Ir;Sr==="data"?We(tr[Sr],_n[Sr])||d(_n[Sr])&&We(tr[Sr],er)||(Tr=!1):tr[Sr]!==_n[Sr]&&(Tr=!1)}return Tr},Zn=(0,o.useMemo)(()=>{const _n=(()=>!Ct||!vt?!1:d(Ot)?In().isPaused()||Ke?!1:d(Ut)?!0:Ut:Ot)(),tr=Sr=>{const rt=b(Sr);return delete rt._k,_n?Kp({isValidating:!0,isLoading:!0},rt):rt};let Tr=tr($t());const Ir=tr(Jt());return[()=>{const Sr=tr($t());return bn(Sr,Tr)?Tr:Tr=Sr},()=>Ir]},[me,Ct]),Jn=(0,n.useSyncExternalStore)((0,o.useCallback)(_n=>jt(Ct,(tr,Tr)=>{bn(Tr,tr)||_n()}),[me,Ct]),Zn[0],Zn[1]),sr=!zn.current,br=nt[Ct]&&nt[Ct].length>0,Or=Jn.data,ur=d(Or)?Fn:Or,cr=Jn.error,Pr=(0,o.useRef)(ur),er=at?d(Or)?Pr.current:Or:ur,Sa=(()=>br&&!d(cr)?!1:sr&&!d(Ot)?Ot:In().isPaused()?!1:Ke?d(ur)?!1:Ut:d(ur)||Ut)(),ya=!!(Ct&&vt&&sr&&Sa),Pa=d(Jn.isValidating)?ya:Jn.isValidating,$a=d(Jn.isLoading)?ya:Jn.isLoading,fa=(0,o.useCallback)(_n=>Dv(this,null,function*(){const tr=or.current;if(!Ct||!tr||Mn.current||In().isPaused())return!1;let Tr,Ir,Sr=!0;const rt=_n||{},Xe=!Lt[Ct]||!rt.dedupe,ut=()=>oe?!Mn.current&&Ct===Tn.current&&zn.current:Ct===Tn.current,st={isValidating:!1,isLoading:!1},It=()=>{kt(st)},Ye=()=>{const le=Lt[Ct];le&&le[1]===Ir&&delete Lt[Ct]},ve={isValidating:!0};d($t().data)&&(ve.isLoading=!0);try{if(Xe&&(kt(ve),wt.loadingTimeout&&d($t().data)&&setTimeout(()=>{Sr&&ut()&&In().onLoadingSlow(Ct,wt)},wt.loadingTimeout),Lt[Ct]=[tr(fn),J()]),[Tr,Ir]=Lt[Ct],Tr=yield Tr,Xe&&setTimeout(Ye,wt.dedupingInterval),!Lt[Ct]||Lt[Ct][1]!==Ir)return Xe&&ut()&&In().onDiscarded(Ct),!1;st.error=c;const le=Mt[Ct];if(!d(le)&&(Ir<=le[0]||Ir<=le[1]||le[1]===0))return It(),Xe&&ut()&&In().onDiscarded(Ct),!1;const Ee=$t().data;st.data=We(Ee,Tr)?Ee:Tr,Xe&&ut()&&In().onSuccess(Tr,Ct,wt)}catch(le){Ye();const Ee=In(),{shouldRetryOnError:de}=Ee;Ee.isPaused()||(st.error=le,Xe&&ut()&&(Ee.onError(le,Ct,Ee),(de===!0||m(de)&&de(le))&&Dn()&&Ee.onErrorRetry(le,Ct,Ee,fa,{retryCount:(rt.retryCount||0)+1,dedupe:!0})))}return Sr=!1,It(),!0}),[Ct,me]),nr=(0,o.useCallback)((..._n)=>De(me,Tn.current,..._n),[]);if(D(()=>{or.current=vt,Qn.current=wt,d(Or)||(Pr.current=Or)}),D(()=>{if(!Ct)return;const _n=fa.bind(c,tt);let tr=0;const Ir=Ue(Ct,nt,Sr=>{if(Sr==we.FOCUS_EVENT){const rt=Date.now();In().revalidateOnFocus&&rt>tr&&Dn()&&(tr=rt+In().focusThrottleInterval,_n())}else if(Sr==we.RECONNECT_EVENT)In().revalidateOnReconnect&&Dn()&&_n();else if(Sr==we.MUTATE_EVENT)return fa()});return Mn.current=!1,Tn.current=Ct,zn.current=!0,kt({_k:fn}),Sa&&(d(ur)||_?_n():F(_n)),()=>{Mn.current=!0,Ir()}},[Ct]),D(()=>{let _n;function tr(){const Ir=m(cn)?cn(ur):cn;Ir&&_n!==-1&&(_n=setTimeout(Tr,Ir))}function Tr(){!$t().error&&(Ne||In().isVisible())&&(Me||In().isOnline())?fa(tt).then(tr):tr()}return tr(),()=>{_n&&(clearTimeout(_n),_n=-1)}},[cn,Ne,Me,Ct]),(0,o.useDebugValue)(er),Ke&&d(ur)&&Ct)throw!oe&&_?new Error("Fallback data is required when using suspense in SSR."):(or.current=vt,Qn.current=wt,Mn.current=!1,d(cr)?fa(tt):cr);return{mutate:nr,get data(){return pn.data=!0,er},get error(){return pn.error=!0,cr},get isValidating(){return pn.isValidating=!0,Pa},get isLoading(){return pn.isLoading=!0,$a}}},Je=u.defineProperty(q,"defaultValue",{value:ht}),Nt=Ze=>serialize(Ze)[0];var _e=he(yt)}},Ls={};function fe(h){var y=Ls[h];if(y!==void 0)return y.exports;var e=Ls[h]={id:h,loaded:!1,exports:{}};return yl[h].call(e.exports,e,e.exports,fe),e.loaded=!0,e.exports}fe.m=yl,function(){fe.n=function(h){var y=h&&h.__esModule?function(){return h.default}:function(){return h};return fe.d(y,{a:y}),y}}(),function(){var h=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},y;fe.t=function(e,o){if(o&1&&(e=this(e)),o&8||typeof e=="object"&&e&&(o&4&&e.__esModule||o&16&&typeof e.then=="function"))return e;var n=Object.create(null);fe.r(n);var i={};y=y||[null,h({}),h([]),h(h)];for(var l=o&2&&e;typeof l=="object"&&!~y.indexOf(l);l=h(l))Object.getOwnPropertyNames(l).forEach(function(r){i[r]=function(){return e[r]}});return i.default=function(){return e},fe.d(n,i),n}}(),function(){fe.d=function(h,y){for(var e in y)fe.o(y,e)&&!fe.o(h,e)&&Object.defineProperty(h,e,{enumerable:!0,get:y[e]})}}(),function(){fe.f={},fe.e=function(h){return Promise.all(Object.keys(fe.f).reduce(function(y,e){return fe.f[e](h,y),y},[]))}}(),function(){fe.u=function(h){return""+({81:"p__Message__Noreply__index",96:"p__Plugin__Share__index",145:"p__Plugin__Subscribe__index",185:"p__Welcome",274:"p__Carry__index",294:"p__Basic__index",301:"t__plugin-layout__Layout",354:"p__Storage__index",366:"p__User__Login__index",398:"p__Script__index",402:"p__Reply__index",430:"p__Master__index",538:"p__Message__Private__index",571:"p__404",583:"p__Proxy__index",737:"p__Plugin__Publish__index",929:"p__Secret__Fenyong__index",966:"p__Message__Listen__index"}[h]||h)+"."+{54:"698cd806",81:"7e4d6d65",96:"47d4de2f",118:"99dbea07",145:"122c4cdc",164:"c823ecee",185:"31f51469",273:"3dfaac85",274:"4274a36e",294:"9e867cce",301:"f972cb61",315:"ca5fa681",354:"53f68d94",361:"a6a74763",366:"a85e5196",398:"5a05d19e",402:"a17ebe51",430:"bf2b2645",454:"045543df",472:"ccfb3d48",538:"31d914cd",571:"7e3f819c",583:"414b0326",630:"42a3526e",646:"abeba3c8",650:"6dec3238",737:"3ba2cf00",845:"273402fd",852:"e34fba04",929:"809c357f",964:"43acb396",966:"c2e6f837",989:"2d9cc9ce"}[h]+".async.js"}}(),function(){fe.miniCssF=function(h){return"t__plugin-layout__Layout.74b4118c.chunk.css"}}(),function(){fe.g=function(){if(typeof globalThis=="object")return globalThis;try{return this||new Function("return this")()}catch(h){if(typeof window=="object")return window}}()}(),function(){fe.o=function(h,y){return Object.prototype.hasOwnProperty.call(h,y)}}(),function(){var h={},y="ant-design-pro:";fe.l=function(e,o,n,i){if(h[e]){h[e].push(o);return}var l,r;if(n!==void 0)for(var f=document.getElementsByTagName("script"),c=0;c0})),ca=js({routesById:Sn,routeComponents:Lr,parentId:ra.id,loadingComponent:Ln.loadingComponent,reactRouter5Compat:Ln.reactRouter5Compat});return ca.length>0&&(ra.children=ca,ra.routes=ca),ra})}function bl(Ln){var Sn=(0,za.UO)(),xr=(0,wa.Z)((0,wa.Z)({},Ln),{},{to:(0,za.Gn)(Ln.to,Sn)});return qn.createElement(za.Fg,(0,jo.Z)({replace:!0},xr))}function Oa(Ln){var Sn=Ln.route,xr=Sn.redirect,Lr=(0,ao.Z)(Sn,Pi),Xr=Ln.reactRouter5Compat?Cr:Aa;return(0,wa.Z)({element:xr?qn.createElement(bl,{to:xr}):qn.createElement(si.Provider,{value:{route:Ln.route}},qn.createElement(Xr,{loader:qn.memo(Ln.routeComponent),loadingComponent:Ln.loadingComponent||Jr,hasChildren:Ln.hasChildren}))},Lr)}function Jr(){return qn.createElement("div",null)}function Cr(Ln){var Sn=Xo(),xr=Sn.route,Lr=(0,Va.Ov)(),Xr=Lr.history,ra=Lr.clientRoutes,ca=(0,za.UO)(),Ma={params:ca,isExact:!0,path:xr.path,url:Xr.location.pathname},Xa=Ln.loader;return qn.createElement(qn.Suspense,{fallback:qn.createElement(Ln.loadingComponent,null)},qn.createElement(Xa,{location:Xr.location,match:Ma,history:Xr,params:ca,route:xr,routes:ra},Ln.hasChildren&&qn.createElement(za.j3,null)))}function Aa(Ln){var Sn=Ln.loader;return qn.createElement(qn.Suspense,{fallback:qn.createElement(Ln.loadingComponent,null)},qn.createElement(Sn,null))}var Ca=null;function Vo(){return Ca}function yi(Ln){var Sn=Ln.history,xr=qn.useState({action:Sn.action,location:Sn.location}),Lr=(0,Wo.Z)(xr,2),Xr=Lr[0],ra=Lr[1];return(0,qn.useLayoutEffect)(function(){return Sn.listen(ra)},[Sn]),(0,qn.useLayoutEffect)(function(){function ca(Ma){Ln.pluginManager.applyPlugins({key:"onRouteChange",type:"event",args:{routes:Ln.routes,clientRoutes:Ln.clientRoutes,location:Ma.location,action:Ma.action,basename:Ln.basename,isFirst:Boolean(Ma.isFirst)}})}Sn.listen(ca),ca({location:Xr.location,action:Xr.action,isFirst:!0})},[Sn,Ln.routes,Ln.clientRoutes]),qn.createElement(za.F0,{navigator:Sn,location:Xr.location,basename:Ln.basename},Ln.children)}function Ui(){var Ln=(0,Va.Ov)(),Sn=Ln.clientRoutes;return(0,za.V$)(Sn)}var _i=["innerProvider","i18nProvider","accessProvider","dataflowProvider","outerProvider","rootContainer"],$o=function(Sn,xr){var Lr=Sn.basename||"/",Xr=js({routesById:Sn.routes,routeComponents:Sn.routeComponents,loadingComponent:Sn.loadingComponent,reactRouter5Compat:Sn.reactRouter5Compat});Sn.pluginManager.applyPlugins({key:"patchClientRoutes",type:"event",args:{routes:Xr}});for(var ra=qn.createElement(yi,{basename:Lr,pluginManager:Sn.pluginManager,routes:Sn.routes,clientRoutes:Xr,history:Sn.history},xr),ca=0,Ma=_i;ca