Commit 17feda3a authored by afc163's avatar afc163

dispatch window resize event when menu collapse

parent cae82425
import React, { Component } from 'react'; import React, { Component } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames'; import classNames from 'classnames';
import styles from './index.less'; import styles from './index.less';
export default class FooterToolbar extends Component { export default class FooterToolbar extends Component {
static contextTypes = {
layoutCollapsed: PropTypes.bool,
};
state = {
width: '',
};
componentDidMount() {
this.syncWidth();
}
componentWillReceiveProps() {
this.syncWidth();
}
syncWidth() {
const sider = document.querySelectorAll('.ant-layout-sider')[0];
if (sider) {
this.setState({
width: `calc(100% - ${sider.style.width})`,
});
}
}
render() { render() {
const { children, style, className, extra, ...restProps } = this.props; const { children, className, extra, ...restProps } = this.props;
return ( return (
<div <div
className={classNames(className, styles.toolbar)} className={classNames(className, styles.toolbar)}
ref={this.getRefNode}
style={{
width: this.state.width,
...style,
}}
{...restProps} {...restProps}
> >
<div className={styles.left}>{extra}</div> <div className={styles.left}>{extra}</div>
......
...@@ -170,6 +170,9 @@ class BasicLayout extends React.PureComponent { ...@@ -170,6 +170,9 @@ class BasicLayout extends React.PureComponent {
type: 'global/changeLayoutCollapsed', type: 'global/changeLayoutCollapsed',
payload: !collapsed, payload: !collapsed,
}); });
const event = document.createEvent('HTMLEvents');
event.initEvent('resize', true, false);
window.dispatchEvent(event);
} }
handleNoticeClear = (type) => { handleNoticeClear = (type) => {
message.success(`ζΈ…η©ΊδΊ†${type}`); message.success(`ζΈ…η©ΊδΊ†${type}`);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment