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.
109 lines
2.4 KiB
109 lines
2.4 KiB
import React, { PureComponent } from 'react';
|
|
import { Spin } from 'antd';
|
|
import { connect } from 'dva';
|
|
import { enquireScreen, unenquireScreen } from 'enquire-js';
|
|
import BasicLayout from './BasicLayout';
|
|
// TODO: should use this.props.routes
|
|
import routerConfig from '../../config/router.config';
|
|
|
|
// Conversion router to menu.
|
|
function formatter(data, parentPath = '', parentAuthority, parentName) {
|
|
return data.map(item => {
|
|
let locale = 'menu';
|
|
if (parentName && item.name) {
|
|
locale = `${parentName}.${item.name}`;
|
|
} else if (item.name) {
|
|
locale = `menu.${item.name}`;
|
|
} else if (parentName) {
|
|
locale = parentName;
|
|
}
|
|
const result = {
|
|
...item,
|
|
locale,
|
|
authority: item.authority || parentAuthority,
|
|
};
|
|
if (item.routes) {
|
|
const children = formatter(item.routes, `${parentPath}${item.path}/`, item.authority, locale);
|
|
// Reduce memory usage
|
|
result.children = children;
|
|
}
|
|
delete result.routes;
|
|
return result;
|
|
});
|
|
}
|
|
// get meun map data
|
|
const MenuData = formatter(routerConfig[1].routes);
|
|
|
|
class LoadingPage extends PureComponent {
|
|
state = {
|
|
loading: true,
|
|
isMobile: false,
|
|
};
|
|
|
|
componentDidMount() {
|
|
const { dispatch } = this.props;
|
|
this.enquireHandler = enquireScreen(mobile => {
|
|
const { isMobile } = this.state;
|
|
if (isMobile !== mobile) {
|
|
this.setState({
|
|
isMobile: mobile,
|
|
});
|
|
}
|
|
});
|
|
dispatch({
|
|
type: 'user/fetchCurrent',
|
|
});
|
|
this.hideLoading();
|
|
this.initSetting();
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
unenquireScreen(this.enquireHandler);
|
|
}
|
|
|
|
hideLoading() {
|
|
this.setState({
|
|
loading: false,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* get setting from url params
|
|
*/
|
|
initSetting() {
|
|
const { dispatch } = this.props;
|
|
dispatch({
|
|
type: 'setting/getSetting',
|
|
});
|
|
}
|
|
|
|
render() {
|
|
const { loading, isMobile } = this.state;
|
|
if (loading) {
|
|
return (
|
|
<div
|
|
style={{
|
|
width: '100%',
|
|
height: '100%',
|
|
margin: 'auto',
|
|
paddingTop: 50,
|
|
textAlign: 'center',
|
|
}}
|
|
>
|
|
<Spin size="large" />
|
|
</div>
|
|
);
|
|
}
|
|
return (
|
|
<BasicLayout
|
|
isMobile={isMobile}
|
|
menuData={MenuData}
|
|
routerData={routerConfig}
|
|
redirectData={[]}
|
|
{...this.props}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default connect()(LoadingPage);
|
|
|