|
@@ -3,13 +3,13 @@
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
* this work for additional information regarding copyright ownership.
|
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
- * (the 'License'); you may not use this file except in compliance with
|
|
|
+ * (the "License"); you may not use this file except in compliance with
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
*
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
*
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
- * distributed under the License is distributed on an 'AS IS' BASIS,
|
|
|
+ * distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
* See the License for the specific language governing permissions and
|
|
|
* limitations under the License.
|
|
@@ -51,170 +51,6 @@ export function useDataList() {
|
|
|
return () => h(NIcon, null, { default: () => h(icon) })
|
|
|
}
|
|
|
|
|
|
- const menuOptions = [
|
|
|
- {
|
|
|
- label: t('menu.home'),
|
|
|
- key: 'home',
|
|
|
- icon: renderIcon(HomeOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.project'),
|
|
|
- key: 'project',
|
|
|
- icon: renderIcon(ProfileOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.workflow_monitoring'),
|
|
|
- key: 'workflow-monitoring',
|
|
|
- icon: renderIcon(FundProjectionScreenOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.workflow_relationships'),
|
|
|
- key: 'workflow-relationships',
|
|
|
- icon: renderIcon(PartitionOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.workflow'),
|
|
|
- key: 'workflow',
|
|
|
- icon: renderIcon(SettingOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.workflow_definition'),
|
|
|
- key: 'workflow-definition',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.workflow_instance'),
|
|
|
- key: 'workflow-instance',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.task_instance'),
|
|
|
- key: 'task-instance',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.task_definition'),
|
|
|
- key: 'task-definition',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.resources'),
|
|
|
- key: 'resources',
|
|
|
- icon: renderIcon(FolderOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.file_manage'),
|
|
|
- key: 'file-manage',
|
|
|
- icon: renderIcon(FileSearchOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.udf_manage'),
|
|
|
- key: 'udf-manage',
|
|
|
- icon: renderIcon(RobotOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.resource_manage'),
|
|
|
- key: 'resource-manage',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.function_manage'),
|
|
|
- key: 'function-manage',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.datasource'),
|
|
|
- key: 'datasource',
|
|
|
- icon: renderIcon(DatabaseOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.monitor'),
|
|
|
- key: 'monitor',
|
|
|
- icon: renderIcon(DesktopOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.service_manage'),
|
|
|
- key: 'service-manage',
|
|
|
- icon: renderIcon(AppstoreOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.master'),
|
|
|
- key: 'master',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.worker'),
|
|
|
- key: 'worker',
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.db'),
|
|
|
- key: 'db',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.statistical_manage'),
|
|
|
- key: 'statistical-manage',
|
|
|
- icon: renderIcon(AppstoreOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.statistics'),
|
|
|
- key: 'statistics',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.security'),
|
|
|
- key: 'security',
|
|
|
- icon: renderIcon(SafetyCertificateOutlined),
|
|
|
- children: [
|
|
|
- {
|
|
|
- label: t('menu.tenant_manage'),
|
|
|
- key: 'tenant-manage',
|
|
|
- icon: renderIcon(UsergroupAddOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.user_manage'),
|
|
|
- key: 'user-manage',
|
|
|
- icon: renderIcon(UserAddOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.alarm_group_manage'),
|
|
|
- key: 'alarm-group-manage',
|
|
|
- icon: renderIcon(WarningOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.alarm_instance_manage'),
|
|
|
- key: 'alarm-instance-manage',
|
|
|
- icon: renderIcon(InfoCircleOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.worker_group_manage'),
|
|
|
- key: 'worker-group-manage',
|
|
|
- icon: renderIcon(ControlOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.yarn_queue_manage'),
|
|
|
- key: 'yarn-queue-manage',
|
|
|
- icon: renderIcon(SlackOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.environmental_manage'),
|
|
|
- key: 'environmental-manage',
|
|
|
- icon: renderIcon(EnvironmentOutlined),
|
|
|
- },
|
|
|
- {
|
|
|
- label: t('menu.token_manage'),
|
|
|
- key: 'token-manage',
|
|
|
- icon: renderIcon(SafetyOutlined),
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- ]
|
|
|
-
|
|
|
const languageOptions = [
|
|
|
{
|
|
|
label: 'English',
|
|
@@ -244,9 +80,183 @@ export function useDataList() {
|
|
|
},
|
|
|
]
|
|
|
|
|
|
- const getHeaderMenuOptions = (MenuOptions: any) => {
|
|
|
- let headerMenuOptions = []
|
|
|
- headerMenuOptions = MenuOptions.map(
|
|
|
+ const state = reactive({
|
|
|
+ isShowSide: false,
|
|
|
+ languageOptions,
|
|
|
+ userDropdownOptions,
|
|
|
+ menuOptions: [],
|
|
|
+ headerMenuOptions: [],
|
|
|
+ sideMenuOptions: []
|
|
|
+ })
|
|
|
+
|
|
|
+ const changeMenuOption = (state: any) => {
|
|
|
+ state.menuOptions = [
|
|
|
+ {
|
|
|
+ label: t('menu.home'),
|
|
|
+ key: 'home',
|
|
|
+ icon: renderIcon(HomeOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.project'),
|
|
|
+ key: 'project',
|
|
|
+ icon: renderIcon(ProfileOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.workflow_monitoring'),
|
|
|
+ key: 'workflow-monitoring',
|
|
|
+ icon: renderIcon(FundProjectionScreenOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.workflow_relationships'),
|
|
|
+ key: 'workflow-relationships',
|
|
|
+ icon: renderIcon(PartitionOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.workflow'),
|
|
|
+ key: 'workflow',
|
|
|
+ icon: renderIcon(SettingOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.workflow_definition'),
|
|
|
+ key: 'workflow-definition',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.workflow_instance'),
|
|
|
+ key: 'workflow-instance',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.task_instance'),
|
|
|
+ key: 'task-instance',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.task_definition'),
|
|
|
+ key: 'task-definition',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.resources'),
|
|
|
+ key: 'resources',
|
|
|
+ icon: renderIcon(FolderOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.file_manage'),
|
|
|
+ key: 'file-manage',
|
|
|
+ icon: renderIcon(FileSearchOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.udf_manage'),
|
|
|
+ key: 'udf-manage',
|
|
|
+ icon: renderIcon(RobotOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.resource_manage'),
|
|
|
+ key: 'resource-manage',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.function_manage'),
|
|
|
+ key: 'function-manage',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.datasource'),
|
|
|
+ key: 'datasource',
|
|
|
+ icon: renderIcon(DatabaseOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.monitor'),
|
|
|
+ key: 'monitor',
|
|
|
+ icon: renderIcon(DesktopOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.service_manage'),
|
|
|
+ key: 'service-manage',
|
|
|
+ icon: renderIcon(AppstoreOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.master'),
|
|
|
+ key: 'master',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.worker'),
|
|
|
+ key: 'worker',
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.db'),
|
|
|
+ key: 'db',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.statistical_manage'),
|
|
|
+ key: 'statistical-manage',
|
|
|
+ icon: renderIcon(AppstoreOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.statistics'),
|
|
|
+ key: 'statistics',
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.security'),
|
|
|
+ key: 'security',
|
|
|
+ icon: renderIcon(SafetyCertificateOutlined),
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ label: t('menu.tenant_manage'),
|
|
|
+ key: 'tenant-manage',
|
|
|
+ icon: renderIcon(UsergroupAddOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.user_manage'),
|
|
|
+ key: 'user-manage',
|
|
|
+ icon: renderIcon(UserAddOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.alarm_group_manage'),
|
|
|
+ key: 'alarm-group-manage',
|
|
|
+ icon: renderIcon(WarningOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.alarm_instance_manage'),
|
|
|
+ key: 'alarm-instance-manage',
|
|
|
+ icon: renderIcon(InfoCircleOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.worker_group_manage'),
|
|
|
+ key: 'worker-group-manage',
|
|
|
+ icon: renderIcon(ControlOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.yarn_queue_manage'),
|
|
|
+ key: 'yarn-queue-manage',
|
|
|
+ icon: renderIcon(SlackOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.environmental_manage'),
|
|
|
+ key: 'environmental-manage',
|
|
|
+ icon: renderIcon(EnvironmentOutlined),
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: t('menu.token_manage'),
|
|
|
+ key: 'token-manage',
|
|
|
+ icon: renderIcon(SafetyOutlined),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ }
|
|
|
+
|
|
|
+ const changeHeaderMenuOptions = (state: any) => {
|
|
|
+ state.headerMenuOptions = state.menuOptions.map(
|
|
|
(item: { label: string; key: string; icon: any }) => {
|
|
|
return {
|
|
|
label: item.label,
|
|
@@ -255,18 +265,11 @@ export function useDataList() {
|
|
|
}
|
|
|
}
|
|
|
)
|
|
|
- return headerMenuOptions
|
|
|
}
|
|
|
|
|
|
- const state = reactive({
|
|
|
- isShowSide: false,
|
|
|
- menuOptions,
|
|
|
- languageOptions,
|
|
|
- userDropdownOptions,
|
|
|
- })
|
|
|
-
|
|
|
return {
|
|
|
state,
|
|
|
- getHeaderMenuOptions,
|
|
|
+ changeHeaderMenuOptions,
|
|
|
+ changeMenuOption
|
|
|
}
|
|
|
}
|