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.
83 lines
1.8 KiB
83 lines
1.8 KiB
4 years ago
|
---
|
||
|
order: 99
|
||
|
title:
|
||
|
zh-CN: Style debug
|
||
|
en-US: Style debug
|
||
|
debug: true
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
buggy!
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
buggy!
|
||
|
|
||
|
```jsx
|
||
|
import { Menu, Switch } from 'antd';
|
||
|
import { MailOutlined, AppstoreOutlined } from '@ant-design/icons';
|
||
|
|
||
|
const { SubMenu } = Menu;
|
||
|
|
||
|
class Sider extends React.Component {
|
||
|
state = {
|
||
|
theme: 'dark',
|
||
|
current: '1',
|
||
|
};
|
||
|
|
||
|
changeTheme = value => {
|
||
|
this.setState({
|
||
|
theme: value ? 'dark' : 'light',
|
||
|
});
|
||
|
};
|
||
|
|
||
|
handleClick = e => {
|
||
|
console.log('click ', e);
|
||
|
this.setState({
|
||
|
current: e.key,
|
||
|
});
|
||
|
};
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<>
|
||
|
<Switch
|
||
|
checked={this.state.theme === 'dark'}
|
||
|
onChange={this.changeTheme}
|
||
|
checkedChildren="Dark"
|
||
|
unCheckedChildren="Light"
|
||
|
/>
|
||
|
<br />
|
||
|
<br />
|
||
|
<Menu
|
||
|
theme={this.state.theme}
|
||
|
onClick={this.handleClick}
|
||
|
selectedKeys={[this.state.current]}
|
||
|
mode="horizontal"
|
||
|
>
|
||
|
<SubMenu key="sub1" icon={<MailOutlined />} title="Navigation One Long Long Long Long">
|
||
|
<Menu.Item key="1">Option 1</Menu.Item>
|
||
|
<Menu.Item key="2">Option 2</Menu.Item>
|
||
|
<Menu.Item key="3">Option 3</Menu.Item>
|
||
|
<Menu.Item key="4">Option 4</Menu.Item>
|
||
|
</SubMenu>
|
||
|
<SubMenu key="sub2" icon={<AppstoreOutlined />} title="Navigation Two">
|
||
|
<Menu.Item key="5">Option 5</Menu.Item>
|
||
|
<Menu.Item key="6">Option 6</Menu.Item>
|
||
|
<SubMenu key="sub3" title="Submenu">
|
||
|
<Menu.Item key="7">Option 7</Menu.Item>
|
||
|
<Menu.Item key="8">Option 8</Menu.Item>
|
||
|
</SubMenu>
|
||
|
</SubMenu>
|
||
|
<Menu.Item key="11">Option 11</Menu.Item>
|
||
|
<Menu.Item key="12">Option 12</Menu.Item>
|
||
|
</Menu>
|
||
|
</>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ReactDOM.render(<Sider />, mountNode);
|
||
|
```
|