123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed under the Apache License, Version 2.0 (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,
- * 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.
- * >>
- */
- import React, { useEffect, useMemo, PropsWithChildren } from 'react'
- import { useDispatch, useSelector } from 'react-redux'
- import { useLocation, matchPath, useHistory } from 'react-router-dom'
- import { showNavigator } from 'containers/App/actions'
- import { makeSelectCurrentProject } from 'containers/Projects/selectors'
- import { Icon } from 'antd'
- import SidebarOption from 'components/SidebarOption'
- import Sidebar from 'components/Sidebar'
- import { SidebarPermissions } from '../Main/constants'
- import { IRouteParams } from 'utils/types'
- import useProjectPermission from '../Projects/hooks/projectPermission'
- import styles from '../Main/Main.less'
- const sidebarSource: Array<{
- icon: React.ReactNode
- name: string
- routes: string[]
- permissionName: typeof SidebarPermissions[number]
- }> = [
- {
- icon: <img src={require('assets/images/sjkb.svg')} />,
- name: '数据看板',
- routes: ['vizs'],
- permissionName: 'vizPermission'
- },
- {
- icon: <img src={require('assets/images/kshzj.svg')} />,
- name: '可视化组件',
- routes: ['widgets'],
- permissionName: 'widgetPermission'
- },
- {
- icon: <img src={require('assets/images/dsrw.svg')} />,
- name: '定时任务',
- routes: ['schedules'],
- permissionName: 'schedulePermission'
- }
- ]
- const MainSidebar: React.FC<PropsWithChildren<{}>> = (props) => {
- const dispatch = useDispatch()
- useEffect(() => {
- dispatch(showNavigator())
- }, [])
- const location = useLocation()
- const { pathname } = location
- const history = useHistory()
- const currentProject = useSelector(makeSelectCurrentProject())
- useEffect(() => {
- if (!currentProject) {
- return
- }
- const { id: projectId, permission } = currentProject
- const match = matchPath<IRouteParams>(pathname, {
- path: `/project/:projectId/dataShareService`,
- exact: true,
- strict: false
- })
- if (match) {
- const hasPermission = SidebarPermissions.some((sidebarPermission) => {
- if (permission[sidebarPermission] > 0) {
- const path = sidebarPermission.slice(0, -10)
- history.replace(`/project/${projectId}/dataShareService/${path}s`)
- return true
- }
- })
- !hasPermission && history.replace('/noAuthorization')
- }
- }, [pathname, currentProject])
- const AuthorizedSidebarOptions = useProjectPermission(
- SidebarOption,
- sidebarSource.map(({ permissionName }) => permissionName)
- )
- const sidebar = useMemo(() => {
- if (!currentProject) {
- return null
- }
- const { id: projectId, permission } = currentProject
- const vizOnly = SidebarPermissions.every((permissionName) =>
- permissionName === 'vizPermission'
- ? permission[permissionName]
- : !permission[permissionName]
- )
- if (vizOnly) {
- return null
- }
- const sidebarOptions = sidebarSource.map(
- ({ permissionName, routes, icon, name }, idx) => {
- if (!permission[permissionName]) {
- return null
- }
- const active = routes.some((route) => pathname.includes(route))
- const AuthorizedSidebarOption = AuthorizedSidebarOptions[idx]
- return (
- <AuthorizedSidebarOption
- key={permissionName}
- active={active}
- indexRoute={routes[0]}
- projectId={projectId}
- icon={icon}
- name={name}
- link={`/project/${projectId}/dataShareService/${routes[0]}`}
- />
- )
- }
- )
- return <Sidebar>{sidebarOptions}</Sidebar>
- }, [currentProject, pathname])
- return (
- <div className={styles.sidebar}>
- {sidebar}
- <div className={styles.content}>{props.children}</div>
- </div>
- )
- }
- export default MainSidebar
|