import * as React from 'react'; import classNames from 'classnames'; import { SiderProps } from './Sider'; import { ConfigConsumer, ConfigConsumerProps } from '../config-provider'; export interface GeneratorProps { suffixCls: string; tagName: 'header' | 'footer' | 'main' | 'section'; displayName: string; } export interface BasicProps extends React.HTMLAttributes { prefixCls?: string; hasSider?: boolean; } export interface LayoutContextProps { siderHook: { addSider: (id: string) => void; removeSider: (id: string) => void; }; } export const LayoutContext = React.createContext({ siderHook: { addSider: () => null, removeSider: () => null, }, }); interface BasicPropsWithTagName extends BasicProps { tagName: 'header' | 'footer' | 'main' | 'section'; } function generator({ suffixCls, tagName, displayName }: GeneratorProps) { return (BasicComponent: any) => { return class Adapter extends React.Component { static displayName: string = displayName; static Header: any; static Footer: any; static Content: any; static Sider: any; renderComponent = ({ getPrefixCls }: ConfigConsumerProps) => { const { prefixCls: customizePrefixCls } = this.props; const prefixCls = getPrefixCls(suffixCls, customizePrefixCls); return ; }; render() { return {this.renderComponent}; } }; }; } const Basic = (props: BasicPropsWithTagName) => { const { prefixCls, className, children, tagName, ...others } = props; const classString = classNames(prefixCls, className); return React.createElement(tagName, { className: classString, ...others }, children); }; interface BasicLayoutState { siders: string[]; } class BasicLayout extends React.Component { state = { siders: [] }; getSiderHook() { return { addSider: (id: string) => { this.setState(state => ({ siders: [...state.siders, id], })); }, removeSider: (id: string) => { this.setState(state => ({ siders: state.siders.filter(currentId => currentId !== id), })); }, }; } renderComponent = ({ direction }: ConfigConsumerProps) => { const { prefixCls, className, children, hasSider, tagName: Tag, ...others } = this.props; const classString = classNames( prefixCls, { [`${prefixCls}-has-sider`]: typeof hasSider === 'boolean' ? hasSider : this.state.siders.length > 0, [`${prefixCls}-rtl`]: direction === 'rtl', }, className, ); return ( {children} ); }; render() { return {this.renderComponent}; } } const Layout: React.ComponentClass & { Header: React.ComponentClass; Footer: React.ComponentClass; Content: React.ComponentClass; Sider: React.ComponentClass; } = generator({ suffixCls: 'layout', tagName: 'section', displayName: 'Layout', })(BasicLayout); const Header = generator({ suffixCls: 'layout-header', tagName: 'header', displayName: 'Header', })(Basic); const Footer = generator({ suffixCls: 'layout-footer', tagName: 'footer', displayName: 'Footer', })(Basic); const Content = generator({ suffixCls: 'layout-content', tagName: 'main', displayName: 'Content', })(Basic); Layout.Header = Header; Layout.Footer = Footer; Layout.Content = Content; export default Layout;