"DashboardWorkplace/src/components/Radar/autoHeight.tsx" did not exist on "74b673e58ce549e0c9c3d9bc5433c044a29d220b"
autoHeight.tsx 1.92 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
  const totalHeight = parseInt(`${getComputedStyle(node).height}`, 10);
陈帅's avatar
陈帅 committed
11
  const padding =
陈帅's avatar
陈帅 committed
12 13
    parseInt(`${getComputedStyle(node).paddingTop}`, 10) +
    parseInt(`${getComputedStyle(node).paddingBottom}`, 10);
陈帅's avatar
陈帅 committed
14 15 16 17 18 19 20 21
  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
  }

  return height;
}

interface IAutoHeightProps {
  height?: number;
}

function autoHeight() {
陈帅's avatar
陈帅 committed
38
  return function<P extends IAutoHeightProps> (
陈帅's avatar
陈帅 committed
39
    WrappedComponent: React.ComponentClass<P> | React.SFC<P>,
陈帅's avatar
陈帅 committed
40 41 42 43 44
  ): React.ComponentClass<P> {
    class AutoHeightComponent extends React.Component<P & IAutoHeightProps> {
      state = {
        computedHeight: 0,
      };
陈帅's avatar
陈帅 committed
45

陈帅's avatar
陈帅 committed
46
      root!: HTMLDivElement;
陈帅's avatar
陈帅 committed
47

陈帅's avatar
陈帅 committed
48 49 50
      componentDidMount() {
        const { height } = this.props;
        if (!height) {
陈帅's avatar
陈帅 committed
51
          let h = getAutoHeight(this.root);
陈帅's avatar
陈帅 committed
52 53 54
          // eslint-disable-next-line
          this.setState({ computedHeight: h });
          if (h < 1) {
陈帅's avatar
陈帅 committed
55
            h = getAutoHeight(this.root);
陈帅's avatar
陈帅 committed
56 57 58 59
            this.setState({ computedHeight: h });
          }
        }
      }
陈帅's avatar
陈帅 committed
60

陈帅's avatar
陈帅 committed
61 62 63
      handleRoot = (node: HTMLDivElement) => {
        this.root = node;
      };
陈帅's avatar
陈帅 committed
64

陈帅's avatar
陈帅 committed
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
      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;