@rsdoctor/components 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/svg/cursor.mjs +22 -0
- package/dist/common/svg/cursor.mjs.map +1 -0
- package/dist/common/svg/trae.mjs +21 -0
- package/dist/common/svg/trae.mjs.map +1 -0
- package/dist/common/svg/vscode.mjs +158 -0
- package/dist/common/svg/vscode.mjs.map +1 -0
- package/dist/components/Charts/TreeMap.d.ts +1 -2
- package/dist/components/Charts/TreeMap.mjs +1 -14
- package/dist/components/Charts/TreeMap.mjs.map +1 -1
- package/dist/components/Configuration/builder.d.ts +1 -1
- package/dist/components/Loader/Analysis/index.d.ts +1 -1
- package/dist/components/Loader/executions.mjs +138 -118
- package/dist/components/Loader/executions.mjs.map +1 -1
- package/dist/components/Opener/code.mjs +1 -1
- package/dist/components/Opener/code.mjs.map +1 -1
- package/dist/components/Opener/{vscode.d.ts → ide.d.ts} +2 -0
- package/dist/components/Opener/ide.mjs +62 -0
- package/dist/components/Opener/ide.mjs.map +1 -0
- package/dist/components/Opener/index.d.ts +1 -1
- package/dist/components/Opener/index.mjs +1 -1
- package/dist/components/base/CodeViewer/index.d.ts +1 -1
- package/dist/components/base/CodeViewer/index.mjs +9 -2
- package/dist/components/base/CodeViewer/index.mjs.map +1 -1
- package/dist/components/base/CodeViewer/interface.d.ts +5 -0
- package/dist/pages/BundleSize/components/index.mjs +390 -399
- package/dist/pages/BundleSize/components/index.mjs.map +1 -1
- package/dist/pages/BundleSize/components/index.module.mjs +0 -4
- package/dist/pages/BundleSize/components/index.module.mjs.map +1 -1
- package/dist/pages/BundleSize/components/index_module.css +0 -4
- package/dist/pages/BundleSize/components/index_module.css.map +1 -1
- package/dist/pages/ModuleAnalyze/fileTree.d.ts +2 -0
- package/dist/pages/ModuleAnalyze/fileTree.mjs +168 -33
- package/dist/pages/ModuleAnalyze/fileTree.mjs.map +1 -1
- package/dist/pages/ModuleAnalyze/index.mjs +87 -76
- package/dist/pages/ModuleAnalyze/index.mjs.map +1 -1
- package/package.json +10 -10
- package/dist/components/Opener/vscode.mjs +0 -33
- package/dist/components/Opener/vscode.mjs.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
2
|
import { SDK } from "@rsdoctor/types";
|
|
3
|
-
import { Badge, Card, Drawer, Popover, Space, Typography } from "antd";
|
|
3
|
+
import { Badge, Card, Drawer, Popover, Space, Tabs, Typography } from "antd";
|
|
4
4
|
import { useState } from "react";
|
|
5
5
|
import { ServerAPIProvider } from "../../components/Manifest/index.mjs";
|
|
6
6
|
import { getShortPath } from "../../utils/index.mjs";
|
|
@@ -32,7 +32,7 @@ const ModuleAnalyzeComponent = ({ modules, cwd, moduleId, show, setShow })=>{
|
|
|
32
32
|
body: {
|
|
33
33
|
moduleId: +moduleId
|
|
34
34
|
},
|
|
35
|
-
children: ({ module, dependencies })=>/*#__PURE__*/ jsx(Drawer, {
|
|
35
|
+
children: ({ module, dependencies, sideEffectCodes })=>/*#__PURE__*/ jsx(Drawer, {
|
|
36
36
|
title: /*#__PURE__*/ jsxs("div", {
|
|
37
37
|
className: "module-analyze-box",
|
|
38
38
|
children: [
|
|
@@ -56,83 +56,94 @@ const ModuleAnalyzeComponent = ({ modules, cwd, moduleId, show, setShow })=>{
|
|
|
56
56
|
api: SDK.ServerAPI.API.GetAllChunkGraph,
|
|
57
57
|
body: {},
|
|
58
58
|
children: (_chunks)=>/*#__PURE__*/ jsx(ModuleGraphListContext.Consumer, {
|
|
59
|
-
children: ({ moduleJumpList, setModuleJumpList })=>/*#__PURE__*/
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
children: /*#__PURE__*/ jsx(
|
|
66
|
-
reasons: module.bailoutReason
|
|
67
|
-
})
|
|
68
|
-
}),
|
|
69
|
-
/*#__PURE__*/ jsx(Card, {
|
|
70
|
-
style: {
|
|
71
|
-
minHeight: 400
|
|
72
|
-
},
|
|
73
|
-
tabList: tabslist,
|
|
74
|
-
activeTabKey: activeTabKey,
|
|
75
|
-
tabProps: {
|
|
76
|
-
size: 'small',
|
|
77
|
-
style: {
|
|
78
|
-
fontSize: 12
|
|
79
|
-
}
|
|
80
|
-
},
|
|
81
|
-
onTabChange: (k)=>setActiveTabKey(k),
|
|
82
|
-
styles: {
|
|
83
|
-
title: {
|
|
84
|
-
paddingTop: 0
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
title: /*#__PURE__*/ jsxs(Space, {
|
|
59
|
+
children: ({ moduleJumpList, setModuleJumpList })=>/*#__PURE__*/ jsx(Tabs, {
|
|
60
|
+
defaultActiveKey: "bailout",
|
|
61
|
+
items: [
|
|
62
|
+
{
|
|
63
|
+
key: 'moduleTree',
|
|
64
|
+
label: 'Module Tree',
|
|
65
|
+
children: /*#__PURE__*/ jsx(Card, {
|
|
88
66
|
style: {
|
|
89
|
-
|
|
67
|
+
minHeight: 400
|
|
68
|
+
},
|
|
69
|
+
tabList: tabslist,
|
|
70
|
+
activeTabKey: activeTabKey,
|
|
71
|
+
tabProps: {
|
|
72
|
+
size: 'small',
|
|
73
|
+
style: {
|
|
74
|
+
fontSize: 12
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
onTabChange: (k)=>setActiveTabKey(k),
|
|
78
|
+
styles: {
|
|
79
|
+
title: {
|
|
80
|
+
paddingTop: 0
|
|
81
|
+
}
|
|
90
82
|
},
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
color: 'rgba(28, 31, 35, 0.8)'
|
|
104
|
-
},
|
|
105
|
-
children: "Current Module Imported Reasons Tree"
|
|
106
|
-
}),
|
|
107
|
-
/*#__PURE__*/ jsx(Popover, {
|
|
108
|
-
content: /*#__PURE__*/ jsx("div", {
|
|
109
|
-
children: /*#__PURE__*/ jsxs("div", {
|
|
110
|
-
children: [
|
|
111
|
-
/*#__PURE__*/ jsx(Badge, {
|
|
112
|
-
status: "success",
|
|
113
|
-
text: " "
|
|
114
|
-
}),
|
|
115
|
-
/*#__PURE__*/ jsx(RightSquareTwoTone, {}),
|
|
116
|
-
/*#__PURE__*/ jsx(Typography.Text, {
|
|
117
|
-
children: ': Jump button, click to jump to the Module dependency analysis page of this module.'
|
|
118
|
-
})
|
|
119
|
-
]
|
|
120
|
-
})
|
|
83
|
+
title: /*#__PURE__*/ jsxs(Space, {
|
|
84
|
+
style: {
|
|
85
|
+
padding: '10px 0px'
|
|
86
|
+
},
|
|
87
|
+
children: [
|
|
88
|
+
/*#__PURE__*/ jsx(LeftSquareOutlined, {
|
|
89
|
+
onClick: ()=>{
|
|
90
|
+
const _list = [
|
|
91
|
+
...moduleJumpList.slice(0, -1)
|
|
92
|
+
];
|
|
93
|
+
setModuleJumpList(_list);
|
|
94
|
+
}
|
|
121
95
|
}),
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
96
|
+
/*#__PURE__*/ jsx(Typography.Text, {
|
|
97
|
+
style: {
|
|
98
|
+
fontSize: 14,
|
|
99
|
+
color: 'rgba(28, 31, 35, 0.8)'
|
|
100
|
+
},
|
|
101
|
+
children: "Current Module Imported Reasons Tree"
|
|
102
|
+
}),
|
|
103
|
+
/*#__PURE__*/ jsx(Popover, {
|
|
104
|
+
content: /*#__PURE__*/ jsx("div", {
|
|
105
|
+
children: /*#__PURE__*/ jsxs("div", {
|
|
106
|
+
children: [
|
|
107
|
+
/*#__PURE__*/ jsx(Badge, {
|
|
108
|
+
status: "success",
|
|
109
|
+
text: " "
|
|
110
|
+
}),
|
|
111
|
+
/*#__PURE__*/ jsx(RightSquareTwoTone, {}),
|
|
112
|
+
/*#__PURE__*/ jsx(Typography.Text, {
|
|
113
|
+
children: ': Jump button, click to jump to the Module dependency analysis page of this module.'
|
|
114
|
+
})
|
|
115
|
+
]
|
|
116
|
+
})
|
|
117
|
+
}),
|
|
118
|
+
title: "Usage",
|
|
119
|
+
children: /*#__PURE__*/ jsx(QuestionCircleOutlined, {})
|
|
120
|
+
})
|
|
121
|
+
]
|
|
122
|
+
}),
|
|
123
|
+
children: /*#__PURE__*/ jsx(ModuleFilesTree, {
|
|
124
|
+
curModule: module,
|
|
125
|
+
modules: modules,
|
|
126
|
+
dependencies: dependencies,
|
|
127
|
+
cwd: cwd,
|
|
128
|
+
selectedChunk: selectedChunk,
|
|
129
|
+
activeTabKey: activeTabKey
|
|
130
|
+
})
|
|
131
|
+
})
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
key: 'bailout',
|
|
135
|
+
label: 'Bailout',
|
|
136
|
+
children: /*#__PURE__*/ jsx("div", {
|
|
137
|
+
style: {
|
|
138
|
+
marginTop: 16
|
|
139
|
+
},
|
|
140
|
+
children: /*#__PURE__*/ jsx(BailoutReasonCard, {
|
|
141
|
+
reasons: module.bailoutReason,
|
|
142
|
+
sideEffectCodes: sideEffectCodes,
|
|
143
|
+
modulePath: module.path
|
|
144
|
+
})
|
|
134
145
|
})
|
|
135
|
-
}
|
|
146
|
+
}
|
|
136
147
|
]
|
|
137
148
|
})
|
|
138
149
|
})
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pages/ModuleAnalyze/index.mjs","sources":["../../../src/pages/ModuleAnalyze/index.tsx"],"sourcesContent":["import { SDK } from '@rsdoctor/types';\nimport { Badge, Card, Drawer, Popover, Space, Typography } from 'antd';\nimport React, { useState } from 'react';\nimport { ServerAPIProvider } from 'src/components/Manifest';\nimport { getShortPath } from 'src/utils';\nimport { ModuleGraphListContext } from '../BundleSize/config';\nimport { ModuleFilesTree, BailoutReasonCard } from './fileTree';\nimport './index.scss';\nimport { drawerWidth } from '../../constants';\nimport {\n LeftSquareOutlined,\n QuestionCircleOutlined,\n RightSquareTwoTone,\n} from '@ant-design/icons';\n\nexport enum TabList {\n Reasons,\n Dependencies,\n}\n\nconst tabslist = [\n {\n key: TabList[TabList.Reasons],\n label: TabList[TabList.Reasons],\n },\n {\n key: TabList[TabList.Dependencies],\n label: TabList[TabList.Dependencies],\n },\n] as unknown as { key: string; label: string }[];\n\nexport const ModuleAnalyzeComponent: React.FC<{\n modules: SDK.ModuleData[];\n cwd: string;\n moduleId: string | number;\n show: boolean;\n setShow: (arg: boolean) => void;\n}> = ({ modules, cwd, moduleId, show, setShow }) => {\n const [selectedChunk, _setSelectedChunk] = useState('' as string);\n const [activeTabKey, setActiveTabKey] = useState(TabList[TabList.Reasons]);\n\n return (\n <ServerAPIProvider\n api={SDK.ServerAPI.API.GetModuleDetails}\n body={{ moduleId: +moduleId }}\n >\n {({ module, dependencies }) => {\n return (\n <Drawer\n title={\n <div className=\"module-analyze-box\">\n <Typography.Text>{getShortPath(module.path)}</Typography.Text>\n <Typography.Text\n style={{ fontSize: 12, color: 'rgba(0, 0, 0, 0.45)' }}\n >\n {`Current Module: ${module.path}`}\n </Typography.Text>\n </div>\n }\n open={show}\n maskClosable\n width={drawerWidth * 0.8}\n onClose={() => setShow(false)}\n >\n <ServerAPIProvider\n api={SDK.ServerAPI.API.GetAllChunkGraph}\n body={{}}\n >\n {(_chunks) => {\n return (\n <ModuleGraphListContext.Consumer>\n {({ moduleJumpList, setModuleJumpList }) => {\n return (\n
|
|
1
|
+
{"version":3,"file":"pages/ModuleAnalyze/index.mjs","sources":["../../../src/pages/ModuleAnalyze/index.tsx"],"sourcesContent":["import { SDK } from '@rsdoctor/types';\nimport { Badge, Card, Drawer, Popover, Space, Tabs, Typography } from 'antd';\nimport React, { useState } from 'react';\nimport { ServerAPIProvider } from 'src/components/Manifest';\nimport { getShortPath } from 'src/utils';\nimport { ModuleGraphListContext } from '../BundleSize/config';\nimport { ModuleFilesTree, BailoutReasonCard } from './fileTree';\nimport './index.scss';\nimport { drawerWidth } from '../../constants';\nimport {\n LeftSquareOutlined,\n QuestionCircleOutlined,\n RightSquareTwoTone,\n} from '@ant-design/icons';\n\nexport enum TabList {\n Reasons,\n Dependencies,\n}\n\nconst tabslist = [\n {\n key: TabList[TabList.Reasons],\n label: TabList[TabList.Reasons],\n },\n {\n key: TabList[TabList.Dependencies],\n label: TabList[TabList.Dependencies],\n },\n] as unknown as { key: string; label: string }[];\n\nexport const ModuleAnalyzeComponent: React.FC<{\n modules: SDK.ModuleData[];\n cwd: string;\n moduleId: string | number;\n show: boolean;\n setShow: (arg: boolean) => void;\n}> = ({ modules, cwd, moduleId, show, setShow }) => {\n const [selectedChunk, _setSelectedChunk] = useState('' as string);\n const [activeTabKey, setActiveTabKey] = useState(TabList[TabList.Reasons]);\n\n return (\n <ServerAPIProvider\n api={SDK.ServerAPI.API.GetModuleDetails}\n body={{ moduleId: +moduleId }}\n >\n {({ module, dependencies, sideEffectCodes }) => {\n return (\n <Drawer\n title={\n <div className=\"module-analyze-box\">\n <Typography.Text>{getShortPath(module.path)}</Typography.Text>\n <Typography.Text\n style={{ fontSize: 12, color: 'rgba(0, 0, 0, 0.45)' }}\n >\n {`Current Module: ${module.path}`}\n </Typography.Text>\n </div>\n }\n open={show}\n maskClosable\n width={drawerWidth * 0.8}\n onClose={() => setShow(false)}\n >\n <ServerAPIProvider\n api={SDK.ServerAPI.API.GetAllChunkGraph}\n body={{}}\n >\n {(_chunks) => {\n return (\n <ModuleGraphListContext.Consumer>\n {({ moduleJumpList, setModuleJumpList }) => {\n return (\n <Tabs\n defaultActiveKey=\"bailout\"\n items={[\n {\n key: 'moduleTree',\n label: 'Module Tree',\n children: (\n <Card\n style={{ minHeight: 400 }}\n tabList={tabslist}\n activeTabKey={activeTabKey}\n tabProps={{\n size: 'small',\n style: {\n fontSize: 12,\n },\n }}\n onTabChange={(k) => setActiveTabKey(k)}\n styles={{\n title: { paddingTop: 0 },\n }}\n title={\n <Space style={{ padding: '10px 0px' }}>\n <LeftSquareOutlined\n onClick={() => {\n const _list = [\n ...moduleJumpList.slice(0, -1),\n ];\n setModuleJumpList(_list);\n }}\n />\n <Typography.Text\n style={{\n fontSize: 14,\n color: 'rgba(28, 31, 35, 0.8)',\n }}\n >\n Current Module Imported Reasons Tree\n </Typography.Text>\n <Popover\n content={\n <div>\n <div>\n <Badge\n status=\"success\"\n text=\" \"\n />\n <RightSquareTwoTone />\n <Typography.Text>\n {\n ': Jump button, click to jump to the Module dependency analysis page of this module.'\n }\n </Typography.Text>\n </div>\n </div>\n }\n title=\"Usage\"\n >\n <QuestionCircleOutlined />\n </Popover>\n </Space>\n }\n >\n <ModuleFilesTree\n curModule={module}\n modules={modules}\n dependencies={dependencies}\n cwd={cwd}\n selectedChunk={selectedChunk}\n activeTabKey={activeTabKey}\n />\n </Card>\n ),\n },\n {\n key: 'bailout',\n label: 'Bailout',\n children: (\n <div style={{ marginTop: 16 }}>\n <BailoutReasonCard\n reasons={module.bailoutReason}\n sideEffectCodes={sideEffectCodes}\n modulePath={module.path}\n />\n </div>\n ),\n },\n ]}\n />\n );\n }}\n </ModuleGraphListContext.Consumer>\n );\n }}\n </ServerAPIProvider>\n </Drawer>\n );\n }}\n </ServerAPIProvider>\n );\n};\n"],"names":["TabList","tabslist","ModuleAnalyzeComponent","modules","cwd","moduleId","show","setShow","selectedChunk","_setSelectedChunk","useState","activeTabKey","setActiveTabKey","ServerAPIProvider","SDK","module","dependencies","sideEffectCodes","Drawer","Typography","getShortPath","drawerWidth","_chunks","ModuleGraphListContext","moduleJumpList","setModuleJumpList","Tabs","Card","k","Space","LeftSquareOutlined","_list","Popover","Badge","RightSquareTwoTone","QuestionCircleOutlined","ModuleFilesTree","BailoutReasonCard"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rsdoctor/components",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"repository": {
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@rsbuild/plugin-check-syntax": "1.6.1",
|
|
42
|
-
"@rsbuild/plugin-react": "^1.4.
|
|
43
|
-
"@rsbuild/plugin-sass": "^1.
|
|
42
|
+
"@rsbuild/plugin-react": "^1.4.5",
|
|
43
|
+
"@rsbuild/plugin-sass": "^1.5.0",
|
|
44
44
|
"@rsbuild/plugin-svgr": "^1.2.4",
|
|
45
45
|
"@types/node": "^22.8.1",
|
|
46
46
|
"@types/path-browserify": "1.0.3",
|
|
47
|
-
"@types/react": "^18.3.
|
|
47
|
+
"@types/react": "^18.3.28",
|
|
48
48
|
"@types/react-highlight-words": "^0.20.1",
|
|
49
49
|
"@types/url-parse": "1.4.11",
|
|
50
50
|
"react": "18.3.1",
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@ant-design/icons": "5.6.1",
|
|
56
56
|
"@monaco-editor/react": "4.7.0",
|
|
57
|
-
"ansi-to-react": "6.
|
|
57
|
+
"ansi-to-react": "6.2.6",
|
|
58
58
|
"antd": "5.19.1",
|
|
59
|
-
"axios": "^1.13.
|
|
59
|
+
"axios": "^1.13.6",
|
|
60
60
|
"clsx": "^2.1.1",
|
|
61
61
|
"dayjs": "1.11.19",
|
|
62
62
|
"echarts": "^5.6.0",
|
|
63
63
|
"echarts-for-react": "^3.0.6",
|
|
64
|
-
"es-toolkit": "^1.
|
|
64
|
+
"es-toolkit": "^1.44.0",
|
|
65
65
|
"i18next": "22.0.4",
|
|
66
66
|
"monaco-editor": "0.49.0",
|
|
67
67
|
"path-browserify": "1.0.1",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"react-markdown": "^9.1.0",
|
|
75
75
|
"socket.io-client": "4.8.1",
|
|
76
76
|
"url-parse": "1.5.10",
|
|
77
|
-
"@rsdoctor/
|
|
78
|
-
"@rsdoctor/
|
|
79
|
-
"@rsdoctor/
|
|
77
|
+
"@rsdoctor/types": "1.5.3",
|
|
78
|
+
"@rsdoctor/graph": "1.5.3",
|
|
79
|
+
"@rsdoctor/utils": "1.5.3"
|
|
80
80
|
},
|
|
81
81
|
"peerDependencies": {
|
|
82
82
|
"react": ">=18.3.1",
|