@lovrabet/cli 1.1.1 → 1.1.2

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.
Files changed (43) hide show
  1. package/README.md +289 -14
  2. package/lib/add-page/input-page-router.js +1 -1
  3. package/lib/add-page/main.js +1 -1
  4. package/lib/add-page/select-page-template.js +1 -1
  5. package/lib/api/api-pull-ui.js +1 -1
  6. package/lib/api/format-dataset.js +1 -1
  7. package/lib/api/generate-api-file.js +1 -1
  8. package/lib/api/main.js +1 -1
  9. package/lib/api/pull-silent.js +1 -1
  10. package/lib/api/pull.js +1 -1
  11. package/lib/auth/auth-server-ui.js +1 -1
  12. package/lib/auth/auth-server.js +1 -1
  13. package/lib/auth/constant.js +1 -1
  14. package/lib/auth/get-cookie.js +1 -1
  15. package/lib/auth/is-session-valid.js +1 -1
  16. package/lib/auth/logout.js +1 -1
  17. package/lib/cli.js +1 -1
  18. package/lib/cmd/build-watch.js +1 -1
  19. package/lib/cmd/build.js +1 -1
  20. package/lib/cmd/logs.js +1 -1
  21. package/lib/cmd/preview.js +1 -1
  22. package/lib/cmd/start.js +1 -1
  23. package/lib/config/config-help.js +1 -1
  24. package/lib/config/main.js +1 -1
  25. package/lib/constant/domain.js +1 -1
  26. package/lib/constant/env.js +1 -1
  27. package/lib/create-app/enhanced-guided-create.js +1 -1
  28. package/lib/create-app/format-elapsed.js +1 -1
  29. package/lib/create-app/main.js +1 -1
  30. package/lib/create-app/task-finished.js +1 -1
  31. package/lib/create-app/task-loading.js +1 -1
  32. package/lib/create-app/task-running.js +1 -1
  33. package/lib/create-app/task-time.js +1 -1
  34. package/lib/create-app/use-copy-project-template.js +1 -1
  35. package/lib/create-app/use-format-code.js +1 -1
  36. package/lib/create-app/use-install-dependencies.js +1 -1
  37. package/lib/help.js +1 -1
  38. package/lib/utils/config.js +1 -1
  39. package/lib/utils/copy-directory.js +1 -1
  40. package/lib/utils/logger.js +1 -1
  41. package/lib/utils/router-updater.js +1 -1
  42. package/lib/utils/template-replacer.js +1 -1
  43. package/package.json +1 -1
package/README.md CHANGED
@@ -1,28 +1,303 @@
1
- # lovrabet
1
+ # Lovrabet CLI
2
2
 
3
- ## 内部体验试用
3
+ 一个强大的前端开发脚手架工具,专为 Lovrabet 数据平台应用开发而设计。提供项目创建、页面生成、API 集成、开发调试等全套开发工具链。
4
4
 
5
- ### 安装
5
+ ## ✨ 特性
6
+
7
+ - 🚀 **快速创建项目** - 基于模板快速生成完整的前端应用项目
8
+ - 📄 **智能页面生成** - 自动生成页面组件和路由配置
9
+ - 🔐 **统一身份认证** - 集成 Lovrabet 平台登录和权限管理
10
+ - 🌐 **API 自动生成** - 根据数据集自动生成 API 配置文件
11
+ - ⚡ **开发服务器** - 内置热更新开发服务器
12
+ - 🏗️ **智能构建** - 优化的生产环境构建配置
13
+ - 📦 **模板管理** - 丰富的项目模板和组件模板
14
+ - 📝 **日志管理** - 完整的开发日志记录和查看
15
+
16
+ ## 📦 安装
17
+
18
+ ### 全局安装(推荐)
6
19
 
7
20
  ```bash
8
- $ bun install --global @lovrabet/cli
21
+ # 使用 npm
22
+ npm install -g @lovrabet/cli
23
+
24
+ # 使用 bun(推荐)
25
+ bun install -g @lovrabet/cli
9
26
  ```
10
27
 
11
-
28
+ ### 验证安装
12
29
 
13
30
  ```bash
14
- $ npm install --global @lovrabet/cli
31
+ lovrabet --help
32
+ ```
33
+
34
+ ## 🚀 快速上手
35
+
36
+ ### 1. 登录认证
15
37
 
38
+ 首先需要登录 Lovrabet 平台获取访问权限:
39
+
40
+ ```bash
41
+ lovrabet auth
16
42
  ```
17
43
 
18
- ## 查看命令帮助
44
+ 这会打开浏览器登录页面,完成登录后 CLI 会自动保存认证信息。
19
45
 
20
- lovrabet --help
46
+ ### 2. 创建项目
47
+
48
+ ```bash
49
+ lovrabet create
50
+ ```
51
+
52
+ CLI 会引导您选择项目模板并创建完整的项目结构。
53
+
54
+ ### 3. 启动开发
55
+
56
+ 进入项目目录并启动开发服务器:
57
+
58
+ ```bash
59
+ cd your-project
60
+ lovrabet start
61
+ ```
62
+
63
+ ### 4. 生成 API 配置[可选]
64
+
65
+ 如果在create的时候未选择自动更新API列表,或者API已经发生变化,可以手动根据应用的appcode自动生成 API 配置:
66
+
67
+ ```bash
68
+ lovrabet api pull [app-code]
69
+ ```
70
+
71
+ ### 5. 添加页面
72
+
73
+ 在项目中快速添加新页面:
74
+
75
+ ```bash
76
+ lovrabet add page
77
+ ```
78
+
79
+ ## 📚 命令详解
80
+
81
+ ### 项目管理
82
+
83
+ #### `lovrabet create [项目名]`
84
+
85
+ 创建新的前端应用项目
86
+
87
+ - **功能**: 基于预设模板创建完整的项目结构
88
+ - **模板类型**:
89
+ - React 单页应用
90
+ - 多页面应用
91
+ - 组件库项目
92
+ - **自动配置**: 路由、状态管理、API 集成、构建配置
93
+
94
+ #### `lovrabet add page`
95
+
96
+ 添加新页面到当前项目
97
+
98
+ - **功能**: 自动生成页面组件、样式文件和路由配置
99
+ - **支持**: 嵌套路由、动态路由、页面模板选择
100
+ - **自动更新**: 路由配置文件和导航菜单
101
+
102
+ ### 开发调试
103
+
104
+ #### `lovrabet start`
105
+
106
+ 启动开发服务器
107
+
108
+ - **热更新**: 文件变化自动刷新
109
+ - **代理配置**: 自动配置 API 代理
110
+ - **错误提示**: 友好的错误信息和调试提示
111
+
112
+ #### `lovrabet build`
113
+
114
+ 构建生产版本
115
+
116
+ - **代码压缩**: 自动压缩 JS、CSS、HTML
117
+ - **资源优化**: 图片压缩、字体子集化
118
+ - **缓存优化**: 文件名哈希、分包策略
119
+
120
+ #### `lovrabet preview [--watch]`
121
+
122
+ 预览构建结果
123
+
124
+ - **本地服务**: 启动本地预览服务器
125
+ - **监听模式**: `--watch` 参数自动重新构建
126
+
127
+ ### API 集成
128
+
129
+ #### `lovrabet api pull [app-code]`
130
+
131
+ 拉取并生成 API 配置文件
132
+
133
+ - **自动发现**: 扫描应用数据集和接口
134
+ - **类型生成**: 自动生成 TypeScript 类型定义
135
+ - **配置生成**: 生成 SDK 配置文件
136
+
137
+ ### 身份认证
138
+
139
+ #### `lovrabet auth`
140
+
141
+ 登录 Lovrabet 平台
142
+
143
+ - **浏览器登录**: 打开浏览器进行 OAuth 登录
144
+ - **令牌管理**: 自动保存和刷新访问令牌
145
+ - **权限验证**: 验证项目访问权限
146
+
147
+ #### `lovrabet logout`
148
+
149
+ 退出登录
150
+
151
+ - **清理令牌**: 清除本地保存的认证信息
152
+ - **安全退出**: 通知服务器撤销令牌
153
+
154
+ ### 配置管理
155
+
156
+ #### `lovrabet config`
157
+
158
+ 项目配置管理
159
+
160
+ - **应用绑定**: 绑定 Lovrabet 应用
161
+ - **环境配置**: 开发/生产环境切换
162
+ - **API 配置**: 数据集和接口配置
163
+
164
+ ### 日志管理
165
+
166
+ #### `lovrabet logs`
167
+
168
+ 查看开发日志
169
+
170
+ ```bash
171
+ lovrabet logs # 查看最新日志
172
+ lovrabet logs --clear # 清空日志记录
173
+ ```
174
+
175
+ ## 🏗️ 项目结构
176
+
177
+ CLI 创建的项目具有以下标准结构:
178
+
179
+ ```
180
+ your-project/
181
+ ├── src/
182
+ │ ├── components/ # 公共组件
183
+ │ ├── pages/ # 页面组件
184
+ │ ├── layouts/ # 布局组件
185
+ │ ├── api/ # API 配置
186
+ │ ├── utils/ # 工具函数
187
+ │ ├── router/ # 路由配置
188
+ │ └── main.tsx # 入口文件
189
+ ├── public/ # 静态资源
190
+ ├── docs/ # 项目文档
191
+ ├── package.json # 项目配置
192
+ ├── vite.config.ts # 构建配置
193
+ ├── tsconfig.json # TypeScript 配置
194
+ └── lovrabet.config.js # Lovrabet 配置
195
+ ```
196
+
197
+ ## ⚙️ 配置文件
198
+
199
+ ### `lovrabet.config.js`
200
+
201
+ 项目根目录的配置文件,用于配置应用信息和 API:
202
+
203
+ ```javascript
204
+ module.exports = {
205
+ appCode: "your-app-code",
206
+ env: "online", // 或 "daily"
207
+ models: {
208
+ Users: {
209
+ tableName: "users",
210
+ datasetId: "your-dataset-id",
211
+ },
212
+ // 更多模型配置...
213
+ },
214
+ };
215
+ ```
216
+
217
+ ## 🔧 环境要求
218
+
219
+ - **Node.js**: >= 20.0.0
220
+ - **包管理器**: npm、yarn 或 bun
221
+ - **浏览器**: Chrome、Firefox、Safari、Edge 等现代浏览器
222
+
223
+ ## 🎯 使用场景
224
+
225
+ ### 快速原型开发
226
+
227
+ ```bash
228
+ lovrabet create prototype-app
229
+ cd prototype-app
230
+ lovrabet api pull your-app-code
231
+ lovrabet start
232
+ ```
233
+
234
+ ### 企业级应用开发
235
+
236
+ ```bash
237
+ lovrabet create enterprise-app
238
+ cd enterprise-app
239
+ lovrabet config # 配置生产环境
240
+ lovrabet add page # 添加业务页面
241
+ lovrabet build # 构建生产版本
242
+ ```
243
+
244
+ ### 组件库开发
245
+
246
+ ```bash
247
+ lovrabet create component-library
248
+ cd component-library
249
+ # 开发和测试组件...
250
+ lovrabet build
251
+ ```
252
+
253
+ ## 🆘 故障排除
254
+
255
+ ### 常见问题
256
+
257
+ **Q: 登录失败或权限不足?**
258
+ A: 确保您有 Lovrabet 平台的访问权限,尝试重新登录:
259
+
260
+ ```bash
261
+ lovrabet logout
262
+ lovrabet auth
263
+ ```
264
+
265
+ **Q: API 拉取失败?**
266
+ A: 检查应用代码是否正确,确认您有该应用的访问权限:
267
+
268
+ ```bash
269
+ lovrabet api pull correct-app-code
270
+ ```
271
+
272
+ **Q: 构建错误?**
273
+ A: 查看详细错误信息:
274
+
275
+ ```bash
276
+ lovrabet logs
277
+ ```
278
+
279
+ **Q: 开发服务器启动失败?**
280
+ A: 检查端口是否被占用,或指定其他端口。
281
+
282
+ ### 日志和调试
283
+
284
+ 查看详细的操作日志:
285
+
286
+ ```bash
287
+ lovrabet logs
288
+ ```
289
+
290
+ 清空日志记录:
291
+
292
+ ```bash
293
+ lovrabet logs --clear
294
+ ```
295
+
296
+ ## 📖 更多资源
297
+
298
+ - [Lovrabet SDK 使用指南](https://www.npmjs.com/package/@lovrabet/sdk)
299
+ - [示例项目](https://github.com/lovrabet-ai/sub-app-react-demo)
21
300
 
22
- ## 试用目标
301
+ ---
23
302
 
24
- 1. 创建一个项目
25
- 2. 创建一个页面
26
- 3. 登录鉴权
27
- 4. 绑定应用
28
- 5. 生成数据集 api 文件
303
+ **开始您的 Lovrabet 应用开发之旅!** 🎉
@@ -1 +1 @@
1
- (function(_0x8f5dc0,_0x54d381){const _0x21beb1=a0_0x2b3c,_0x1c1f94=_0x8f5dc0();while(!![]){try{const _0x113493=parseInt(_0x21beb1(0x13f))/0x1+parseInt(_0x21beb1(0x147))/0x2+-parseInt(_0x21beb1(0x144))/0x3*(-parseInt(_0x21beb1(0x148))/0x4)+-parseInt(_0x21beb1(0x153))/0x5+parseInt(_0x21beb1(0x137))/0x6*(-parseInt(_0x21beb1(0x156))/0x7)+-parseInt(_0x21beb1(0x136))/0x8*(parseInt(_0x21beb1(0x14a))/0x9)+parseInt(_0x21beb1(0x150))/0xa*(parseInt(_0x21beb1(0x13d))/0xb);if(_0x113493===_0x54d381)break;else _0x1c1f94['push'](_0x1c1f94['shift']());}catch(_0x675cd){_0x1c1f94['push'](_0x1c1f94['shift']());}}}(a0_0x296b,0x21ce6));function a0_0x296b(){const _0x2e941f=['my-page','endsWith','364705OMYFhP','green','251735nbbNgy','split','startsWith','页面路径不合法','\x20已存在,请使用其他路径','354738XRlgll','路径不能包含连续的\x20/','red','153054ndGVvw','8edaNOZ','delete','324099ILbzaC','includes','test','existsSync','backspace','路径中的每个段只能以字母或数字开头,且只包含字母、数字、-\x20和\x20_','50uffSzJ','\x20←\x20','\x20直接回车确认,或输入自定义路由地址','704770IzWwMg','gray','页面路由地址:\x20','948675jsHUXK','40sLqpvO','12ayZNft','\x20Step2:\x20','length','路径不能以\x20/\x20开头或结尾'];a0_0x296b=function(){return _0x2e941f;};return a0_0x296b();}import{jsx as a0_0x4190e3,jsxs as a0_0x32133c}from'react/jsx-runtime';function a0_0x2b3c(_0x3bc293,_0x5f50a2){const _0x296b0a=a0_0x296b();return a0_0x2b3c=function(_0x2b3cfd,_0x8b15d5){_0x2b3cfd=_0x2b3cfd-0x136;let _0x2c244b=_0x296b0a[_0x2b3cfd];return _0x2c244b;},a0_0x2b3c(_0x3bc293,_0x5f50a2);}import{useState}from'react';import{Text,Box,useInput}from'ink';import a0_0x230913 from'node:fs';export function InputProjectCode(_0x1fc0ab){const _0x1e23c6=a0_0x2b3c,{onSubmit:_0x1f0677,pagePath:_0x2a6fc6}=_0x1fc0ab,[_0x578dd6,_0x1e3ef9]=useState(''),[_0x10b1dd,_0x58e4d5]=useState(''),_0x36925c=_0x1e23c6(0x13b);function _0x1ed2cb(_0x444520){const _0x50a7ba=_0x1e23c6;if(_0x444520[_0x50a7ba(0x139)]>0x64)return{'valid':![],'message':'页面路径长度不能超过\x20100\x20个字符'};if(_0x444520[_0x50a7ba(0x141)]('/')||_0x444520[_0x50a7ba(0x13c)]('/'))return{'valid':![],'message':_0x50a7ba(0x13a)};if(_0x444520[_0x50a7ba(0x14b)]('//'))return{'valid':![],'message':_0x50a7ba(0x145)};const _0x199742=_0x444520[_0x50a7ba(0x140)]('/');for(const _0x4bb67d of _0x199742){if(!_0x4bb67d)continue;const _0x5dab6=/^[A-Za-z0-9][A-Za-z0-9_-]*$/;if(!_0x5dab6[_0x50a7ba(0x14c)](_0x4bb67d))return{'valid':![],'message':_0x50a7ba(0x14f)};}return{'valid':!![]};}return useInput((_0x50bfcb,_0x3ba158)=>{const _0x136881=_0x1e23c6;if(_0x3ba158['return']){const _0x3e9ea0=_0x578dd6['trim']()||_0x36925c;if(_0x10b1dd)return;const _0x4fa738=_0x2a6fc6+'/'+_0x3e9ea0;if(a0_0x230913[_0x136881(0x14d)](_0x4fa738)){_0x58e4d5('页面路径\x20'+_0x3e9ea0+_0x136881(0x143));return;}_0x1f0677(_0x3e9ea0),_0x1e3ef9(''),_0x58e4d5('');}else _0x3ba158[_0x136881(0x14e)]||_0x3ba158[_0x136881(0x149)]?_0x1e3ef9(_0x61baf3=>{const _0xab16d=_0x136881,_0x2fee01=_0x61baf3['slice'](0x0,-0x1),{valid:_0x44dad4,message:_0x3da8c8}=_0x1ed2cb(_0x2fee01);return _0x58e4d5(_0x44dad4?'':_0x3da8c8||_0xab16d(0x142)),_0x2fee01;}):_0x1e3ef9(_0x5da27d=>{const _0x3fd207=_0x5da27d+_0x50bfcb,{valid:_0x57f2b9,message:_0x446280}=_0x1ed2cb(_0x3fd207);return _0x58e4d5(_0x57f2b9?'':_0x446280||'页面路径不合法'),_0x3fd207;});}),a0_0x32133c(Box,{'flexDirection':'column','children':[a0_0x32133c(Box,{'children':[a0_0x4190e3(Text,{'color':_0x1e23c6(0x154),'children':_0x1e23c6(0x138)}),a0_0x4190e3(Text,{'children':_0x1e23c6(0x155)}),_0x578dd6?a0_0x4190e3(Text,{'color':_0x1e23c6(0x13e),'children':_0x578dd6}):a0_0x4190e3(Text,{'color':_0x1e23c6(0x154),'children':_0x36925c}),_0x10b1dd&&a0_0x32133c(Text,{'color':_0x1e23c6(0x146),'children':[_0x1e23c6(0x151),_0x10b1dd]})]}),!_0x10b1dd&&!_0x578dd6&&a0_0x4190e3(Box,{'children':a0_0x4190e3(Text,{'color':_0x1e23c6(0x154),'children':_0x1e23c6(0x152)})})]});}
1
+ (function(_0x56d18f,_0x36917f){const _0x287e4b=a0_0x3359,_0x238a4e=_0x56d18f();while(!![]){try{const _0x4aa739=parseInt(_0x287e4b(0x16a))/0x1*(parseInt(_0x287e4b(0x159))/0x2)+-parseInt(_0x287e4b(0x16e))/0x3+-parseInt(_0x287e4b(0x166))/0x4*(-parseInt(_0x287e4b(0x16b))/0x5)+parseInt(_0x287e4b(0x167))/0x6+-parseInt(_0x287e4b(0x16f))/0x7+-parseInt(_0x287e4b(0x15c))/0x8+parseInt(_0x287e4b(0x172))/0x9;if(_0x4aa739===_0x36917f)break;else _0x238a4e['push'](_0x238a4e['shift']());}catch(_0x449cf1){_0x238a4e['push'](_0x238a4e['shift']());}}}(a0_0x25ab,0x810a8));function a0_0x3359(_0x5a5eb8,_0xee0ea0){const _0x25abc1=a0_0x25ab();return a0_0x3359=function(_0x335990,_0x173a3a){_0x335990=_0x335990-0x159;let _0x56c78a=_0x25abc1[_0x335990];return _0x56c78a;},a0_0x3359(_0x5a5eb8,_0xee0ea0);}import{jsx as a0_0x33b031,jsxs as a0_0x59d093}from'react/jsx-runtime';import{useState}from'react';function a0_0x25ab(){const _0x37a14c=['startsWith','4562136suGrIV','split','路径不能以\x20/\x20开头或结尾','trim','test','\x20直接回车确认,或输入自定义路由地址','\x20已存在,请使用其他路径','length','my-page','existsSync','407384NyzMSv','4729548RNqsms','green','gray','53962DjbKYc','5JTLLUL','delete','\x20Step2:\x20','2330790OzAOhC','5473580banseg','endsWith','路径中的每个段只能以字母或数字开头,且只包含字母、数字、-\x20和\x20_','14451291lNyTrt','\x20←\x20','页面路径不合法','includes','6begXby','red'];a0_0x25ab=function(){return _0x37a14c;};return a0_0x25ab();}import{Text,Box,useInput}from'ink';import a0_0x57dd1f from'node:fs';export function InputProjectCode(_0x390ee6){const _0x7786e9=a0_0x3359,{onSubmit:_0x797a67,pagePath:_0x8db58c}=_0x390ee6,[_0x45d697,_0x1cc0f0]=useState(''),[_0x175db1,_0x313900]=useState(''),_0xf69051=_0x7786e9(0x164);function _0x2096b5(_0x1df182){const _0x554a00=_0x7786e9;if(_0x1df182[_0x554a00(0x163)]>0x64)return{'valid':![],'message':'页面路径长度不能超过\x20100\x20个字符'};if(_0x1df182[_0x554a00(0x15b)]('/')||_0x1df182[_0x554a00(0x170)]('/'))return{'valid':![],'message':_0x554a00(0x15e)};if(_0x1df182[_0x554a00(0x175)]('//'))return{'valid':![],'message':'路径不能包含连续的\x20/'};const _0xfdde9b=_0x1df182[_0x554a00(0x15d)]('/');for(const _0x5a2236 of _0xfdde9b){if(!_0x5a2236)continue;const _0x3b62ca=/^[A-Za-z0-9][A-Za-z0-9_-]*$/;if(!_0x3b62ca[_0x554a00(0x160)](_0x5a2236))return{'valid':![],'message':_0x554a00(0x171)};}return{'valid':!![]};}return useInput((_0x5df5d3,_0x1ffe83)=>{const _0x4188e6=_0x7786e9;if(_0x1ffe83['return']){const _0x1e5535=_0x45d697[_0x4188e6(0x15f)]()||_0xf69051;if(_0x175db1)return;const _0x509080=_0x8db58c+'/'+_0x1e5535;if(a0_0x57dd1f[_0x4188e6(0x165)](_0x509080)){_0x313900('页面路径\x20'+_0x1e5535+_0x4188e6(0x162));return;}_0x797a67(_0x1e5535),_0x1cc0f0(''),_0x313900('');}else _0x1ffe83['backspace']||_0x1ffe83[_0x4188e6(0x16c)]?_0x1cc0f0(_0x5f1276=>{const _0x578b37=_0x4188e6,_0xc0c9ec=_0x5f1276['slice'](0x0,-0x1),{valid:_0x2b0ea7,message:_0x5c3ce0}=_0x2096b5(_0xc0c9ec);return _0x313900(_0x2b0ea7?'':_0x5c3ce0||_0x578b37(0x174)),_0xc0c9ec;}):_0x1cc0f0(_0x35b418=>{const _0xc50aad=_0x4188e6,_0x2ada3c=_0x35b418+_0x5df5d3,{valid:_0x450a2e,message:_0x4aaa9a}=_0x2096b5(_0x2ada3c);return _0x313900(_0x450a2e?'':_0x4aaa9a||_0xc50aad(0x174)),_0x2ada3c;});}),a0_0x59d093(Box,{'flexDirection':'column','children':[a0_0x59d093(Box,{'children':[a0_0x33b031(Text,{'color':_0x7786e9(0x169),'children':_0x7786e9(0x16d)}),a0_0x33b031(Text,{'children':'页面路由地址:\x20'}),_0x45d697?a0_0x33b031(Text,{'color':_0x7786e9(0x168),'children':_0x45d697}):a0_0x33b031(Text,{'color':'gray','children':_0xf69051}),_0x175db1&&a0_0x59d093(Text,{'color':_0x7786e9(0x15a),'children':[_0x7786e9(0x173),_0x175db1]})]}),!_0x175db1&&!_0x45d697&&a0_0x33b031(Box,{'children':a0_0x33b031(Text,{'color':_0x7786e9(0x169),'children':_0x7786e9(0x161)})})]});}
@@ -1 +1 @@
1
- const a1_0x3144e0=a1_0xcce0;function a1_0x1857(){const _0x120770=['pages','catch','join','\x20*\x20路由地址:\x20','then','now','1453527UWnpgg','27996IHHpnF','15zmWvzU','36VfKsuO','finally','1130856VyodKX','src','processTemplate','success','\x20Step1:\x20','url','6138457LhNXzu','add-page','gray','\x20Step2:\x20','\x20*\x20页面文件已创建,可直接通过路由访问','\x20*\x20页面路径:\x20','error','3zFloXi','开始添加页面:\x20','已输入的页面路由\x20','5398790DQTdTa','页面添加成功:\x20','resolve','33gWiJRB','cyan','column','green','204814kIpzIp','setLogPath','正在创建页面,请稍候…','1267rCwTEi','341200ASCUKh','36jsKBmP'];a1_0x1857=function(){return _0x120770;};return a1_0x1857();}(function(_0x504466,_0x3f05be){const _0x3adb68=a1_0xcce0,_0x1f8989=_0x504466();while(!![]){try{const _0x1e3da7=-parseInt(_0x3adb68(0x146))/0x1*(parseInt(_0x3adb68(0x150))/0x2)+-parseInt(_0x3adb68(0x15c))/0x3+-parseInt(_0x3adb68(0x161))/0x4*(-parseInt(_0x3adb68(0x15e))/0x5)+-parseInt(_0x3adb68(0x15d))/0x6*(-parseInt(_0x3adb68(0x153))/0x7)+-parseInt(_0x3adb68(0x154))/0x8*(-parseInt(_0x3adb68(0x155))/0x9)+-parseInt(_0x3adb68(0x149))/0xa*(parseInt(_0x3adb68(0x14c))/0xb)+-parseInt(_0x3adb68(0x15f))/0xc*(-parseInt(_0x3adb68(0x13f))/0xd);if(_0x1e3da7===_0x3f05be)break;else _0x1f8989['push'](_0x1f8989['shift']());}catch(_0x3bb5e3){_0x1f8989['push'](_0x1f8989['shift']());}}}(a1_0x1857,0xd4088));import{jsx as a1_0x3d73f8,jsxs as a1_0x11339f,Fragment as a1_0x448153}from'react/jsx-runtime';import{fileURLToPath}from'node:url';import a1_0x25a9ef from'node:path';import{useEffect,useState}from'react';import{Box,Text,useApp}from'ink';function a1_0xcce0(_0x4abc18,_0x558175){const _0x185770=a1_0x1857();return a1_0xcce0=function(_0xcce09e,_0x5be689){_0xcce09e=_0xcce09e-0x13c;let _0x20429f=_0x185770[_0xcce09e];return _0x20429f;},a1_0xcce0(_0x4abc18,_0x558175);}import{SelectPageTemplate}from'./select-page-template.js';import{InputProjectCode}from'./input-page-router.js';import{logger}from'../utils/logger.js';import{TemplateReplacer}from'../utils/template-replacer.js';const __dirname=a1_0x25a9ef['dirname'](fileURLToPath(import.meta[a1_0x3144e0(0x13e)])),pageTemplateDir=a1_0x25a9ef[a1_0x3144e0(0x14b)](__dirname,'../../templates/pages'),projectDir=process['cwd']();export const AddPage=()=>{const _0x566a7d=a1_0x3144e0,{exit:_0x350242}=useApp(),[_0x27c846,_0x7828fc]=useState(''),[_0x197895,_0xfc4d39]=useState(''),[_0x4974f6,_0x5ce08c]=useState(![]),[_0x20aaf0,_0x417bdd]=useState(![]),_0x529769=a1_0x25a9ef[_0x566a7d(0x158)](projectDir,_0x566a7d(0x162),_0x566a7d(0x156)),_0x155988=a1_0x25a9ef['join'](_0x529769,_0x197895),_0x8192b4=a1_0x25a9ef['join']('src',_0x566a7d(0x156),_0x197895);useEffect(()=>{const _0x30a24c=_0x566a7d,_0x40425b=a1_0x25a9ef['resolve'](pageTemplateDir,_0x27c846);if(_0x27c846&&_0x197895){_0x5ce08c(!![]),logger[_0x30a24c(0x151)](process['cwd']());const _0x28c9dc=Date[_0x30a24c(0x15b)]();logger['info'](_0x30a24c(0x140),_0x30a24c(0x147)+_0x197895,{'template':_0x27c846,'targetPath':_0x8192b4}),TemplateReplacer[_0x30a24c(0x163)](_0x40425b,a1_0x25a9ef['join'](_0x529769,_0x197895),_0x197895,_0x27c846)[_0x30a24c(0x15a)](()=>{const _0x23a720=_0x30a24c,_0x784493=Date['now']()-_0x28c9dc;logger[_0x23a720(0x13c)](_0x23a720(0x140),_0x23a720(0x14a)+_0x197895,_0x784493,{'template':_0x27c846,'targetPath':_0x8192b4,'routePath':_0x197895}),_0x417bdd(!![]);})[_0x30a24c(0x157)](_0x213ee3=>{const _0x17def8=_0x30a24c,_0x1e7fef=Date['now']()-_0x28c9dc;logger[_0x17def8(0x145)](_0x17def8(0x140),'页面添加失败:\x20'+_0x197895,{'template':_0x27c846,'targetPath':_0x8192b4,'error':_0x213ee3 instanceof Error?_0x213ee3['message']:String(_0x213ee3),'duration':_0x1e7fef});})[_0x30a24c(0x160)](()=>{_0x5ce08c(![]);});}},[_0x27c846,_0x197895]),useEffect(()=>{_0x20aaf0&&setTimeout(()=>{_0x350242();});},[_0x20aaf0]);if(_0x27c846)return a1_0x11339f(Box,{'flexDirection':_0x566a7d(0x14e),'paddingY':0x1,'children':[a1_0x11339f(Box,{'children':[a1_0x3d73f8(Text,{'color':'gray','children':_0x566a7d(0x13d)}),a1_0x3d73f8(Text,{'children':'已选择页面模板\x20'}),a1_0x3d73f8(Text,{'color':_0x566a7d(0x14f),'children':_0x27c846})]}),_0x197895?a1_0x11339f(Box,{'children':[a1_0x3d73f8(Text,{'color':_0x566a7d(0x141),'children':_0x566a7d(0x142)}),a1_0x3d73f8(Text,{'children':_0x566a7d(0x148)}),a1_0x3d73f8(Text,{'color':'green','children':_0x197895})]}):a1_0x3d73f8(InputProjectCode,{'pagePath':_0x155988,'onSubmit':_0xfc4d39}),_0x197895&&_0x4974f6?a1_0x11339f(Box,{'marginTop':0x1,'children':[a1_0x3d73f8(Box,{'width':'4'}),a1_0x3d73f8(Text,{'children':_0x566a7d(0x152)})]}):null,_0x20aaf0?a1_0x11339f(a1_0x448153,{'children':[a1_0x3d73f8(Box,{'marginTop':0x1,'children':a1_0x3d73f8(Text,{'color':_0x566a7d(0x141),'children':'\x20*\x20页面创建成功!'})}),a1_0x11339f(Box,{'children':[a1_0x3d73f8(Text,{'color':'gray','children':_0x566a7d(0x144)}),a1_0x3d73f8(Text,{'color':'green','children':_0x8192b4})]}),a1_0x11339f(Box,{'children':[a1_0x3d73f8(Text,{'color':_0x566a7d(0x141),'children':_0x566a7d(0x159)}),a1_0x11339f(Text,{'color':_0x566a7d(0x14f),'children':['/',_0x197895]})]}),a1_0x3d73f8(Box,{'marginTop':0x1,'children':a1_0x3d73f8(Text,{'color':_0x566a7d(0x14d),'children':_0x566a7d(0x143)})})]}):null]});return a1_0x3d73f8(SelectPageTemplate,{'onSelect':_0x7828fc});};
1
+ const a1_0x3b126c=a1_0x25c4;(function(_0x1b1455,_0x3543e2){const _0x23bf24=a1_0x25c4,_0x36ad3b=_0x1b1455();while(!![]){try{const _0x2380f0=-parseInt(_0x23bf24(0xae))/0x1+parseInt(_0x23bf24(0xb2))/0x2*(parseInt(_0x23bf24(0xaf))/0x3)+-parseInt(_0x23bf24(0xb8))/0x4+parseInt(_0x23bf24(0xcc))/0x5+parseInt(_0x23bf24(0xcb))/0x6+-parseInt(_0x23bf24(0xc2))/0x7*(parseInt(_0x23bf24(0xb0))/0x8)+parseInt(_0x23bf24(0xaa))/0x9;if(_0x2380f0===_0x3543e2)break;else _0x36ad3b['push'](_0x36ad3b['shift']());}catch(_0x4f3847){_0x36ad3b['push'](_0x36ad3b['shift']());}}}(a1_0x2477,0xf253a));import{jsx as a1_0x120f66,jsxs as a1_0x45e025,Fragment as a1_0x30cb8a}from'react/jsx-runtime';import{fileURLToPath}from'node:url';import a1_0x2e5c32 from'node:path';import{useEffect,useState}from'react';function a1_0x2477(){const _0x18154a=['1110013MXAixk','4971hIHUSi','8136784feYZpm','success','686YGKUYE','cwd','message','setLogPath','column','pages','5196712wltDHi','\x20Step1:\x20','now','then','dirname','join','\x20*\x20路由地址:\x20','\x20*\x20页面创建成功!','\x20Step2:\x20','src','7eYmMvH','error','processTemplate','gray','catch','cyan','页面添加失败:\x20','add-page','已选择页面模板\x20','894342IhLcqv','7346045uLoxlo','开始添加页面:\x20','resolve','\x20*\x20页面文件已创建,可直接通过路由访问','info','正在创建页面,请稍候…','20090178rnUhME','green','../../templates/pages','url'];a1_0x2477=function(){return _0x18154a;};return a1_0x2477();}import{Box,Text,useApp}from'ink';import{SelectPageTemplate}from'./select-page-template.js';import{InputProjectCode}from'./input-page-router.js';function a1_0x25c4(_0x4af222,_0x177186){const _0x24770c=a1_0x2477();return a1_0x25c4=function(_0x25c47e,_0x12b0b0){_0x25c47e=_0x25c47e-0xaa;let _0xf963c6=_0x24770c[_0x25c47e];return _0xf963c6;},a1_0x25c4(_0x4af222,_0x177186);}import{logger}from'../utils/logger.js';import{TemplateReplacer}from'../utils/template-replacer.js';const __dirname=a1_0x2e5c32[a1_0x3b126c(0xbc)](fileURLToPath(import.meta[a1_0x3b126c(0xad)])),pageTemplateDir=a1_0x2e5c32[a1_0x3b126c(0xce)](__dirname,a1_0x3b126c(0xac)),projectDir=process['cwd']();export const AddPage=()=>{const _0x36e214=a1_0x3b126c,{exit:_0x4efd94}=useApp(),[_0x3df3f5,_0x2faf6f]=useState(''),[_0x3d3c39,_0x301d01]=useState(''),[_0x38a08e,_0x36b863]=useState(![]),[_0xe4f263,_0x3bc2b0]=useState(![]),_0x5f363a=a1_0x2e5c32[_0x36e214(0xbd)](projectDir,_0x36e214(0xc1),_0x36e214(0xb7)),_0x556f9c=a1_0x2e5c32[_0x36e214(0xbd)](_0x5f363a,_0x3d3c39),_0x43be0d=a1_0x2e5c32[_0x36e214(0xbd)](_0x36e214(0xc1),_0x36e214(0xb7),_0x3d3c39);useEffect(()=>{const _0x461597=_0x36e214,_0x101bb8=a1_0x2e5c32[_0x461597(0xce)](pageTemplateDir,_0x3df3f5);if(_0x3df3f5&&_0x3d3c39){_0x36b863(!![]),logger[_0x461597(0xb5)](process[_0x461597(0xb3)]());const _0xf2270c=Date['now']();logger[_0x461597(0xd0)](_0x461597(0xc9),_0x461597(0xcd)+_0x3d3c39,{'template':_0x3df3f5,'targetPath':_0x43be0d}),TemplateReplacer[_0x461597(0xc4)](_0x101bb8,a1_0x2e5c32['join'](_0x5f363a,_0x3d3c39),_0x3d3c39,_0x3df3f5)[_0x461597(0xbb)](()=>{const _0x4134a7=_0x461597,_0x308caa=Date[_0x4134a7(0xba)]()-_0xf2270c;logger[_0x4134a7(0xb1)](_0x4134a7(0xc9),'页面添加成功:\x20'+_0x3d3c39,_0x308caa,{'template':_0x3df3f5,'targetPath':_0x43be0d,'routePath':_0x3d3c39}),_0x3bc2b0(!![]);})[_0x461597(0xc6)](_0x3a022a=>{const _0x2fe285=_0x461597,_0x511a26=Date[_0x2fe285(0xba)]()-_0xf2270c;logger[_0x2fe285(0xc3)]('add-page',_0x2fe285(0xc8)+_0x3d3c39,{'template':_0x3df3f5,'targetPath':_0x43be0d,'error':_0x3a022a instanceof Error?_0x3a022a[_0x2fe285(0xb4)]:String(_0x3a022a),'duration':_0x511a26});})['finally'](()=>{_0x36b863(![]);});}},[_0x3df3f5,_0x3d3c39]),useEffect(()=>{_0xe4f263&&setTimeout(()=>{_0x4efd94();});},[_0xe4f263]);if(_0x3df3f5)return a1_0x45e025(Box,{'flexDirection':_0x36e214(0xb6),'paddingY':0x1,'children':[a1_0x45e025(Box,{'children':[a1_0x120f66(Text,{'color':_0x36e214(0xc5),'children':_0x36e214(0xb9)}),a1_0x120f66(Text,{'children':_0x36e214(0xca)}),a1_0x120f66(Text,{'color':_0x36e214(0xab),'children':_0x3df3f5})]}),_0x3d3c39?a1_0x45e025(Box,{'children':[a1_0x120f66(Text,{'color':'gray','children':_0x36e214(0xc0)}),a1_0x120f66(Text,{'children':'已输入的页面路由\x20'}),a1_0x120f66(Text,{'color':'green','children':_0x3d3c39})]}):a1_0x120f66(InputProjectCode,{'pagePath':_0x556f9c,'onSubmit':_0x301d01}),_0x3d3c39&&_0x38a08e?a1_0x45e025(Box,{'marginTop':0x1,'children':[a1_0x120f66(Box,{'width':'4'}),a1_0x120f66(Text,{'children':_0x36e214(0xd1)})]}):null,_0xe4f263?a1_0x45e025(a1_0x30cb8a,{'children':[a1_0x120f66(Box,{'marginTop':0x1,'children':a1_0x120f66(Text,{'color':_0x36e214(0xc5),'children':_0x36e214(0xbf)})}),a1_0x45e025(Box,{'children':[a1_0x120f66(Text,{'color':_0x36e214(0xc5),'children':'\x20*\x20页面路径:\x20'}),a1_0x120f66(Text,{'color':_0x36e214(0xab),'children':_0x43be0d})]}),a1_0x45e025(Box,{'children':[a1_0x120f66(Text,{'color':'gray','children':_0x36e214(0xbe)}),a1_0x45e025(Text,{'color':_0x36e214(0xab),'children':['/',_0x3d3c39]})]}),a1_0x120f66(Box,{'marginTop':0x1,'children':a1_0x120f66(Text,{'color':_0x36e214(0xc7),'children':_0x36e214(0xcf)})})]}):null]});return a1_0x120f66(SelectPageTemplate,{'onSelect':_0x2faf6f});};
@@ -1 +1 @@
1
- function a2_0x331e(){const _0x4d4e61=['sdk-fetch','\x20\x20\x20\x20\x20\x20>\x20','2431920ELMHQm','1627302RQyxFU','270YhJDUv','label','正在加载页面模板...','length','\x20Step1:\x20','downArrow','isDirectory','328MwGHOH','5660388LTlnua','join','column','map','upArrow','gray','green','请选择您要创建的页面模板','3927558sfaDKI','name','url','861SRmPRw','获取模板列表失败:','error','sort','5XWBqCG','templates/pages','13872663CcJJwz','9045oAIhCf'];a2_0x331e=function(){return _0x4d4e61;};return a2_0x331e();}(function(_0x3d0a80,_0x571446){const _0x3c167d=a2_0x30db,_0x128a71=_0x3d0a80();while(!![]){try{const _0x20c4ba=parseInt(_0x3c167d(0x8c))/0x1+parseInt(_0x3c167d(0x8d))/0x2*(-parseInt(_0x3c167d(0xa7))/0x3)+-parseInt(_0x3c167d(0x95))/0x4+-parseInt(_0x3c167d(0xa4))/0x5*(parseInt(_0x3c167d(0x9d))/0x6)+parseInt(_0x3c167d(0xa0))/0x7*(parseInt(_0x3c167d(0x94))/0x8)+parseInt(_0x3c167d(0xa6))/0x9+parseInt(_0x3c167d(0xaa))/0xa;if(_0x20c4ba===_0x571446)break;else _0x128a71['push'](_0x128a71['shift']());}catch(_0xa21978){_0x128a71['push'](_0x128a71['shift']());}}}(a2_0x331e,0xe58c5));import{jsx as a2_0x344ef5,jsxs as a2_0x33fce1}from'react/jsx-runtime';import{useState,useEffect}from'react';import{Text,Box,useInput}from'ink';import{readdir}from'node:fs/promises';import a2_0x56c8c2 from'node:path';import{fileURLToPath}from'node:url';async function getTemplateList(){const _0x2e2e76=a2_0x30db;try{const _0x18731=fileURLToPath(import.meta[_0x2e2e76(0x9f)]),_0x495176=a2_0x56c8c2['resolve'](a2_0x56c8c2['dirname'](_0x18731),'../..'),_0x2acf32=a2_0x56c8c2[_0x2e2e76(0x96)](_0x495176,_0x2e2e76(0xa5)),_0x4c219e=await readdir(_0x2acf32,{'withFileTypes':!![]}),_0x51b788=_0x4c219e['filter'](_0x5c7b1f=>_0x5c7b1f[_0x2e2e76(0x93)]())[_0x2e2e76(0x98)](_0x4290a6=>({'label':_0x4290a6[_0x2e2e76(0x9e)]}))[_0x2e2e76(0xa3)]((_0x5d2924,_0x283e6b)=>_0x5d2924['label']['localeCompare'](_0x283e6b[_0x2e2e76(0x8e)]));return _0x51b788;}catch(_0x3d2bda){return console[_0x2e2e76(0xa2)](_0x2e2e76(0xa1),_0x3d2bda),[{'label':'blank'},{'label':_0x2e2e76(0xa8)}];}}function a2_0x30db(_0x25bb07,_0x3b4bfa){const _0x331e6f=a2_0x331e();return a2_0x30db=function(_0x30db57,_0x4fff4f){_0x30db57=_0x30db57-0x8c;let _0x4aef2c=_0x331e6f[_0x30db57];return _0x4aef2c;},a2_0x30db(_0x25bb07,_0x3b4bfa);}export function SelectPageTemplate(_0x59f090){const _0x42afae=a2_0x30db,[_0x53859d,_0x29bcf5]=useState(0x0),[_0x598342,_0x1083bd]=useState([]),[_0x3d432c,_0x7ea53b]=useState(!![]);useEffect(()=>{async function _0xc50639(){const _0x5c4d3f=await getTemplateList();_0x1083bd(_0x5c4d3f),_0x7ea53b(![]);}_0xc50639();},[]),useInput((_0x115eee,_0x258843)=>{const _0x449294=a2_0x30db;if(_0x3d432c)return;if(_0x258843['return']){const _0x3e101d=_0x598342[_0x53859d];_0x3e101d&&_0x59f090['onSelect'](_0x3e101d[_0x449294(0x8e)]);}_0x258843[_0x449294(0x99)]&&_0x29bcf5(_0x5d2814=>_0x5d2814===0x0?_0x598342[_0x449294(0x90)]-0x1:_0x5d2814-0x1),_0x258843[_0x449294(0x92)]&&_0x29bcf5(_0x3bcb4b=>_0x3bcb4b===_0x598342[_0x449294(0x90)]-0x1?0x0:_0x3bcb4b+0x1);});if(_0x3d432c)return a2_0x344ef5(Box,{'flexDirection':'column','paddingY':0x1,'children':a2_0x33fce1(Box,{'children':[a2_0x344ef5(Text,{'color':_0x42afae(0x9a),'children':_0x42afae(0x91)}),a2_0x344ef5(Text,{'children':_0x42afae(0x8f)})]})});return a2_0x33fce1(Box,{'flexDirection':_0x42afae(0x97),'paddingY':0x1,'children':[a2_0x33fce1(Box,{'children':[a2_0x344ef5(Text,{'color':_0x42afae(0x9a),'children':'\x20Step1:\x20'}),a2_0x344ef5(Text,{'children':_0x42afae(0x9c)})]}),_0x598342[_0x42afae(0x98)]((_0x22db37,_0x3f4cc7)=>{const _0x2572da=_0x42afae,_0x1ba3b3=_0x3f4cc7===_0x53859d,_0x14265c=_0x1ba3b3?_0x2572da(0xa9)+_0x22db37[_0x2572da(0x8e)]:'\x20\x20\x20\x20\x20\x20\x20\x20'+_0x22db37[_0x2572da(0x8e)];return a2_0x344ef5(Box,{'children':a2_0x344ef5(Text,{'color':_0x1ba3b3?_0x2572da(0x9b):undefined,'children':_0x14265c})},_0x14265c);})]});}
1
+ function a2_0x4c74(_0x23d20b,_0x27917a){const _0x14b239=a2_0x14b2();return a2_0x4c74=function(_0x4c74dc,_0x51f9eb){_0x4c74dc=_0x4c74dc-0x91;let _0x1a379c=_0x14b239[_0x4c74dc];return _0x1a379c;},a2_0x4c74(_0x23d20b,_0x27917a);}(function(_0x29b899,_0x179bbb){const _0x461542=a2_0x4c74,_0x2d0139=_0x29b899();while(!![]){try{const _0x4275a3=parseInt(_0x461542(0x94))/0x1*(-parseInt(_0x461542(0xa1))/0x2)+-parseInt(_0x461542(0x91))/0x3*(parseInt(_0x461542(0xae))/0x4)+parseInt(_0x461542(0x9f))/0x5*(-parseInt(_0x461542(0xab))/0x6)+-parseInt(_0x461542(0x98))/0x7+-parseInt(_0x461542(0xac))/0x8+parseInt(_0x461542(0xa2))/0x9*(parseInt(_0x461542(0x95))/0xa)+parseInt(_0x461542(0x9a))/0xb;if(_0x4275a3===_0x179bbb)break;else _0x2d0139['push'](_0x2d0139['shift']());}catch(_0x111dc6){_0x2d0139['push'](_0x2d0139['shift']());}}}(a2_0x14b2,0x70120));import{jsx as a2_0x4c3f1a,jsxs as a2_0x1fccb0}from'react/jsx-runtime';import{useState,useEffect}from'react';import{Text,Box,useInput}from'ink';import{readdir}from'node:fs/promises';import a2_0xbd6f9c from'node:path';function a2_0x14b2(){const _0x409b2f=['402XiMfGH','label','return','28703aKghPK','25140EHynMS','length','gray','4116168tAHLoB','name','23993684ehLgSa','\x20Step1:\x20','请选择您要创建的页面模板','blank','localeCompare','5ekKpYk','column','58fhfUiR','1134YHIAYg','\x20\x20\x20\x20\x20\x20>\x20','获取模板列表失败:','isDirectory','dirname','onSelect','url','正在加载页面模板...','map','1340796wggkqm','2664392GTEJEj','green','1852LtxyXn'];a2_0x14b2=function(){return _0x409b2f;};return a2_0x14b2();}import{fileURLToPath}from'node:url';async function getTemplateList(){const _0x2fdc59=a2_0x4c74;try{const _0x1b49de=fileURLToPath(import.meta[_0x2fdc59(0xa8)]),_0x333a2a=a2_0xbd6f9c['resolve'](a2_0xbd6f9c[_0x2fdc59(0xa6)](_0x1b49de),'../..'),_0xcf8082=a2_0xbd6f9c['join'](_0x333a2a,'templates/pages'),_0x5a14e7=await readdir(_0xcf8082,{'withFileTypes':!![]}),_0x1b0bbd=_0x5a14e7['filter'](_0x3d10c5=>_0x3d10c5[_0x2fdc59(0xa5)]())[_0x2fdc59(0xaa)](_0x20ce99=>({'label':_0x20ce99[_0x2fdc59(0x99)]}))['sort']((_0x46695a,_0x5acc63)=>_0x46695a[_0x2fdc59(0x92)][_0x2fdc59(0x9e)](_0x5acc63[_0x2fdc59(0x92)]));return _0x1b0bbd;}catch(_0x838049){return console['error'](_0x2fdc59(0xa4),_0x838049),[{'label':_0x2fdc59(0x9d)},{'label':'sdk-fetch'}];}}export function SelectPageTemplate(_0x197a6c){const _0x4df371=a2_0x4c74,[_0x58ca59,_0x32f8d1]=useState(0x0),[_0x333965,_0x314e97]=useState([]),[_0x52bdbd,_0x331612]=useState(!![]);useEffect(()=>{async function _0x1c915d(){const _0x68f719=await getTemplateList();_0x314e97(_0x68f719),_0x331612(![]);}_0x1c915d();},[]),useInput((_0x931bce,_0x56cffc)=>{const _0x44cdd3=a2_0x4c74;if(_0x52bdbd)return;if(_0x56cffc[_0x44cdd3(0x93)]){const _0x33460e=_0x333965[_0x58ca59];_0x33460e&&_0x197a6c[_0x44cdd3(0xa7)](_0x33460e[_0x44cdd3(0x92)]);}_0x56cffc['upArrow']&&_0x32f8d1(_0x18f882=>_0x18f882===0x0?_0x333965['length']-0x1:_0x18f882-0x1),_0x56cffc['downArrow']&&_0x32f8d1(_0x47ec8a=>_0x47ec8a===_0x333965[_0x44cdd3(0x96)]-0x1?0x0:_0x47ec8a+0x1);});if(_0x52bdbd)return a2_0x4c3f1a(Box,{'flexDirection':_0x4df371(0xa0),'paddingY':0x1,'children':a2_0x1fccb0(Box,{'children':[a2_0x4c3f1a(Text,{'color':_0x4df371(0x97),'children':'\x20Step1:\x20'}),a2_0x4c3f1a(Text,{'children':_0x4df371(0xa9)})]})});return a2_0x1fccb0(Box,{'flexDirection':_0x4df371(0xa0),'paddingY':0x1,'children':[a2_0x1fccb0(Box,{'children':[a2_0x4c3f1a(Text,{'color':_0x4df371(0x97),'children':_0x4df371(0x9b)}),a2_0x4c3f1a(Text,{'children':_0x4df371(0x9c)})]}),_0x333965[_0x4df371(0xaa)]((_0x24fec3,_0x2a73cd)=>{const _0x44e685=_0x4df371,_0x49e0a3=_0x2a73cd===_0x58ca59,_0x3d6fcf=_0x49e0a3?_0x44e685(0xa3)+_0x24fec3[_0x44e685(0x92)]:'\x20\x20\x20\x20\x20\x20\x20\x20'+_0x24fec3[_0x44e685(0x92)];return a2_0x4c3f1a(Box,{'children':a2_0x4c3f1a(Text,{'color':_0x49e0a3?_0x44e685(0xad):undefined,'children':_0x3d6fcf})},_0x3d6fcf);})]});}
@@ -1 +1 @@
1
- (function(_0x4dd0e1,_0x5074ea){const _0xc71cf5=a3_0x9bf8,_0x4d5e67=_0x4dd0e1();while(!![]){try{const _0x4b7a7c=parseInt(_0xc71cf5(0x1f8))/0x1+parseInt(_0xc71cf5(0x207))/0x2*(parseInt(_0xc71cf5(0x202))/0x3)+parseInt(_0xc71cf5(0x209))/0x4+-parseInt(_0xc71cf5(0x1e8))/0x5*(-parseInt(_0xc71cf5(0x1f9))/0x6)+parseInt(_0xc71cf5(0x200))/0x7*(-parseInt(_0xc71cf5(0x1ef))/0x8)+-parseInt(_0xc71cf5(0x1dc))/0x9+-parseInt(_0xc71cf5(0x204))/0xa;if(_0x4b7a7c===_0x5074ea)break;else _0x4d5e67['push'](_0x4d5e67['shift']());}catch(_0x3f9325){_0x4d5e67['push'](_0x4d5e67['shift']());}}}(a3_0x2d73,0x584eb));import{jsx as a3_0x9d7a52,jsxs as a3_0x4d2d86}from'react/jsx-runtime';import{useEffect,useState}from'react';import{Box,Text,useApp}from'ink';import{readConfig}from'../utils/config.js';function a3_0x2d73(){const _0xfe92e6=['json','setLogPath','gray','slice','dim','api-pull','*\x20将生成文件:\x20','api','552938FseIez','374100xlsaiF','💡\x20请使用\x20','success','\x20重新登录后再试','src/api/','column','url','200389qkCqSE','&pageSize=999&currentPage=1','1547016FDLmaA','includes','10592720eiZRhM','status','\x20-\x20模型配置文件','2XUXyuv','*\x20导入方式:','1624544ksXBTO','*\x20已生成文件:','tableData','🚀\x20正在从服务器拉取\x20API\x20配置...','red','使用指定的应用AppCode:\x20','cwd','import\x20','-api','app','1348560bSMdMx','client','cyan','white','error','登录鉴权失败,登录已过期,请使用\x20lovrabet\x20auth\x20重新登录','{\x20lovrabetClient\x20}','拉取\x20API\x20配置失败:\x20',',且无法读取错误响应内容','获取数据集失败,HTTP状态码:\x20','yellow','replace','10sHqUTT','green','.ts','-client','split','message','lovrabet\x20auth','8tCLzVF'];a3_0x2d73=function(){return _0xfe92e6;};return a3_0x2d73();}import{getCookie}from'../auth/get-cookie.js';import{getApiDomain}from'../constant/domain.js';function a3_0x9bf8(_0xace1c3,_0x40779b){const _0x2d737c=a3_0x2d73();return a3_0x9bf8=function(_0x9bf8c6,_0x42214d){_0x9bf8c6=_0x9bf8c6-0x1d3;let _0x4d08a9=_0x2d737c[_0x9bf8c6];return _0x4d08a9;},a3_0x9bf8(_0xace1c3,_0x40779b);}import{generateApiFile}from'./generate-api-file.js';import{logger}from'../utils/logger.js';export const ApiPullUI=({appCode:_0x41db6d})=>{const _0x40ef1e=a3_0x9bf8,{exit:_0x5bf4dc}=useApp(),[_0x5217ff,_0x3c1c1f]=useState(![]),[_0x1bdb62,_0x516754]=useState(![]),[_0xd5a609,_0x4ab400]=useState(null),[_0x1831dc,_0x386c18]=useState(null),_0x508637=readConfig(),_0x5a58b8=_0x41db6d||_0x508637?.[_0x40ef1e(0x1db)],_0xcb152f=_0x41db6d&&_0x41db6d[_0x40ef1e(0x203)]('-')?_0x41db6d[_0x40ef1e(0x1ec)]('-')[_0x40ef1e(0x1f3)](0x1)['join']('-'):'',_0x22c600=_0x41db6d?_0x40ef1e(0x1d7)+_0x5a58b8:'使用配置的应用AppCode:\x20'+_0x5a58b8,_0x56d972=_0xcb152f?_0xcb152f+_0x40ef1e(0x1da):_0x40ef1e(0x1f7),_0x1988e4=_0xcb152f?_0xcb152f+_0x40ef1e(0x1eb):_0x40ef1e(0x1dd);useEffect(()=>{_0x3c1c1f(!![]),_0x261d24();},[]),useEffect(()=>{(_0x1bdb62||_0xd5a609)&&_0x5bf4dc();},[_0x1bdb62,_0xd5a609,_0x5bf4dc]);async function _0x261d24(){const _0x23e227=_0x40ef1e;if(!_0x5a58b8){_0x4ab400('未提供应用AppCode,且配置中也没有默认值');return;}try{logger[_0x23e227(0x1f1)](process[_0x23e227(0x1d8)]());const _0x517c3d=await fetch(getApiDomain()+'/smartapi/dataset/getList?appCode='+_0x5a58b8+_0x23e227(0x201),{'headers':{'Cookie':getCookie()}});if(_0x517c3d['ok']){const _0x330fb1=await _0x517c3d[_0x23e227(0x1f0)]();if(_0x330fb1[_0x23e227(0x1fb)]){const _0x51c5d5=!_0x41db6d;await generateApiFile(_0x330fb1['data'][_0x23e227(0x1d4)],_0xcb152f,_0x5a58b8,_0x51c5d5),_0x386c18({'api':_0x23e227(0x1fd)+_0x56d972+'.ts','client':_0x23e227(0x1fd)+_0x1988e4+_0x23e227(0x1ea)}),_0x516754(!![]);}}else{if(_0x517c3d[_0x23e227(0x205)]===0x191){const _0x5eb43c=_0x23e227(0x1e1);logger[_0x23e227(0x1e0)](_0x23e227(0x1f5),_0x5eb43c,{'status':_0x517c3d[_0x23e227(0x205)],'appCode':_0x5a58b8,'url':_0x517c3d[_0x23e227(0x1ff)]}),_0x4ab400(_0x5eb43c);}else{const _0x47e241=_0x23e227(0x1e5)+_0x517c3d['status'];try{const _0x2acc8d=await _0x517c3d['text']();_0x2acc8d?logger['error'](_0x23e227(0x1f5),_0x47e241,{'status':_0x517c3d[_0x23e227(0x205)],'appCode':_0x5a58b8,'url':_0x517c3d[_0x23e227(0x1ff)],'errorBody':_0x2acc8d}):logger[_0x23e227(0x1e0)]('api-pull',_0x47e241,{'status':_0x517c3d[_0x23e227(0x205)],'appCode':_0x5a58b8,'url':_0x517c3d['url']});}catch(_0x1c092c){logger[_0x23e227(0x1e0)](_0x23e227(0x1f5),_0x47e241+_0x23e227(0x1e4),{'status':_0x517c3d[_0x23e227(0x205)],'appCode':_0x5a58b8,'url':_0x517c3d[_0x23e227(0x1ff)],'readError':_0x1c092c instanceof Error?_0x1c092c['message']:String(_0x1c092c)});}_0x4ab400(_0x47e241);}}}catch(_0x3c9abe){const _0x39c76c=_0x3c9abe instanceof Error?_0x3c9abe[_0x23e227(0x1ed)]:String(_0x3c9abe);_0x4ab400(_0x23e227(0x1e3)+_0x39c76c);}finally{_0x3c1c1f(![]);}}return a3_0x4d2d86(Box,{'flexDirection':'column','children':[a3_0x4d2d86(Box,{'children':[a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1f2),'children':'*\x20'}),a3_0x9d7a52(Text,{'color':_0x41db6d?_0x40ef1e(0x1df):_0x40ef1e(0x1f4),'children':_0x22c600})]}),a3_0x4d2d86(Box,{'children':[a3_0x9d7a52(Text,{'color':'gray','children':_0x40ef1e(0x1f6)}),a3_0x4d2d86(Text,{'color':'cyan','children':[_0x56d972,_0x40ef1e(0x1ea)]}),a3_0x9d7a52(Text,{'color':'dim','children':'\x20和\x20'}),a3_0x4d2d86(Text,{'color':_0x40ef1e(0x1de),'children':[_0x1988e4,_0x40ef1e(0x1ea)]})]}),_0x5217ff&&a3_0x9d7a52(Box,{'children':a3_0x9d7a52(Text,{'children':_0x40ef1e(0x1d5)})}),_0x1bdb62&&_0x1831dc&&a3_0x4d2d86(Box,{'flexDirection':'column','children':[a3_0x9d7a52(Box,{'children':a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1e9),'children':'√\x20API\x20文件生成成功!'})}),a3_0x9d7a52(Box,{'marginTop':0x1,'children':a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1f2),'children':_0x40ef1e(0x1d3)})}),a3_0x4d2d86(Box,{'marginLeft':0x2,'children':[a3_0x4d2d86(Text,{'color':_0x40ef1e(0x1de),'children':['•\x20',_0x1831dc['api']]}),a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1f4),'children':_0x40ef1e(0x206)})]}),a3_0x4d2d86(Box,{'marginLeft':0x2,'children':[a3_0x4d2d86(Text,{'color':_0x40ef1e(0x1de),'children':['•\x20',_0x1831dc['client']]}),a3_0x9d7a52(Text,{'color':'dim','children':'\x20-\x20客户端实例文件'})]}),a3_0x9d7a52(Box,{'marginTop':0x1,'children':a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1f2),'children':_0x40ef1e(0x208)})}),a3_0x9d7a52(Box,{'marginLeft':0x2,'children':a3_0x4d2d86(Text,{'color':_0x40ef1e(0x1e6),'children':[_0x40ef1e(0x1d9),_0x40ef1e(0x1e2),'\x20from\x20\x27@/api/',_0x1831dc['client']['replace'](_0x40ef1e(0x1fd),'')[_0x40ef1e(0x1e7)]('.ts',''),'\x27']})})]}),_0xd5a609&&a3_0x4d2d86(Box,{'flexDirection':_0x40ef1e(0x1fe),'children':[a3_0x9d7a52(Box,{'children':a3_0x4d2d86(Text,{'color':_0x40ef1e(0x1d6),'children':['❌\x20',_0xd5a609]})}),_0xd5a609[_0x40ef1e(0x203)]('登录')&&a3_0x4d2d86(Box,{'marginTop':0x1,'children':[a3_0x9d7a52(Text,{'color':'yellow','children':_0x40ef1e(0x1fa)}),a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1de),'children':_0x40ef1e(0x1ee)}),a3_0x9d7a52(Text,{'color':_0x40ef1e(0x1e6),'children':_0x40ef1e(0x1fc)})]})]})]});};
1
+ (function(_0x4801f7,_0x277726){const _0x162b77=a3_0x5332,_0x3cfaec=_0x4801f7();while(!![]){try{const _0x39c819=parseInt(_0x162b77(0x1f7))/0x1*(-parseInt(_0x162b77(0x1e5))/0x2)+-parseInt(_0x162b77(0x1d3))/0x3+-parseInt(_0x162b77(0x1d7))/0x4*(-parseInt(_0x162b77(0x1f5))/0x5)+-parseInt(_0x162b77(0x1f9))/0x6+parseInt(_0x162b77(0x1e0))/0x7*(-parseInt(_0x162b77(0x1e1))/0x8)+-parseInt(_0x162b77(0x1f0))/0x9*(parseInt(_0x162b77(0x1c1))/0xa)+parseInt(_0x162b77(0x1e9))/0xb*(parseInt(_0x162b77(0x1d0))/0xc);if(_0x39c819===_0x277726)break;else _0x3cfaec['push'](_0x3cfaec['shift']());}catch(_0x5d80f5){_0x3cfaec['push'](_0x3cfaec['shift']());}}}(a3_0x394d,0xdaa5b));import{jsx as a3_0x46b730,jsxs as a3_0x1ecaca}from'react/jsx-runtime';function a3_0x394d(){const _0x5b1307=['status','5822766NETjkS','6326730MtLkcU','未提供应用AppCode,且配置中也没有默认值','{\x20lovrabetClient\x20}','使用配置的应用AppCode:\x20','client','-client','json','join','success','yellow','import\x20','data','url','message','includes','3254568sbitjp','获取数据集失败,HTTP状态码:\x20','tableData','4103541FTOVqI','split','cyan','gray','4PVbJGp','💡\x20请使用\x20','登录鉴权失败,登录已过期,请使用\x20lovrabet\x20auth\x20重新登录','\x20重新登录后再试','\x20-\x20客户端实例文件','white','replace','拉取\x20API\x20配置失败:\x20','*\x20导入方式:','42077iYoZUR','664lZbBya','.ts','src/api/','\x20-\x20模型配置文件','2276HrfZEk','slice','-api','/smartapi/dataset/getList?appCode=','121mLdCLP','api-pull','setLogPath','column','green','\x20和\x20','app','9OOAgPH','red','cwd','error','dim','7377175agkqRc','√\x20API\x20文件生成成功!','82LkNRev'];a3_0x394d=function(){return _0x5b1307;};return a3_0x394d();}import{useEffect,useState}from'react';import{Box,Text,useApp}from'ink';import{readConfig}from'../utils/config.js';import{getCookie}from'../auth/get-cookie.js';import{getApiDomain}from'../constant/domain.js';import{generateApiFile}from'./generate-api-file.js';function a3_0x5332(_0x3c4c34,_0x1c03c7){const _0x394d51=a3_0x394d();return a3_0x5332=function(_0x533292,_0xbf221d){_0x533292=_0x533292-0x1c1;let _0x13986d=_0x394d51[_0x533292];return _0x13986d;},a3_0x5332(_0x3c4c34,_0x1c03c7);}import{logger}from'../utils/logger.js';export const ApiPullUI=({appCode:_0x17b78a})=>{const _0x3310ac=a3_0x5332,{exit:_0x1cad31}=useApp(),[_0x4eceed,_0x509d4b]=useState(![]),[_0x48e487,_0x58bacb]=useState(![]),[_0x56c7f5,_0x5e8f31]=useState(null),[_0x530ea2,_0x3fe961]=useState(null),_0x17c31c=readConfig(),_0xb4903c=_0x17b78a||_0x17c31c?.[_0x3310ac(0x1ef)],_0x33b3b5=_0x17b78a&&_0x17b78a['includes']('-')?_0x17b78a[_0x3310ac(0x1d4)]('-')[_0x3310ac(0x1e6)](0x1)[_0x3310ac(0x1c8)]('-'):'',_0x4c6de3=_0x17b78a?'使用指定的应用AppCode:\x20'+_0xb4903c:_0x3310ac(0x1c4)+_0xb4903c,_0x384868=_0x33b3b5?_0x33b3b5+_0x3310ac(0x1e7):'api',_0x533179=_0x33b3b5?_0x33b3b5+_0x3310ac(0x1c6):_0x3310ac(0x1c5);useEffect(()=>{_0x509d4b(!![]),_0x2fdae5();},[]),useEffect(()=>{(_0x48e487||_0x56c7f5)&&_0x1cad31();},[_0x48e487,_0x56c7f5,_0x1cad31]);async function _0x2fdae5(){const _0x2688fc=_0x3310ac;if(!_0xb4903c){_0x5e8f31(_0x2688fc(0x1c2));return;}try{logger[_0x2688fc(0x1eb)](process[_0x2688fc(0x1f2)]());const _0x53fb25=await fetch(getApiDomain()+_0x2688fc(0x1e8)+_0xb4903c+'&pageSize=999&currentPage=1',{'headers':{'Cookie':getCookie()}});if(_0x53fb25['ok']){const _0x3dae44=await _0x53fb25[_0x2688fc(0x1c7)]();if(_0x3dae44[_0x2688fc(0x1c9)]){const _0x2ae3ca=!_0x17b78a;await generateApiFile(_0x3dae44[_0x2688fc(0x1cc)][_0x2688fc(0x1d2)],_0x33b3b5,_0xb4903c,_0x2ae3ca),_0x3fe961({'api':'src/api/'+_0x384868+_0x2688fc(0x1e2),'client':_0x2688fc(0x1e3)+_0x533179+_0x2688fc(0x1e2)}),_0x58bacb(!![]);}}else{if(_0x53fb25[_0x2688fc(0x1f8)]===0x191){const _0x1ab6ff=_0x2688fc(0x1d9);logger[_0x2688fc(0x1f3)]('api-pull',_0x1ab6ff,{'status':_0x53fb25[_0x2688fc(0x1f8)],'appCode':_0xb4903c,'url':_0x53fb25['url']}),_0x5e8f31(_0x1ab6ff);}else{const _0x4f8b18=_0x2688fc(0x1d1)+_0x53fb25[_0x2688fc(0x1f8)];try{const _0x308ee1=await _0x53fb25['text']();_0x308ee1?logger['error'](_0x2688fc(0x1ea),_0x4f8b18,{'status':_0x53fb25['status'],'appCode':_0xb4903c,'url':_0x53fb25[_0x2688fc(0x1cd)],'errorBody':_0x308ee1}):logger[_0x2688fc(0x1f3)]('api-pull',_0x4f8b18,{'status':_0x53fb25[_0x2688fc(0x1f8)],'appCode':_0xb4903c,'url':_0x53fb25[_0x2688fc(0x1cd)]});}catch(_0x45e564){logger[_0x2688fc(0x1f3)]('api-pull',_0x4f8b18+',且无法读取错误响应内容',{'status':_0x53fb25[_0x2688fc(0x1f8)],'appCode':_0xb4903c,'url':_0x53fb25[_0x2688fc(0x1cd)],'readError':_0x45e564 instanceof Error?_0x45e564[_0x2688fc(0x1ce)]:String(_0x45e564)});}_0x5e8f31(_0x4f8b18);}}}catch(_0x1bdca8){const _0x5e72b7=_0x1bdca8 instanceof Error?_0x1bdca8[_0x2688fc(0x1ce)]:String(_0x1bdca8);_0x5e8f31(_0x2688fc(0x1de)+_0x5e72b7);}finally{_0x509d4b(![]);}}return a3_0x1ecaca(Box,{'flexDirection':_0x3310ac(0x1ec),'children':[a3_0x1ecaca(Box,{'children':[a3_0x46b730(Text,{'color':_0x3310ac(0x1d6),'children':'*\x20'}),a3_0x46b730(Text,{'color':_0x17b78a?_0x3310ac(0x1dc):_0x3310ac(0x1f4),'children':_0x4c6de3})]}),a3_0x1ecaca(Box,{'children':[a3_0x46b730(Text,{'color':_0x3310ac(0x1d6),'children':'*\x20将生成文件:\x20'}),a3_0x1ecaca(Text,{'color':_0x3310ac(0x1d5),'children':[_0x384868,_0x3310ac(0x1e2)]}),a3_0x46b730(Text,{'color':_0x3310ac(0x1f4),'children':_0x3310ac(0x1ee)}),a3_0x1ecaca(Text,{'color':_0x3310ac(0x1d5),'children':[_0x533179,_0x3310ac(0x1e2)]})]}),_0x4eceed&&a3_0x46b730(Box,{'children':a3_0x46b730(Text,{'children':'🚀\x20正在从服务器拉取\x20API\x20配置...'})}),_0x48e487&&_0x530ea2&&a3_0x1ecaca(Box,{'flexDirection':_0x3310ac(0x1ec),'children':[a3_0x46b730(Box,{'children':a3_0x46b730(Text,{'color':_0x3310ac(0x1ed),'children':_0x3310ac(0x1f6)})}),a3_0x46b730(Box,{'marginTop':0x1,'children':a3_0x46b730(Text,{'color':_0x3310ac(0x1d6),'children':'*\x20已生成文件:'})}),a3_0x1ecaca(Box,{'marginLeft':0x2,'children':[a3_0x1ecaca(Text,{'color':_0x3310ac(0x1d5),'children':['•\x20',_0x530ea2['api']]}),a3_0x46b730(Text,{'color':'dim','children':_0x3310ac(0x1e4)})]}),a3_0x1ecaca(Box,{'marginLeft':0x2,'children':[a3_0x1ecaca(Text,{'color':_0x3310ac(0x1d5),'children':['•\x20',_0x530ea2['client']]}),a3_0x46b730(Text,{'color':_0x3310ac(0x1f4),'children':_0x3310ac(0x1db)})]}),a3_0x46b730(Box,{'marginTop':0x1,'children':a3_0x46b730(Text,{'color':_0x3310ac(0x1d6),'children':_0x3310ac(0x1df)})}),a3_0x46b730(Box,{'marginLeft':0x2,'children':a3_0x1ecaca(Text,{'color':_0x3310ac(0x1ca),'children':[_0x3310ac(0x1cb),_0x3310ac(0x1c3),'\x20from\x20\x27@/api/',_0x530ea2[_0x3310ac(0x1c5)][_0x3310ac(0x1dd)](_0x3310ac(0x1e3),'')[_0x3310ac(0x1dd)]('.ts',''),'\x27']})})]}),_0x56c7f5&&a3_0x1ecaca(Box,{'flexDirection':_0x3310ac(0x1ec),'children':[a3_0x46b730(Box,{'children':a3_0x1ecaca(Text,{'color':_0x3310ac(0x1f1),'children':['❌\x20',_0x56c7f5]})}),_0x56c7f5[_0x3310ac(0x1cf)]('登录')&&a3_0x1ecaca(Box,{'marginTop':0x1,'children':[a3_0x46b730(Text,{'color':'yellow','children':_0x3310ac(0x1d8)}),a3_0x46b730(Text,{'color':_0x3310ac(0x1d5),'children':'lovrabet\x20auth'}),a3_0x46b730(Text,{'color':'yellow','children':_0x3310ac(0x1da)})]})]})]});};
@@ -1 +1 @@
1
- function a4_0x250a(){const _0x49c497=['15592tvmxro','1159217PtcDlC','2124ZOngjL','forEach','8693570CRxIYZ','Api','1316qPukKh','map','code','from','dataset','114969dXOXai','2165388DbrMMT','filter','set','dbtableConfig','96ePPhhp','dataset_','5314770txTaxt','pkField','get','28236bOsRGS','tableName'];a4_0x250a=function(){return _0x49c497;};return a4_0x250a();}function a4_0x1ff3(_0x534ac1,_0x27b8aa){const _0x250a40=a4_0x250a();return a4_0x1ff3=function(_0x1ff303,_0x2c65ee){_0x1ff303=_0x1ff303-0x1b8;let _0x55e0c8=_0x250a40[_0x1ff303];return _0x55e0c8;},a4_0x1ff3(_0x534ac1,_0x27b8aa);}(function(_0x526dcf,_0x4f408d){const _0x1bad73=a4_0x1ff3,_0x371be9=_0x526dcf();while(!![]){try{const _0x1bceac=parseInt(_0x1bad73(0x1b8))/0x1+parseInt(_0x1bad73(0x1c3))/0x2+parseInt(_0x1bad73(0x1c2))/0x3*(-parseInt(_0x1bad73(0x1c7))/0x4)+-parseInt(_0x1bad73(0x1c9))/0x5+-parseInt(_0x1bad73(0x1cc))/0x6*(parseInt(_0x1bad73(0x1bd))/0x7)+-parseInt(_0x1bad73(0x1ce))/0x8*(-parseInt(_0x1bad73(0x1b9))/0x9)+parseInt(_0x1bad73(0x1bb))/0xa;if(_0x1bceac===_0x4f408d)break;else _0x371be9['push'](_0x371be9['shift']());}catch(_0x852cd7){_0x371be9['push'](_0x371be9['shift']());}}}(a4_0x250a,0xabd36));export function formatDataset(_0x220d5a){const _0x2585dd=a4_0x1ff3,_0x42cc9e=_0x220d5a[_0x2585dd(0x1c4)](_0x2f9361=>_0x2f9361['dbtableConfig']),_0x3673a6=_0x220d5a[_0x2585dd(0x1c4)](_0x2907e7=>!_0x2907e7[_0x2585dd(0x1c6)]),_0x45c35d=new Map();_0x42cc9e[_0x2585dd(0x1ba)](_0x914715=>{const _0x4d0399=_0x2585dd,_0x1cac89=_0x914715['dbtableConfig'][_0x4d0399(0x1cd)],_0x3d8b69=_0x45c35d[_0x4d0399(0x1cb)](_0x1cac89);(!_0x3d8b69||_0x914715['id']>_0x3d8b69['id'])&&_0x45c35d[_0x4d0399(0x1c5)](_0x1cac89,_0x914715);});const _0x585c45=Array[_0x2585dd(0x1c0)](_0x45c35d['values']())[_0x2585dd(0x1be)](_0x4da365=>{const _0x48824f=_0x2585dd,_0x3557a6=snakeToCamel(_0x4da365[_0x48824f(0x1c6)][_0x48824f(0x1cd)]);return{'id':_0x4da365['id'],'name':_0x4da365['name'],'code':_0x4da365[_0x48824f(0x1bf)],'tableName':_0x4da365[_0x48824f(0x1c6)]['tableName'],'apiFucName':_0x3557a6?_0x3557a6+_0x48824f(0x1bc):_0x48824f(0x1c1)+_0x4da365[_0x48824f(0x1bf)]+_0x48824f(0x1bc),'pkField':_0x4da365['dbtableConfig'][_0x48824f(0x1ca)],'allFields':_0x4da365['dbtableConfig']['allFields']['split'](',')};}),_0x57f121=_0x3673a6[_0x2585dd(0x1be)](_0x5d42d3=>{const _0x44d022=_0x2585dd,_0x19ff7a=_0x44d022(0x1c8)+_0x5d42d3['code'],_0x1646b7=snakeToCamel(_0x19ff7a);return{'id':_0x5d42d3['id'],'name':_0x5d42d3['name'],'code':_0x5d42d3[_0x44d022(0x1bf)],'tableName':_0x19ff7a,'apiFucName':_0x1646b7?_0x1646b7+_0x44d022(0x1bc):_0x44d022(0x1c1)+_0x5d42d3[_0x44d022(0x1bf)]+_0x44d022(0x1bc),'pkField':undefined,'allFields':[]};});return[..._0x585c45,..._0x57f121];}function snakeToCamel(_0xd0776e){if(!_0xd0776e)return _0xd0776e;const _0x34095d=_0xd0776e['trim']();return _0x34095d['replace'](/_([a-zA-Z0-9])/g,(_0x10a327,_0x159ad3)=>_0x159ad3['toUpperCase']());}
1
+ (function(_0x274a09,_0x5a2ff1){const _0x3a63ec=a4_0x2c03,_0x2bad73=_0x274a09();while(!![]){try{const _0x40ec34=parseInt(_0x3a63ec(0xeb))/0x1*(-parseInt(_0x3a63ec(0xdd))/0x2)+parseInt(_0x3a63ec(0xd2))/0x3+-parseInt(_0x3a63ec(0xdc))/0x4*(parseInt(_0x3a63ec(0xd9))/0x5)+parseInt(_0x3a63ec(0xdb))/0x6*(parseInt(_0x3a63ec(0xe6))/0x7)+-parseInt(_0x3a63ec(0xd1))/0x8*(-parseInt(_0x3a63ec(0xd6))/0x9)+-parseInt(_0x3a63ec(0xd0))/0xa+parseInt(_0x3a63ec(0xe9))/0xb;if(_0x40ec34===_0x5a2ff1)break;else _0x2bad73['push'](_0x2bad73['shift']());}catch(_0x2ddfae){_0x2bad73['push'](_0x2bad73['shift']());}}}(a4_0x11f2,0xa2f9a));function a4_0x11f2(){const _0x3d54a3=['values','replace','code','21DiYSPE','dataset_','filter','17107013mYmSJe','name','614683rhFNgA','12885710Bnrbzo','8whUYNd','2796588FSWUaq','trim','Api','set','7817436oRZcpP','dbtableConfig','map','4075985YTATgG','dataset','1289394CtChiQ','4POWhAg','4zpHzhV','allFields','tableName','forEach','split','pkField'];a4_0x11f2=function(){return _0x3d54a3;};return a4_0x11f2();}function a4_0x2c03(_0x11593a,_0x15e510){const _0x11f25b=a4_0x11f2();return a4_0x2c03=function(_0x2c0338,_0x4e02c8){_0x2c0338=_0x2c0338-0xd0;let _0x3fd674=_0x11f25b[_0x2c0338];return _0x3fd674;},a4_0x2c03(_0x11593a,_0x15e510);}export function formatDataset(_0x248581){const _0x286b91=a4_0x2c03,_0x37a3e6=_0x248581[_0x286b91(0xe8)](_0x5dc6f6=>_0x5dc6f6[_0x286b91(0xd7)]),_0x1be928=_0x248581[_0x286b91(0xe8)](_0x11a100=>!_0x11a100[_0x286b91(0xd7)]),_0x521efe=new Map();_0x37a3e6[_0x286b91(0xe0)](_0x493bdc=>{const _0x260958=_0x286b91,_0x76b1a7=_0x493bdc[_0x260958(0xd7)][_0x260958(0xdf)],_0x503efc=_0x521efe['get'](_0x76b1a7);(!_0x503efc||_0x493bdc['id']>_0x503efc['id'])&&_0x521efe[_0x260958(0xd5)](_0x76b1a7,_0x493bdc);});const _0x411fa0=Array['from'](_0x521efe[_0x286b91(0xe3)]())['map'](_0x263852=>{const _0x110645=_0x286b91,_0x342618=snakeToCamel(_0x263852['dbtableConfig'][_0x110645(0xdf)]);return{'id':_0x263852['id'],'name':_0x263852[_0x110645(0xea)],'code':_0x263852['code'],'tableName':_0x263852['dbtableConfig'][_0x110645(0xdf)],'apiFucName':_0x342618?_0x342618+'Api':_0x110645(0xda)+_0x263852[_0x110645(0xe5)]+_0x110645(0xd4),'pkField':_0x263852[_0x110645(0xd7)][_0x110645(0xe2)],'allFields':_0x263852[_0x110645(0xd7)][_0x110645(0xde)][_0x110645(0xe1)](',')};}),_0x531545=_0x1be928[_0x286b91(0xd8)](_0x2da737=>{const _0x5dd7b1=_0x286b91,_0x31613e=_0x5dd7b1(0xe7)+_0x2da737[_0x5dd7b1(0xe5)],_0x46b9ff=snakeToCamel(_0x31613e);return{'id':_0x2da737['id'],'name':_0x2da737[_0x5dd7b1(0xea)],'code':_0x2da737[_0x5dd7b1(0xe5)],'tableName':_0x31613e,'apiFucName':_0x46b9ff?_0x46b9ff+_0x5dd7b1(0xd4):_0x5dd7b1(0xda)+_0x2da737[_0x5dd7b1(0xe5)]+_0x5dd7b1(0xd4),'pkField':undefined,'allFields':[]};});return[..._0x411fa0,..._0x531545];}function snakeToCamel(_0x305f5f){const _0x577c1f=a4_0x2c03;if(!_0x305f5f)return _0x305f5f;const _0x253280=_0x305f5f[_0x577c1f(0xd3)]();return _0x253280[_0x577c1f(0xe4)](/_([a-zA-Z0-9])/g,(_0x62258f,_0x47c83b)=>_0x47c83b['toUpperCase']());}
@@ -1 +1 @@
1
- function a5_0x36ff(){const _0x3a1a47=['keys','forEach','1120091hPDxZQ','string','resolve','\x20-\x20模型配置文件\x20(','573186SBJWco','\x20-\x20客户端实例文件','code','toUpperCase','384AxSIFd','apiFucName','slice','url','utf8','*\x20可以开始使用:\x20import\x20{\x20lovrabetClient\x20}\x20from\x20\x27@/api/','client','success','typescript','templates/generate-api','40860zftKcC','app','12AWhAZf','13647lBlBCS','api','8MygQhn','join','CONFIG_NAMES.DEFAULT','src/api','format','charAt','src/api/','log','-api','replaceApiContent','\x20\x20\x20•\x20','41976laBNWR','length','请先通过\x20`lovrabet\x20config\x20set\x20app\x20<value>`\x20配置应用\x20Code','replace','56OOljsS','2093826KfaJQI','.ts','dirname','../..','140290KjZYVl','*\x20已生成文件:','init-api','client.ts.tpl','API\x20文件生成成功!','-client','63EcnHIZ'];a5_0x36ff=function(){return _0x3a1a47;};return a5_0x36ff();}(function(_0x37bb58,_0x3496ea){const _0x400b47=a5_0xcbcc,_0x5050d4=_0x37bb58();while(!![]){try{const _0x54d23e=parseInt(_0x400b47(0xd1))/0x1*(-parseInt(_0x400b47(0xae))/0x2)+parseInt(_0x400b47(0xc0))/0x3+-parseInt(_0x400b47(0xd0))/0x4*(parseInt(_0x400b47(0xce))/0x5)+parseInt(_0x400b47(0xaf))/0x6+parseInt(_0x400b47(0xbc))/0x7*(-parseInt(_0x400b47(0xd3))/0x8)+-parseInt(_0x400b47(0xb9))/0x9*(-parseInt(_0x400b47(0xb3))/0xa)+-parseInt(_0x400b47(0xaa))/0xb*(-parseInt(_0x400b47(0xc4))/0xc);if(_0x54d23e===_0x3496ea)break;else _0x5050d4['push'](_0x5050d4['shift']());}catch(_0x566da4){_0x5050d4['push'](_0x5050d4['shift']());}}}(a5_0x36ff,0x2f4a7));import a5_0x59fb24 from'prettier';import{mkdirSync,writeFileSync,readFileSync}from'node:fs';import a5_0x3bd789 from'node:path';import{fileURLToPath}from'node:url';function a5_0xcbcc(_0x4cb465,_0x10b35b){const _0x36ff4e=a5_0x36ff();return a5_0xcbcc=function(_0xcbcc55,_0x1bd060){_0xcbcc55=_0xcbcc55-0xa7;let _0x152ed4=_0x36ff4e[_0xcbcc55];return _0x152ed4;},a5_0xcbcc(_0x4cb465,_0x10b35b);}import{readConfig}from'../utils/config.js';import{formatDataset}from'./format-dataset.js';import{TemplateReplacer}from'../utils/template-replacer.js';import{logger}from'../utils/logger.js';export async function generateApiFile(_0x364585,_0x2e92d7='',_0x303524,_0x172be1=![]){const _0x28326f=a5_0xcbcc,_0x3446cb=readConfig(),_0x1b671a=_0x303524||_0x3446cb?.[_0x28326f(0xcf)];if(typeof _0x1b671a!==_0x28326f(0xbd)||!_0x1b671a)throw new Error(_0x28326f(0xac));const _0x587930=_0x172be1?_0x28326f(0xd5):'\x22'+_0x1b671a+'\x22',_0x3d4088=_0x172be1?'':'\x22'+_0x1b671a+'\x22',_0x59a495=_0x2e92d7?_0x2e92d7+_0x28326f(0xa7):_0x28326f(0xd2),_0x176abe=_0x2e92d7?_0x2e92d7+_0x28326f(0xb8):_0x28326f(0xca),_0x4a6c92=formatDataset(_0x364585),_0xbd509c={};_0x4a6c92[_0x28326f(0xbb)](_0x1e5022=>{const _0xbe68ea=_0x28326f,_0x1aa218=_0x1e5022[_0xbe68ea(0xc5)][_0xbe68ea(0xad)](/Api$/,''),_0x3d44b8=_0x1aa218[_0xbe68ea(0xd8)](0x0)[_0xbe68ea(0xc3)]()+_0x1aa218[_0xbe68ea(0xc6)](0x1);_0xbd509c[_0x3d44b8]={'tableName':_0x1e5022['tableName'],'datasetId':_0x1e5022[_0xbe68ea(0xc2)]};});const _0x301217=fileURLToPath(import.meta[_0x28326f(0xc7)]),_0x30b2a8=a5_0x3bd789[_0x28326f(0xbe)](a5_0x3bd789[_0x28326f(0xb1)](_0x301217),_0x28326f(0xb2)),_0x552825=a5_0x3bd789[_0x28326f(0xd4)](_0x30b2a8,_0x28326f(0xcd)),_0x266ea6=a5_0x3bd789[_0x28326f(0xd4)](_0x552825,'api.ts.tpl'),_0x56c658=a5_0x3bd789[_0x28326f(0xd4)](_0x552825,_0x28326f(0xb6));mkdirSync(_0x28326f(0xd6),{'recursive':!![]});const _0x4f4067=readFileSync(_0x266ea6,_0x28326f(0xc8)),_0x49e9a3=TemplateReplacer['replaceApiContent'](_0x4f4067,_0x1b671a,_0xbd509c,Object[_0x28326f(0xba)](_0xbd509c)[0x0],_0x59a495,_0x587930),_0x5549b8=await a5_0x59fb24['format'](_0x49e9a3,{'parser':_0x28326f(0xcc)}),_0x3ae3ad=_0x28326f(0xd9)+_0x59a495+'.ts';writeFileSync(_0x3ae3ad,_0x5549b8,{'encoding':_0x28326f(0xc8)});const _0xb1aa10=readFileSync(_0x56c658,_0x28326f(0xc8)),_0x1171b6=TemplateReplacer[_0x28326f(0xa8)](_0xb1aa10,_0x1b671a,_0xbd509c,Object[_0x28326f(0xba)](_0xbd509c)[0x0],_0x59a495,_0x587930,_0x3d4088),_0x4a45c5=await a5_0x59fb24[_0x28326f(0xd7)](_0x1171b6,{'parser':_0x28326f(0xcc)}),_0x1038f1=_0x28326f(0xd9)+_0x176abe+_0x28326f(0xb0);writeFileSync(_0x1038f1,_0x4a45c5,{'encoding':_0x28326f(0xc8)}),logger[_0x28326f(0xcb)](_0x28326f(0xb5),_0x28326f(0xb7)),console[_0x28326f(0xda)](_0x28326f(0xb4)),console['log'](_0x28326f(0xa9)+_0x3ae3ad+_0x28326f(0xbf)+Object[_0x28326f(0xba)](_0xbd509c)[_0x28326f(0xab)]+'\x20个模型)'),console[_0x28326f(0xda)](_0x28326f(0xa9)+_0x1038f1+_0x28326f(0xc1)),console['log']('*\x20API配置\x20apiConfigName\x20:\x20'+_0x587930),console['log'](_0x28326f(0xc9)+_0x176abe+'\x27');}
1
+ (function(_0x2643b3,_0xaa1196){const _0x2730fc=a5_0x53ff,_0x13e465=_0x2643b3();while(!![]){try{const _0x14e29c=parseInt(_0x2730fc(0x197))/0x1+-parseInt(_0x2730fc(0x19c))/0x2*(parseInt(_0x2730fc(0x1a9))/0x3)+-parseInt(_0x2730fc(0x1aa))/0x4+-parseInt(_0x2730fc(0x185))/0x5+parseInt(_0x2730fc(0x1a5))/0x6+-parseInt(_0x2730fc(0x196))/0x7+parseInt(_0x2730fc(0x1a2))/0x8*(parseInt(_0x2730fc(0x1a6))/0x9);if(_0x14e29c===_0xaa1196)break;else _0x13e465['push'](_0x13e465['shift']());}catch(_0x53b705){_0x13e465['push'](_0x13e465['shift']());}}}(a5_0x5b4a,0xf2219));import a5_0x311b8b from'prettier';import{mkdirSync,writeFileSync,readFileSync}from'node:fs';import a5_0x3a2e0a from'node:path';import{fileURLToPath}from'node:url';function a5_0x53ff(_0xad6412,_0x288315){const _0x5b4a62=a5_0x5b4a();return a5_0x53ff=function(_0x53ff4f,_0x2652a4){_0x53ff4f=_0x53ff4f-0x184;let _0x1fbe57=_0x5b4a62[_0x53ff4f];return _0x1fbe57;},a5_0x53ff(_0xad6412,_0x288315);}import{readConfig}from'../utils/config.js';import{formatDataset}from'./format-dataset.js';import{TemplateReplacer}from'../utils/template-replacer.js';import{logger}from'../utils/logger.js';function a5_0x5b4a(){const _0xb24c28=['dirname','\x20-\x20客户端实例文件','keys','app','src/api/','4376850sPUmXy','*\x20已生成文件:','join','replaceApiContent','*\x20API配置\x20apiConfigName\x20:\x20','init-api','log','.ts','\x20\x20\x20•\x20','\x20个模型)','string','length','format','请先通过\x20`lovrabet\x20config\x20set\x20app\x20<value>`\x20配置应用\x20Code','forEach','typescript','resolve','12498773RCuVRB','1377412HEUPyr','replace','url','-api','utf8','12biOSxo','src/api','-client','api','success','toUpperCase','8nOEoUr','templates/generate-api','charAt','8955486RUDJED','13010283FRnoUr','tableName','api.ts.tpl','212976JgkdOr','947800hZaOzQ'];a5_0x5b4a=function(){return _0xb24c28;};return a5_0x5b4a();}export async function generateApiFile(_0x263702,_0xf422d1='',_0x2a1e6e,_0x4ad875=![]){const _0x48fd3d=a5_0x53ff,_0x1c3b93=readConfig(),_0x5f151c=_0x2a1e6e||_0x1c3b93?.[_0x48fd3d(0x1ae)];if(typeof _0x5f151c!==_0x48fd3d(0x18f)||!_0x5f151c)throw new Error(_0x48fd3d(0x192));const _0x5e471a=_0x4ad875?'CONFIG_NAMES.DEFAULT':'\x22'+_0x5f151c+'\x22',_0x4e4019=_0x4ad875?'':'\x22'+_0x5f151c+'\x22',_0x4181f0=_0xf422d1?_0xf422d1+_0x48fd3d(0x19a):_0x48fd3d(0x19f),_0x3f0854=_0xf422d1?_0xf422d1+_0x48fd3d(0x19e):'client',_0x42dc12=formatDataset(_0x263702),_0x13b55d={};_0x42dc12[_0x48fd3d(0x193)](_0x4de0fd=>{const _0x1c1b75=_0x48fd3d,_0x57e653=_0x4de0fd['apiFucName'][_0x1c1b75(0x198)](/Api$/,''),_0x187f1f=_0x57e653[_0x1c1b75(0x1a4)](0x0)[_0x1c1b75(0x1a1)]()+_0x57e653['slice'](0x1);_0x13b55d[_0x187f1f]={'tableName':_0x4de0fd[_0x1c1b75(0x1a7)],'datasetId':_0x4de0fd['code']};});const _0x373245=fileURLToPath(import.meta[_0x48fd3d(0x199)]),_0xbb2e35=a5_0x3a2e0a[_0x48fd3d(0x195)](a5_0x3a2e0a[_0x48fd3d(0x1ab)](_0x373245),'../..'),_0x2c7299=a5_0x3a2e0a[_0x48fd3d(0x187)](_0xbb2e35,_0x48fd3d(0x1a3)),_0x46db65=a5_0x3a2e0a['join'](_0x2c7299,_0x48fd3d(0x1a8)),_0x1024e=a5_0x3a2e0a[_0x48fd3d(0x187)](_0x2c7299,'client.ts.tpl');mkdirSync(_0x48fd3d(0x19d),{'recursive':!![]});const _0x5963d6=readFileSync(_0x46db65,_0x48fd3d(0x19b)),_0x121ba3=TemplateReplacer[_0x48fd3d(0x188)](_0x5963d6,_0x5f151c,_0x13b55d,Object[_0x48fd3d(0x1ad)](_0x13b55d)[0x0],_0x4181f0,_0x5e471a),_0x5e29ed=await a5_0x311b8b[_0x48fd3d(0x191)](_0x121ba3,{'parser':'typescript'}),_0x33c823='src/api/'+_0x4181f0+_0x48fd3d(0x18c);writeFileSync(_0x33c823,_0x5e29ed,{'encoding':'utf8'});const _0x2e66a7=readFileSync(_0x1024e,_0x48fd3d(0x19b)),_0x3a1a30=TemplateReplacer['replaceApiContent'](_0x2e66a7,_0x5f151c,_0x13b55d,Object[_0x48fd3d(0x1ad)](_0x13b55d)[0x0],_0x4181f0,_0x5e471a,_0x4e4019),_0x1499f0=await a5_0x311b8b[_0x48fd3d(0x191)](_0x3a1a30,{'parser':_0x48fd3d(0x194)}),_0x2b0dca=_0x48fd3d(0x184)+_0x3f0854+_0x48fd3d(0x18c);writeFileSync(_0x2b0dca,_0x1499f0,{'encoding':_0x48fd3d(0x19b)}),logger[_0x48fd3d(0x1a0)](_0x48fd3d(0x18a),'API\x20文件生成成功!'),console[_0x48fd3d(0x18b)](_0x48fd3d(0x186)),console[_0x48fd3d(0x18b)](_0x48fd3d(0x18d)+_0x33c823+'\x20-\x20模型配置文件\x20('+Object[_0x48fd3d(0x1ad)](_0x13b55d)[_0x48fd3d(0x190)]+_0x48fd3d(0x18e)),console[_0x48fd3d(0x18b)](_0x48fd3d(0x18d)+_0x2b0dca+_0x48fd3d(0x1ac)),console[_0x48fd3d(0x18b)](_0x48fd3d(0x189)+_0x5e471a),console[_0x48fd3d(0x18b)]('*\x20可以开始使用:\x20import\x20{\x20lovrabetClient\x20}\x20from\x20\x27@/api/'+_0x3f0854+'\x27');}
package/lib/api/main.js CHANGED
@@ -1 +1 @@
1
- function a6_0xb52a(){const _0x1e0092=['18njkvkg','979088lOgPwZ','2741630OkeSbV','1993971snxNTr','error','log','10FwiVwZ','\x20\x20lovrabet\x20api\x20pull\x20[app-code]\x20\x20\x20\x20//\x20拉取并生成\x20API\x20配置文件','36060497QcRRCR','input','pull','exit','78BHtpiU','111572TWvhaU','30dPAhid','\x20\x20\x20\x20app-code:\x20可选的应用AppCode,不指定则使用配置的默认值','621052qgmNij','9558384NUlJGV'];a6_0xb52a=function(){return _0x1e0092;};return a6_0xb52a();}(function(_0x1fa10f,_0x502908){const _0x547290=a6_0x394a,_0x571991=_0x1fa10f();while(!![]){try{const _0x4eb067=-parseInt(_0x547290(0x10c))/0x1+-parseInt(_0x547290(0x11b))/0x2*(parseInt(_0x547290(0x11a))/0x3)+parseInt(_0x547290(0x10f))/0x4*(parseInt(_0x547290(0x114))/0x5)+parseInt(_0x547290(0x11c))/0x6*(-parseInt(_0x547290(0x111))/0x7)+parseInt(_0x547290(0x10d))/0x8+-parseInt(_0x547290(0x10e))/0x9*(parseInt(_0x547290(0x110))/0xa)+parseInt(_0x547290(0x116))/0xb;if(_0x4eb067===_0x502908)break;else _0x571991['push'](_0x571991['shift']());}catch(_0x442f56){_0x571991['push'](_0x571991['shift']());}}}(a6_0xb52a,0xe03da));import{jsx as a6_0x4d9a97}from'react/jsx-runtime';function a6_0x394a(_0xbd75cb,_0x285058){const _0xb52a75=a6_0xb52a();return a6_0x394a=function(_0x394acd,_0x463a3c){_0x394acd=_0x394acd-0x10b;let _0x4fd36b=_0xb52a75[_0x394acd];return _0x4fd36b;},a6_0x394a(_0xbd75cb,_0x285058);}import{render}from'ink';import{ApiPullUI}from'./api-pull-ui.js';export async function apiCli(_0x425870){const _0x5040da=a6_0x394a,_0x2a8f54=_0x425870[_0x5040da(0x117)][0x1];if(_0x2a8f54===_0x5040da(0x118)){const _0xb82787=_0x425870[_0x5040da(0x117)][0x2];render(a6_0x4d9a97(ApiPullUI,{'appCode':_0xb82787}));}else console[_0x5040da(0x112)]('Unknown\x20api\x20command:\x20'+_0x2a8f54),console[_0x5040da(0x113)]('Available\x20commands:'),console[_0x5040da(0x113)](_0x5040da(0x115)),console[_0x5040da(0x113)](_0x5040da(0x10b)),process[_0x5040da(0x119)](0x1);}
1
+ (function(_0x279ae0,_0x3e93b5){const _0x2b4128=a6_0x49ba,_0x1f5394=_0x279ae0();while(!![]){try{const _0x74a2da=-parseInt(_0x2b4128(0x1d5))/0x1+-parseInt(_0x2b4128(0x1ce))/0x2+-parseInt(_0x2b4128(0x1c7))/0x3*(-parseInt(_0x2b4128(0x1c8))/0x4)+parseInt(_0x2b4128(0x1c5))/0x5*(-parseInt(_0x2b4128(0x1d0))/0x6)+-parseInt(_0x2b4128(0x1cc))/0x7+parseInt(_0x2b4128(0x1cd))/0x8+-parseInt(_0x2b4128(0x1d1))/0x9*(-parseInt(_0x2b4128(0x1cb))/0xa);if(_0x74a2da===_0x3e93b5)break;else _0x1f5394['push'](_0x1f5394['shift']());}catch(_0x37fcb4){_0x1f5394['push'](_0x1f5394['shift']());}}}(a6_0x1c0b,0xb7b9c));import{jsx as a6_0x1ca228}from'react/jsx-runtime';import{render}from'ink';function a6_0x49ba(_0x59ac6a,_0x351d32){const _0x1c0b33=a6_0x1c0b();return a6_0x49ba=function(_0x49badb,_0x1377ac){_0x49badb=_0x49badb-0x1c5;let _0x125bf5=_0x1c0b33[_0x49badb];return _0x125bf5;},a6_0x49ba(_0x59ac6a,_0x351d32);}import{ApiPullUI}from'./api-pull-ui.js';export async function apiCli(_0xf29757){const _0x2f21ed=a6_0x49ba,_0x2e421f=_0xf29757[_0x2f21ed(0x1d4)][0x1];if(_0x2e421f===_0x2f21ed(0x1d2)){const _0x5ccf98=_0xf29757[_0x2f21ed(0x1d4)][0x2];render(a6_0x1ca228(ApiPullUI,{'appCode':_0x5ccf98}));}else console[_0x2f21ed(0x1c9)](_0x2f21ed(0x1ca)+_0x2e421f),console[_0x2f21ed(0x1d6)](_0x2f21ed(0x1c6)),console[_0x2f21ed(0x1d6)](_0x2f21ed(0x1d3)),console['log']('\x20\x20\x20\x20app-code:\x20可选的应用AppCode,不指定则使用配置的默认值'),process[_0x2f21ed(0x1cf)](0x1);}function a6_0x1c0b(){const _0x39a34a=['\x20\x20lovrabet\x20api\x20pull\x20[app-code]\x20\x20\x20\x20//\x20拉取并生成\x20API\x20配置文件','input','757641SDnURm','log','1085dAlooX','Available\x20commands:','3xukFWJ','1155256ZcXKoV','error','Unknown\x20api\x20command:\x20','16807890tXRJqj','4511255qOKqcO','11232552fUfpIq','221614tMtgis','exit','30642PlEKms','9wwSXGN','pull'];a6_0x1c0b=function(){return _0x39a34a;};return a6_0x1c0b();}
@@ -1 +1 @@
1
- (function(_0x54d152,_0x8f7494){const _0x1b48af=a7_0xff85,_0x763c98=_0x54d152();while(!![]){try{const _0x3b9f3c=-parseInt(_0x1b48af(0xab))/0x1+-parseInt(_0x1b48af(0xbf))/0x2*(-parseInt(_0x1b48af(0xbc))/0x3)+parseInt(_0x1b48af(0xc0))/0x4*(-parseInt(_0x1b48af(0xb9))/0x5)+parseInt(_0x1b48af(0xc8))/0x6+-parseInt(_0x1b48af(0xcb))/0x7+-parseInt(_0x1b48af(0xc1))/0x8*(parseInt(_0x1b48af(0xb1))/0x9)+parseInt(_0x1b48af(0xc5))/0xa;if(_0x3b9f3c===_0x8f7494)break;else _0x763c98['push'](_0x763c98['shift']());}catch(_0x269df6){_0x763c98['push'](_0x763c98['shift']());}}}(a7_0x1e79,0x8c0ea));function a7_0x1e79(){const _0x30e760=['*\x20正在处理\x20','url','length','27ZqEhzO','√\x20API\x20配置文件生成完成','success','chdir','tableData','×\x20文件前缀格式不正确。只能包含字母、数字、连字符和下划线,且必须以字母开头。','API\x20配置拉取异常:\x20','-api','532705MNPQNA','&pageSize=999&currentPage=1','*\x20正在从服务器拉取\x20API\x20配置...','3087VxOwZV','log','\x20\x20\x20•\x20','162DjfTSX','40vandLl','874392lbtxhM','\x20个数据集...','/smartapi/dataset/getList?appCode=','获取数据集失败,原因:登录鉴权失败,登录已过期','34335630aInTKY','data','获取数据集失败,HTTP状态码:\x20','861558ZbfmJg','message','API\x20配置拉取成功:\x20','6102516PDwGDl','×\x20错误详情:','text','create-api-pull','error','status','×\x20无法读取错误响应内容','trim','×\x20服务器返回错误:','821736ydHqhp','*\x20开始生成\x20API\x20配置文件:','×\x20API\x20配置拉取异常:'];a7_0x1e79=function(){return _0x30e760;};return a7_0x1e79();}import{getCookie}from'../auth/get-cookie.js';function a7_0xff85(_0x408fc3,_0x592111){const _0x1e7995=a7_0x1e79();return a7_0xff85=function(_0xff8560,_0xc0007b){_0xff8560=_0xff8560-0xa9;let _0x466566=_0x1e7995[_0xff8560];return _0x466566;},a7_0xff85(_0x408fc3,_0x592111);}import{getApiDomain}from'../constant/domain.js';import{generateApiFile}from'./generate-api-file.js';import{logger}from'../utils/logger.js';export async function pullApiSilent(_0xf1978,_0x2e10ee,_0x1d50fe){const _0x3c1af8=a7_0xff85;let _0x4b1786;try{const _0xe7f65d=_0x2e10ee?.[_0x3c1af8(0xa9)]()||'';if(_0xe7f65d){const _0x329dab=/^[a-zA-Z][a-zA-Z0-9_-]*$/;if(!_0x329dab['test'](_0xe7f65d))return console[_0x3c1af8(0xcf)](_0x3c1af8(0xb6)),![];}_0x1d50fe&&(_0x4b1786=process['cwd'](),process[_0x3c1af8(0xb4)](_0x1d50fe));console['log'](_0x3c1af8(0xbb));const _0x2097d6=await fetch(getApiDomain()+_0x3c1af8(0xc3)+_0xf1978+_0x3c1af8(0xba),{'headers':{'Cookie':getCookie()}});if(_0x2097d6['ok']){const _0x55e3b1=await _0x2097d6['json']();if(_0x55e3b1[_0x3c1af8(0xb3)]){const _0x4d0dc9=_0xe7f65d?_0xe7f65d+_0x3c1af8(0xb8):'api',_0x4b814e=_0xe7f65d?_0xe7f65d+'-client':'client';return console[_0x3c1af8(0xbd)](_0x3c1af8(0xac)),console[_0x3c1af8(0xbd)](_0x3c1af8(0xbe)+_0x4d0dc9+'.ts\x20-\x20模型配置文件'),console[_0x3c1af8(0xbd)](_0x3c1af8(0xbe)+_0x4b814e+'.ts\x20-\x20客户端实例文件'),console[_0x3c1af8(0xbd)](_0x3c1af8(0xae)+_0x55e3b1['data'][_0x3c1af8(0xb5)][_0x3c1af8(0xb0)]+_0x3c1af8(0xc2)),await generateApiFile(_0x55e3b1[_0x3c1af8(0xc6)]['tableData'],_0xe7f65d,_0xf1978,!![]),console[_0x3c1af8(0xbd)](_0x3c1af8(0xb2)),_0x1d50fe&&logger['info']('create-api-pull',_0x3c1af8(0xca)+_0xf1978,{'projectPath':_0x1d50fe,'appCode':_0xf1978,'datasetCount':_0x55e3b1[_0x3c1af8(0xc6)][_0x3c1af8(0xb5)]['length'],'filePrefix':_0xe7f65d}),!![];}else return console['error'](_0x3c1af8(0xaa),_0x55e3b1[_0x3c1af8(0xc9)]||'未知错误'),_0x1d50fe&&logger[_0x3c1af8(0xcf)](_0x3c1af8(0xce),'API\x20配置拉取失败:\x20'+(_0x55e3b1['message']||'未知错误'),{'projectPath':_0x1d50fe,'appCode':_0xf1978}),![];}else{if(_0x2097d6['status']===0x191){const _0x26e8de=_0x3c1af8(0xc4);console[_0x3c1af8(0xcf)]('×\x20'+_0x26e8de),_0x1d50fe&&logger[_0x3c1af8(0xcf)](_0x3c1af8(0xce),_0x26e8de,{'status':_0x2097d6['status'],'appCode':_0xf1978,'url':_0x2097d6[_0x3c1af8(0xaf)],'projectPath':_0x1d50fe});}else{const _0x2858b5=_0x3c1af8(0xc7)+_0x2097d6[_0x3c1af8(0xd0)];console[_0x3c1af8(0xcf)]('×\x20'+_0x2858b5);try{const _0x2b0f9b=await _0x2097d6[_0x3c1af8(0xcd)]();_0x2b0f9b&&console[_0x3c1af8(0xcf)](_0x3c1af8(0xcc),_0x2b0f9b),_0x1d50fe&&logger['error']('create-api-pull',_0x2858b5,{'status':_0x2097d6[_0x3c1af8(0xd0)],'appCode':_0xf1978,'url':_0x2097d6['url'],'errorBody':_0x2b0f9b,'projectPath':_0x1d50fe});}catch(_0x570100){console['error'](_0x3c1af8(0xd1)),_0x1d50fe&&logger[_0x3c1af8(0xcf)](_0x3c1af8(0xce),_0x2858b5+',且无法读取错误响应内容',{'status':_0x2097d6[_0x3c1af8(0xd0)],'appCode':_0xf1978,'url':_0x2097d6[_0x3c1af8(0xaf)],'readError':_0x570100 instanceof Error?_0x570100[_0x3c1af8(0xc9)]:String(_0x570100),'projectPath':_0x1d50fe});}}return![];}}catch(_0x51e461){const _0x50343c=_0x51e461 instanceof Error?_0x51e461['message']:String(_0x51e461);return console['error'](_0x3c1af8(0xad),_0x50343c),_0x1d50fe&&logger[_0x3c1af8(0xcf)]('create-api-pull',_0x3c1af8(0xb7)+_0x50343c,{'appCode':_0xf1978,'projectPath':_0x1d50fe}),![];}finally{_0x4b1786&&process[_0x3c1af8(0xb4)](_0x4b1786);}}
1
+ (function(_0x41283d,_0x3f87b5){const _0x5024fb=a7_0x326c,_0x2c8cbc=_0x41283d();while(!![]){try{const _0x1c3ca8=-parseInt(_0x5024fb(0x1ea))/0x1*(-parseInt(_0x5024fb(0x1d3))/0x2)+-parseInt(_0x5024fb(0x1d9))/0x3*(parseInt(_0x5024fb(0x1ee))/0x4)+-parseInt(_0x5024fb(0x1e0))/0x5+-parseInt(_0x5024fb(0x1e9))/0x6+-parseInt(_0x5024fb(0x1e7))/0x7*(parseInt(_0x5024fb(0x1ec))/0x8)+parseInt(_0x5024fb(0x1f3))/0x9+-parseInt(_0x5024fb(0x1cd))/0xa*(-parseInt(_0x5024fb(0x1da))/0xb);if(_0x1c3ca8===_0x3f87b5)break;else _0x2c8cbc['push'](_0x2c8cbc['shift']());}catch(_0x207616){_0x2c8cbc['push'](_0x2c8cbc['shift']());}}}(a7_0x297a,0x442f9));import{getCookie}from'../auth/get-cookie.js';import{getApiDomain}from'../constant/domain.js';import{generateApiFile}from'./generate-api-file.js';function a7_0x326c(_0x379fcd,_0x289638){const _0x297a7c=a7_0x297a();return a7_0x326c=function(_0x326cc5,_0x3d79e7){_0x326cc5=_0x326cc5-0x1cc;let _0x173171=_0x297a7c[_0x326cc5];return _0x173171;},a7_0x326c(_0x379fcd,_0x289638);}function a7_0x297a(){const _0x2bd12f=[',且无法读取错误响应内容','create-api-pull','data','2201202FYBEeP','message','status','-client','trim','×\x20API\x20配置拉取异常:','4089110gDupQI','.ts\x20-\x20客户端实例文件','error','/smartapi/dataset/getList?appCode=','*\x20正在处理\x20','tableData','82978MFyKRy','.ts\x20-\x20模型配置文件','length','×\x20错误详情:','*\x20正在从服务器拉取\x20API\x20配置...','API\x20配置拉取异常:\x20','1273746oFtzRm','22CztgOw','API\x20配置拉取成功:\x20','log','未知错误','cwd','chdir','1898330EQEUfQ','url','api','test','×\x20无法读取错误响应内容','×\x20文件前缀格式不正确。只能包含字母、数字、连字符和下划线,且必须以字母开头。','json','427889EYGXZN','info','633258ZlMxOs','6zCaVSk','\x20\x20\x20•\x20','16uhlpTv','×\x20服务器返回错误:','4ZdgAAH','-api'];a7_0x297a=function(){return _0x2bd12f;};return a7_0x297a();}import{logger}from'../utils/logger.js';export async function pullApiSilent(_0x4da5e5,_0xf31f32,_0x5adf71){const _0x801ebd=a7_0x326c;let _0x1977e6;try{const _0x4d59d2=_0xf31f32?.[_0x801ebd(0x1f7)]()||'';if(_0x4d59d2){const _0x25f1d9=/^[a-zA-Z][a-zA-Z0-9_-]*$/;if(!_0x25f1d9[_0x801ebd(0x1e3)](_0x4d59d2))return console[_0x801ebd(0x1cf)](_0x801ebd(0x1e5)),![];}_0x5adf71&&(_0x1977e6=process[_0x801ebd(0x1de)](),process['chdir'](_0x5adf71));console[_0x801ebd(0x1dc)](_0x801ebd(0x1d7));const _0x1686e1=await fetch(getApiDomain()+_0x801ebd(0x1d0)+_0x4da5e5+'&pageSize=999&currentPage=1',{'headers':{'Cookie':getCookie()}});if(_0x1686e1['ok']){const _0x5960ee=await _0x1686e1[_0x801ebd(0x1e6)]();if(_0x5960ee['success']){const _0x3b7f15=_0x4d59d2?_0x4d59d2+_0x801ebd(0x1ef):_0x801ebd(0x1e2),_0x43b86e=_0x4d59d2?_0x4d59d2+_0x801ebd(0x1f6):'client';return console['log']('*\x20开始生成\x20API\x20配置文件:'),console[_0x801ebd(0x1dc)](_0x801ebd(0x1eb)+_0x3b7f15+_0x801ebd(0x1d4)),console[_0x801ebd(0x1dc)](_0x801ebd(0x1eb)+_0x43b86e+_0x801ebd(0x1ce)),console[_0x801ebd(0x1dc)](_0x801ebd(0x1d1)+_0x5960ee['data'][_0x801ebd(0x1d2)][_0x801ebd(0x1d5)]+'\x20个数据集...'),await generateApiFile(_0x5960ee[_0x801ebd(0x1f2)]['tableData'],_0x4d59d2,_0x4da5e5,!![]),console[_0x801ebd(0x1dc)]('√\x20API\x20配置文件生成完成'),_0x5adf71&&logger[_0x801ebd(0x1e8)](_0x801ebd(0x1f1),_0x801ebd(0x1db)+_0x4da5e5,{'projectPath':_0x5adf71,'appCode':_0x4da5e5,'datasetCount':_0x5960ee[_0x801ebd(0x1f2)][_0x801ebd(0x1d2)][_0x801ebd(0x1d5)],'filePrefix':_0x4d59d2}),!![];}else return console[_0x801ebd(0x1cf)](_0x801ebd(0x1ed),_0x5960ee[_0x801ebd(0x1f4)]||_0x801ebd(0x1dd)),_0x5adf71&&logger[_0x801ebd(0x1cf)]('create-api-pull','API\x20配置拉取失败:\x20'+(_0x5960ee[_0x801ebd(0x1f4)]||_0x801ebd(0x1dd)),{'projectPath':_0x5adf71,'appCode':_0x4da5e5}),![];}else{if(_0x1686e1['status']===0x191){const _0x5527ee='获取数据集失败,原因:登录鉴权失败,登录已过期';console['error']('×\x20'+_0x5527ee),_0x5adf71&&logger[_0x801ebd(0x1cf)](_0x801ebd(0x1f1),_0x5527ee,{'status':_0x1686e1[_0x801ebd(0x1f5)],'appCode':_0x4da5e5,'url':_0x1686e1['url'],'projectPath':_0x5adf71});}else{const _0x2aa08c='获取数据集失败,HTTP状态码:\x20'+_0x1686e1['status'];console[_0x801ebd(0x1cf)]('×\x20'+_0x2aa08c);try{const _0x22fae6=await _0x1686e1['text']();_0x22fae6&&console[_0x801ebd(0x1cf)](_0x801ebd(0x1d6),_0x22fae6),_0x5adf71&&logger[_0x801ebd(0x1cf)](_0x801ebd(0x1f1),_0x2aa08c,{'status':_0x1686e1[_0x801ebd(0x1f5)],'appCode':_0x4da5e5,'url':_0x1686e1['url'],'errorBody':_0x22fae6,'projectPath':_0x5adf71});}catch(_0x5ed5e9){console[_0x801ebd(0x1cf)](_0x801ebd(0x1e4)),_0x5adf71&&logger[_0x801ebd(0x1cf)](_0x801ebd(0x1f1),_0x2aa08c+_0x801ebd(0x1f0),{'status':_0x1686e1[_0x801ebd(0x1f5)],'appCode':_0x4da5e5,'url':_0x1686e1[_0x801ebd(0x1e1)],'readError':_0x5ed5e9 instanceof Error?_0x5ed5e9['message']:String(_0x5ed5e9),'projectPath':_0x5adf71});}}return![];}}catch(_0x374da9){const _0x2af458=_0x374da9 instanceof Error?_0x374da9['message']:String(_0x374da9);return console['error'](_0x801ebd(0x1cc),_0x2af458),_0x5adf71&&logger[_0x801ebd(0x1cf)](_0x801ebd(0x1f1),_0x801ebd(0x1d8)+_0x2af458,{'appCode':_0x4da5e5,'projectPath':_0x5adf71}),![];}finally{_0x1977e6&&process[_0x801ebd(0x1df)](_0x1977e6);}}