Browse Source

Improve the routing (#8176)

3.0.0/version-upgrade
labbomb 3 years ago committed by GitHub
parent
commit
435d37899f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      dolphinscheduler-ui-next/src/layouts/content/components/sidebar/use-menuClick.ts
  2. 11
      dolphinscheduler-ui-next/src/layouts/content/index.tsx
  3. 44
      dolphinscheduler-ui-next/src/layouts/content/use-dataList.ts

6
dolphinscheduler-ui-next/src/layouts/content/components/sidebar/use-menuClick.ts

@ -25,9 +25,9 @@ export function useMenuClick() {
const menuStore = useMenuStore() const menuStore = useMenuStore()
const handleMenuClick = (key: string, item: MenuOption) => { const handleMenuClick = (key: string, item: MenuOption) => {
// console.log(key, item) console.log(key, item)
menuStore.setSideMenuKey(key) menuStore.setSideMenuKey(`${key}`)
router.push({ path: `/${menuStore.getMenuKey}/${key}` }) router.push({ path: `${key}` })
} }
return { return {

11
dolphinscheduler-ui-next/src/layouts/content/index.tsx

@ -46,14 +46,14 @@ const Content = defineComponent({
onMounted(() => { onMounted(() => {
changeMenuOption(state) changeMenuOption(state)
changeHeaderMenuOptions(state) changeHeaderMenuOptions(state)
genSideMenu(state) getSideMenu(state)
changeUserDropdown(state) changeUserDropdown(state)
}) })
watch(useI18n().locale, () => { watch(useI18n().locale, () => {
changeMenuOption(state) changeMenuOption(state)
changeHeaderMenuOptions(state) changeHeaderMenuOptions(state)
genSideMenu(state) getSideMenu(state)
changeUserDropdown(state) changeUserDropdown(state)
}) })
@ -61,12 +61,11 @@ const Content = defineComponent({
() => route.path, () => route.path,
(path) => { (path) => {
state.isShowSide = menuStore.getShowSideStatus state.isShowSide = menuStore.getShowSideStatus
const regex = new RegExp('[^/]+$', 'g') menuStore.setSideMenuKey(path)
menuStore.setSideMenuKey((path.match(regex) as RegExpMatchArray)[0])
} }
) )
const genSideMenu = (state: any) => { const getSideMenu = (state: any) => {
const key = menuStore.getMenuKey const key = menuStore.getMenuKey
state.sideMenuOptions = state.sideMenuOptions =
state.menuOptions.filter((menu: { key: string }) => menu.key === key)[0] state.menuOptions.filter((menu: { key: string }) => menu.key === key)[0]
@ -76,7 +75,7 @@ const Content = defineComponent({
const getSideMenuOptions = (item: any) => { const getSideMenuOptions = (item: any) => {
menuStore.setMenuKey(item.key) menuStore.setMenuKey(item.key)
genSideMenu(state) getSideMenu(state)
} }
return { return {

44
dolphinscheduler-ui-next/src/layouts/content/use-dataList.ts

@ -90,7 +90,7 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.project_overview'), label: t('menu.project_overview'),
key: 'projects-overview', key: `/projects/${menuStore.getProjectCode}`,
icon: renderIcon(FundProjectionScreenOutlined) icon: renderIcon(FundProjectionScreenOutlined)
}, },
{ {
@ -100,15 +100,15 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.workflow_relation'), label: t('menu.workflow_relation'),
key: 'workflow-relation' key: `/projects/workflow-relation`
}, },
{ {
label: t('menu.workflow_definition'), label: t('menu.workflow_definition'),
key: 'workflow-definition' key: `/projects/workflow-definition`
}, },
{ {
label: t('menu.workflow_instance'), label: t('menu.workflow_instance'),
key: 'workflow-instance' key: `/projects/workflow-instance`
} }
] ]
}, },
@ -119,11 +119,11 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.task_definition'), label: t('menu.task_definition'),
key: 'task-definition' key: `/projects/task-definition`
}, },
{ {
label: t('menu.task_instance'), label: t('menu.task_instance'),
key: 'task-instance' key: `/projects/task-instance`
} }
] ]
} }
@ -137,7 +137,7 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.file_manage'), label: t('menu.file_manage'),
key: 'file-manage', key: `/resource/file-manage`,
icon: renderIcon(FileSearchOutlined) icon: renderIcon(FileSearchOutlined)
}, },
{ {
@ -147,11 +147,11 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.resource_manage'), label: t('menu.resource_manage'),
key: 'resource-manage' key: `/resource/resource-manage`
}, },
{ {
label: t('menu.function_manage'), label: t('menu.function_manage'),
key: 'function-manage' key: `/resource/function-manage`
} }
] ]
}, },
@ -162,7 +162,7 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.task_group_option'), label: t('menu.task_group_option'),
key: 'task-group-option' key: `/resource/task-group-option`
} }
] ]
} }
@ -188,15 +188,15 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.master'), label: t('menu.master'),
key: 'master' key: `/monitor/master`
}, },
{ {
label: t('menu.worker'), label: t('menu.worker'),
key: 'worker' key: `/monitor/worker`
}, },
{ {
label: t('menu.db'), label: t('menu.db'),
key: 'db' key: `/monitor/db`
} }
] ]
}, },
@ -207,7 +207,7 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.statistics'), label: t('menu.statistics'),
key: 'statistics' key: `/monitor/statistics`
} }
] ]
} }
@ -221,42 +221,42 @@ export function useDataList() {
children: [ children: [
{ {
label: t('menu.tenant_manage'), label: t('menu.tenant_manage'),
key: 'tenant-manage', key: `/security/tenant-manage`,
icon: renderIcon(UsergroupAddOutlined) icon: renderIcon(UsergroupAddOutlined)
}, },
{ {
label: t('menu.user_manage'), label: t('menu.user_manage'),
key: 'user-manage', key: `/security/user-manage`,
icon: renderIcon(UserAddOutlined) icon: renderIcon(UserAddOutlined)
}, },
{ {
label: t('menu.alarm_group_manage'), label: t('menu.alarm_group_manage'),
key: 'alarm-group-manage', key: `/security/alarm-group-manage`,
icon: renderIcon(WarningOutlined) icon: renderIcon(WarningOutlined)
}, },
{ {
label: t('menu.alarm_instance_manage'), label: t('menu.alarm_instance_manage'),
key: 'alarm-instance-manage', key: `/security/alarm-instance-manage`,
icon: renderIcon(InfoCircleOutlined) icon: renderIcon(InfoCircleOutlined)
}, },
{ {
label: t('menu.worker_group_manage'), label: t('menu.worker_group_manage'),
key: 'worker-group-manage', key: `/security/worker-group-manage`,
icon: renderIcon(ControlOutlined) icon: renderIcon(ControlOutlined)
}, },
{ {
label: t('menu.yarn_queue_manage'), label: t('menu.yarn_queue_manage'),
key: 'yarn-queue-manage', key: `/security/yarn-queue-manage`,
icon: renderIcon(SlackOutlined) icon: renderIcon(SlackOutlined)
}, },
{ {
label: t('menu.environment_manage'), label: t('menu.environment_manage'),
key: 'environment-manage', key: `/security/environment-manage`,
icon: renderIcon(EnvironmentOutlined) icon: renderIcon(EnvironmentOutlined)
}, },
{ {
label: t('menu.token_manage'), label: t('menu.token_manage'),
key: 'token-manage', key: `/security/token-manage`,
icon: renderIcon(SafetyOutlined) icon: renderIcon(SafetyOutlined)
} }
] ]

Loading…
Cancel
Save