You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.6 KiB
56 lines
1.6 KiB
import React, { PureComponent } from 'react';
|
|
import Link from 'umi/link';
|
|
import RightContent from '../GlobalHeader/RightContent';
|
|
import BaseMenu from '../SiderMenu/BaseMenu';
|
|
import { getFlatMenuKeys } from '../SiderMenu/SiderMenuUtils';
|
|
import styles from './index.less';
|
|
import { title } from '../../defaultSettings';
|
|
|
|
export default class TopNavHeader extends PureComponent {
|
|
state = {
|
|
maxWidth: undefined,
|
|
};
|
|
|
|
static getDerivedStateFromProps(props) {
|
|
return {
|
|
maxWidth:
|
|
(props.contentWidth === 'Fixed' && window.innerWidth > 1200 ? 1200 : window.innerWidth) -
|
|
280 -
|
|
120 -
|
|
40,
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const { theme, contentWidth, menuData, logo } = this.props;
|
|
const { maxWidth } = this.state;
|
|
const flatMenuKeys = getFlatMenuKeys(menuData);
|
|
return (
|
|
<div className={`${styles.head} ${theme === 'light' ? styles.light : ''}`}>
|
|
<div
|
|
ref={ref => {
|
|
this.maim = ref;
|
|
}}
|
|
className={`${styles.main} ${contentWidth === 'Fixed' ? styles.wide : ''}`}
|
|
>
|
|
<div className={styles.left}>
|
|
<div className={styles.logo} key="logo" id="logo">
|
|
<Link to="/">
|
|
<img src={logo} alt="logo" />
|
|
<h1>{title}</h1>
|
|
</Link>
|
|
</div>
|
|
<div
|
|
style={{
|
|
maxWidth,
|
|
}}
|
|
>
|
|
<BaseMenu {...this.props} flatMenuKeys={flatMenuKeys} className={styles.menu} />
|
|
</div>
|
|
</div>
|
|
<RightContent {...this.props} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|