mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
56 lines
1.2 KiB
TypeScript
56 lines
1.2 KiB
TypeScript
|
import React from 'react';
|
||
|
import classNames from 'classnames';
|
||
|
|
||
|
export interface BasicProps {
|
||
|
style?: React.CSSProperties;
|
||
|
prefixCls?: string;
|
||
|
className?: string;
|
||
|
}
|
||
|
|
||
|
function generator(props) {
|
||
|
return (Basic) : any => {
|
||
|
return class Adapter extends React.Component<BasicProps, any> {
|
||
|
static Header: any;
|
||
|
static Footer: any;
|
||
|
static Content: any;
|
||
|
static Sider: any;
|
||
|
render() {
|
||
|
const { prefixCls } = props;
|
||
|
return <Basic prefixCls={prefixCls} {...this.props}/>;
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|
||
|
class Basic extends React.Component<BasicProps, any> {
|
||
|
render() {
|
||
|
const { prefixCls, className, ...others } = this.props;
|
||
|
const divCls = classNames(className, prefixCls);
|
||
|
return (
|
||
|
<div className={divCls} {...others} />
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const Layout = generator({
|
||
|
prefixCls: 'ant-layout',
|
||
|
})(Basic);
|
||
|
|
||
|
const Header = generator({
|
||
|
prefixCls: 'ant-layout-header',
|
||
|
})(Basic);
|
||
|
|
||
|
const Footer = generator({
|
||
|
prefixCls: 'ant-layout-footer',
|
||
|
})(Basic);
|
||
|
|
||
|
const Content = generator({
|
||
|
prefixCls: 'ant-layout-content',
|
||
|
})(Basic);
|
||
|
|
||
|
Layout.Header = Header;
|
||
|
Layout.Footer = Footer;
|
||
|
Layout.Content = Content;
|
||
|
|
||
|
export default Layout;
|