Commit 15c8853a authored by ι™ˆεΈ…'s avatar ι™ˆεΈ…

Optimization: Robust code

parent b0be02b1
...@@ -165,12 +165,18 @@ export default { ...@@ -165,12 +165,18 @@ export default {
component: './Account/Center/Center', component: './Account/Center/Center',
routes: [ routes: [
{ path: '/account/center', redirect: '/account/center/articles' }, { path: '/account/center', redirect: '/account/center/articles' },
{ path: '/account/center/articles', component: './Account/Center/Articles' }, {
path: '/account/center/articles',
component: './Account/Center/Articles',
},
{ {
path: '/account/center/applications', path: '/account/center/applications',
component: './Account/Center/Applications', component: './Account/Center/Applications',
}, },
{ path: '/account/center/projects', component: './Account/Center/Projects' }, {
path: '/account/center/projects',
component: './Account/Center/Projects',
},
], ],
}, },
{ {
...@@ -179,7 +185,10 @@ export default { ...@@ -179,7 +185,10 @@ export default {
component: './Account/Settings/Info', component: './Account/Settings/Info',
routes: [ routes: [
{ path: '/account/settings', redirect: '/account/settings/base' }, { path: '/account/settings', redirect: '/account/settings/base' },
{ path: '/account/settings/base', component: './Account/Settings/BaseView' }, {
path: '/account/settings/base',
component: './Account/Settings/BaseView',
},
{ {
path: '/account/settings/security', path: '/account/settings/security',
component: './Account/Settings/SecurityView', component: './Account/Settings/SecurityView',
......
...@@ -30,10 +30,11 @@ export default class ActiveChart extends Component { ...@@ -30,10 +30,11 @@ export default class ActiveChart extends Component {
componentWillUnmount() { componentWillUnmount() {
clearTimeout(this.timer); clearTimeout(this.timer);
cancelAnimationFrame(this.requestRef);
} }
loopData = () => { loopData = () => {
requestAnimationFrame(() => { this.requestRef = requestAnimationFrame(() => {
this.timer = setTimeout(() => { this.timer = setTimeout(() => {
this.setState( this.setState(
{ {
......
...@@ -22,7 +22,7 @@ export default class Pie extends Component { ...@@ -22,7 +22,7 @@ export default class Pie extends Component {
window.addEventListener( window.addEventListener(
'resize', 'resize',
() => { () => {
requestAnimationFrame(() => this.resize()); this.requestRef = requestAnimationFrame(() => this.resize());
}, },
{ passive: true } { passive: true }
); );
...@@ -38,6 +38,7 @@ export default class Pie extends Component { ...@@ -38,6 +38,7 @@ export default class Pie extends Component {
} }
componentWillUnmount() { componentWillUnmount() {
window.cancelAnimationFrame(this.requestRef);
window.removeEventListener('resize', this.resize); window.removeEventListener('resize', this.resize);
this.resize.cancel(); this.resize.cancel();
} }
......
...@@ -35,11 +35,12 @@ class TagCloud extends Component { ...@@ -35,11 +35,12 @@ class TagCloud extends Component {
componentWillUnmount() { componentWillUnmount() {
this.isUnmount = true; this.isUnmount = true;
window.cancelAnimationFrame(this.requestRef);
window.removeEventListener('resize', this.resize); window.removeEventListener('resize', this.resize);
} }
resize = () => { resize = () => {
requestAnimationFrame(() => { this.requestRef = requestAnimationFrame(() => {
this.renderChart(); this.renderChart();
}); });
}; };
......
...@@ -24,7 +24,8 @@ class SettingDarwer extends PureComponent { ...@@ -24,7 +24,8 @@ class SettingDarwer extends PureComponent {
const { const {
setting: { themeColor, colorWeak }, setting: { themeColor, colorWeak },
} = this.props; } = this.props;
if (themeColor !== '#1890FF') { // Determine if the component is remounted
if (themeColor !== '#1890FF' && themeColor !== window['antd_pro_less_color']) {
window.less.refresh().then(() => { window.less.refresh().then(() => {
this.colorChange(themeColor); this.colorChange(themeColor);
}); });
...@@ -32,9 +33,6 @@ class SettingDarwer extends PureComponent { ...@@ -32,9 +33,6 @@ class SettingDarwer extends PureComponent {
if (colorWeak === 'open') { if (colorWeak === 'open') {
document.body.className = 'colorWeak'; document.body.className = 'colorWeak';
} }
requestAnimationFrame(() => {
this.togglerContent();
});
} }
getLayOutSetting = () => { getLayOutSetting = () => {
...@@ -139,6 +137,7 @@ class SettingDarwer extends PureComponent { ...@@ -139,6 +137,7 @@ class SettingDarwer extends PureComponent {
'@input-hover-border-color': color, '@input-hover-border-color': color,
}) })
.then(() => { .then(() => {
window['antd_pro_less_color'] = color;
hideMessage(); hideMessage();
}) })
.catch(() => { .catch(() => {
...@@ -152,6 +151,7 @@ class SettingDarwer extends PureComponent { ...@@ -152,6 +151,7 @@ class SettingDarwer extends PureComponent {
const { collapse, silderTheme, themeColor, layout, colorWeak } = setting; const { collapse, silderTheme, themeColor, layout, colorWeak } = setting;
return ( return (
<Drawer <Drawer
firstEnter={true}
visible={collapse} visible={collapse}
width={273} width={273}
onClose={this.togglerContent} onClose={this.togglerContent}
......
const defaultSetting = { const defaultSetting = {
collapse: true, collapse: false,
silderTheme: 'dark', silderTheme: 'dark',
themeColor: '#1890FF', themeColor: '#1890FF',
layout: 'sidemenu', layout: 'sidemenu',
......
...@@ -63,13 +63,15 @@ const query = { ...@@ -63,13 +63,15 @@ const query = {
}; };
class BasicLayout extends React.PureComponent { class BasicLayout extends React.PureComponent {
state = {
rendering: true,
};
constructor(props) { constructor(props) {
super(props); super(props);
const { menuData } = this.props; const { menuData } = this.props;
this.getPageTitle = memoizeOne(this.getPageTitle); this.getPageTitle = memoizeOne(this.getPageTitle);
this.breadcrumbNameMap = getBreadcrumbNameMap(menuData); this.breadcrumbNameMap = getBreadcrumbNameMap(menuData);
} }
getContext() { getContext() {
const { location } = this.props; const { location } = this.props;
return { return {
...@@ -77,7 +79,6 @@ class BasicLayout extends React.PureComponent { ...@@ -77,7 +79,6 @@ class BasicLayout extends React.PureComponent {
breadcrumbNameMap: this.breadcrumbNameMap, breadcrumbNameMap: this.breadcrumbNameMap,
}; };
} }
getPageTitle = pathname => { getPageTitle = pathname => {
let currRouterData = null; let currRouterData = null;
// match params path // match params path
...@@ -142,7 +143,16 @@ class BasicLayout extends React.PureComponent { ...@@ -142,7 +143,16 @@ class BasicLayout extends React.PureComponent {
payload: collapsed, payload: collapsed,
}); });
}; };
componentDidMount() {
this.renderRef = requestAnimationFrame(() => {
this.setState({
rendering: false,
});
});
}
componentWillUnmount() {
cancelAnimationFrame(this.renderRef);
}
render() { render() {
const { const {
isMobile, isMobile,
...@@ -170,20 +180,19 @@ class BasicLayout extends React.PureComponent { ...@@ -170,20 +180,19 @@ class BasicLayout extends React.PureComponent {
</Layout> </Layout>
</Layout> </Layout>
); );
return ( return (
<React.Fragment>
<DocumentTitle title={this.getPageTitle(pathname)}> <DocumentTitle title={this.getPageTitle(pathname)}>
<ContainerQuery query={query}> <ContainerQuery query={query}>
{params => ( {params => (
<Context.Provider value={this.getContext()}> <Context.Provider value={this.getContext()}>
<div className={classNames(params)}> <div className={classNames(params)}>{layout}</div>
{layout}
<SettingDarwer />
</div>
</Context.Provider> </Context.Provider>
)} )}
</ContainerQuery> </ContainerQuery>
</DocumentTitle> </DocumentTitle>
{this.state.rendering ? null : <SettingDarwer />}
</React.Fragment>
); );
} }
} }
......
...@@ -10,14 +10,21 @@ const menuData = config['routes']; ...@@ -10,14 +10,21 @@ const menuData = config['routes'];
// Conversion router to menu. // Conversion router to menu.
function formatter(data, parentPath = '', parentAuthority, parentName) { function formatter(data, parentPath = '', parentAuthority, parentName) {
return data.map(item => { return data.map(item => {
const id = parentName ? `${parentName}.${item.name}` : `menu.${item.name}`; 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 = { const result = {
...item, ...item,
locale: id, locale,
authority: item.authority || parentAuthority, authority: item.authority || parentAuthority,
}; };
if (item.routes) { if (item.routes) {
const children = formatter(item.routes, `${parentPath}${item.path}/`, item.authority, id); const children = formatter(item.routes, `${parentPath}${item.path}/`, item.authority, locale);
// Reduce memory usage // Reduce memory usage
result.children = children; result.children = children;
} }
......
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