Skip to content

Commit d571c76

Browse files
c121914yuFinleyGenewfish-cmykxqvvu
authored
V4.14.1 feature (#5880)
* feat: app split (#5858) * feat: app split script * fix: app split * chore: app split script try-catch * adjust dashborad page (#5872) * create page * create page * create button * router name * bot * template * create page * mobile * toolfolder * fix * fix * fix build * split tool select * img * doc * rename enum * fix page adjust (#5883) * fix page adjust * fix ad store * fix: initv4141 (#5886) * fix: create app * doc * hide api * doc * feat: payment pause interactive (#5892) * fix: copy clbs (#5889) * fix: copy clbs * fix: copy clbs * fix: http protocol handling in baseURL (#5890) * fix: http protocol handling in baseURL * ui fix * auto saved version * fix * auto save * fix: model permission modal (#5895) * folder * fix: del app * navbar * fix: plugin file selector (#5893) * fix: plugin file selector * fix: plugin file selector * workflow tool inputform * pick --------- Co-authored-by: archer <[email protected]> * fix: workflow tool time * doc * fix workorder button (#5896) * add inform track (#5897) * remove invalid track * comment * feat: marketplace refresh api (#5884) * marketplace refresh * fix: helper bot menu button (#5898) --------- Co-authored-by: Finley Ge <[email protected]> Co-authored-by: heheer <[email protected]> Co-authored-by: 伍闲犬 <[email protected]>
1 parent 74e1620 commit d571c76

File tree

188 files changed

+8243
-2557
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+8243
-2557
lines changed

.claude/design/i18n优化实施计划.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export default i18n;
133133
export const pageNamespaces: Record<string, string[]> = {
134134
// 应用相关
135135
'/app/detail': ['app', 'chat', 'workflow', 'publish', 'file'],
136-
'/dashboard/apps': ['app'],
136+
'/dashboard/agent': ['app'],
137137

138138
// 数据集相关
139139
'/dataset/list': ['dataset'],
@@ -583,7 +583,7 @@ P0 - 高频访问页面 (优先迁移):
583583
- /app/detail (应用编辑页)
584584
- /dataset/list (数据集列表)
585585
- /dataset/detail (数据集详情)
586-
- /dashboard/apps (应用列表)
586+
- /dashboard/agent (应用列表)
587587

588588
P1 - 中频访问页面:
589589
- /account/setting (账户设置)
@@ -810,7 +810,7 @@ import { test, expect } from '@playwright/test';
810810
811811
test.describe('i18n Performance', () => {
812812
test('should load translations within 200ms', async ({ page }) => {
813-
await page.goto('http://localhost:3000/dashboard/apps');
813+
await page.goto('http://localhost:3000/dashboard/agent');
814814
815815
const startTime = Date.now();
816816
@@ -826,7 +826,7 @@ test.describe('i18n Performance', () => {
826826
});
827827

828828
test('should switch routes without translation flash', async ({ page }) => {
829-
await page.goto('http://localhost:3000/dashboard/apps');
829+
await page.goto('http://localhost:3000/dashboard/agent');
830830
await page.waitForLoadState('networkidle');
831831

832832
// 点击链接切换路由

.claude/design/路由性能诊断报告.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export async function getServerSideProps(content: any) {
8282
};
8383
}
8484

85-
// projects/app/src/pages/dashboard/apps/index.tsx:344
85+
// projects/app/src/pages/dashboard/agent/index.tsx:344
8686
export async function getServerSideProps(content: any) {
8787
return {
8888
props: {
@@ -317,7 +317,7 @@ const { loading: loadingApp, runAsync: reloadApp } = useRequest2(
317317
refreshDeps: [appId],
318318
errorToast: t('common:core.app.error.Get app failed'),
319319
onError(err: any) {
320-
router.replace('/dashboard/apps');
320+
router.replace('/dashboard/agent');
321321
},
322322
onSuccess(res) {
323323
setAppDetail(res);
@@ -585,7 +585,7 @@ import i18n from './client';
585585
const pageNamespaces = {
586586
'/app/detail': ['app', 'chat', 'workflow'],
587587
'/dataset/list': ['dataset'],
588-
'/dashboard/apps': ['app'],
588+
'/dashboard/agent': ['app'],
589589
// ... 更多映射
590590
};
591591
@@ -1321,7 +1321,7 @@ import { test, expect } from '@playwright/test';
13211321
13221322
test.describe('Route Switching Performance', () => {
13231323
test('should switch routes within 500ms', async ({ page }) => {
1324-
await page.goto('http://localhost:3000/dashboard/apps');
1324+
await page.goto('http://localhost:3000/dashboard/agent');
13251325
13261326
// 等待页面完全加载
13271327
await page.waitForLoadState('networkidle');

0 commit comments

Comments
 (0)