"DashboardWorkplace/src/components/Radar/autoHeight.tsx" did not exist on "061a1e7d644125e9a379b4bc5dde13d525c89817"
autoHeight.tsx 1.91 KB
Newer Older
陈帅's avatar
陈帅 committed
1 2 3 4 5 6 7 8
import React from 'react';

export type IReactComponent<P = any> =
  | React.StatelessComponent<P>
  | React.ComponentClass<P>
  | React.ClassicComponentClass<P>;

function computeHeight(node: HTMLDivElement) {
陈帅's avatar
陈帅 committed
9
  node.style.height = '100%';
陈帅's avatar
陈帅 committed
10 11 12 13 14 15 16 17 18 19 20 21
  const totalHeight = parseInt(getComputedStyle(node).height + '', 10);
  const padding =
    parseInt(getComputedStyle(node).paddingTop + '', 10) +
    parseInt(getComputedStyle(node).paddingBottom + '', 10);
  return totalHeight - padding;
}

function getAutoHeight(n: HTMLDivElement) {
  if (!n) {
    return 0;
  }

陈帅's avatar
陈帅 committed
22
  const node = n;
陈帅's avatar
陈帅 committed
23 24

  let height = computeHeight(node);
陈帅's avatar
陈帅 committed
25 26 27
  const parentNode = node.parentNode as HTMLDivElement;
  if (parentNode) {
    height = computeHeight(parentNode);
陈帅's avatar
陈帅 committed
28 29 30 31 32 33 34 35 36 37 38
  }

  return height;
}

interface IAutoHeightProps {
  height?: number;
}

function autoHeight() {
  return function<P extends IAutoHeightProps>(
陈帅's avatar
陈帅 committed
39
    WrappedComponent: React.ComponentClass<P> | React.SFC<P>,
陈帅's avatar
陈帅 committed
40 41 42 43 44 45 46 47 48
  ): React.ComponentClass<P> {
    class AutoHeightComponent extends React.Component<P & IAutoHeightProps> {
      state = {
        computedHeight: 0,
      };
      root!: HTMLDivElement;
      componentDidMount() {
        const { height } = this.props;
        if (!height) {
陈帅's avatar
陈帅 committed
49
          let h = getAutoHeight(this.root);
陈帅's avatar
陈帅 committed
50 51 52
          // eslint-disable-next-line
          this.setState({ computedHeight: h });
          if (h < 1) {
陈帅's avatar
陈帅 committed
53
            h = getAutoHeight(this.root);
陈帅's avatar
陈帅 committed
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
            this.setState({ computedHeight: h });
          }
        }
      }
      handleRoot = (node: HTMLDivElement) => {
        this.root = node;
      };
      render() {
        const { height } = this.props;
        const { computedHeight } = this.state;
        const h = height || computedHeight;
        return (
          <div ref={this.handleRoot}>
            {h > 0 && <WrappedComponent {...this.props} height={h} />}
          </div>
        );
      }
    }
    return AutoHeightComponent;
  };
}
export default autoHeight;