-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
116 lines (98 loc) · 2.43 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import React, {Component, PropTypes} from 'react';
export default class ResizeDetector extends Component {
static defaultProps = {
onResize: () => console.error('ResizeDetector:onResize'),
};
static propTypes = {
onResize: PropTypes.func.isRequired,
};
componentDidMount() {
this.reset();
}
state = {
expandChildHeight: 0,
expandChildWidth: 0,
expandScrollLeft: 0,
expandScrollTop: 0,
shrinkScrollTop: 0,
shrinkScrollLeft: 0,
lastWidth: 0,
lastHeight: 0,
};
reset = () => {
const {
expand,
shrink,
container,
} = this;
this.setState({
expandChildHeight: expand.offsetHeight + 10,
expandChildWidth: expand.offsetWidth + 10,
lastWidth: container.parentElement.offsetWidth,
lastHeight: container.parentElement.offsetHeight,
});
expand.scrollLeft = expand.scrollWidth;
expand.scrollTop = expand.scrollHeight;
shrink.scrollLeft = shrink.scrollWidth;
shrink.scrollTop = shrink.scrollHeight;
};
handleScroll = (evt) => {
const {container, state} = this;
if (
container.parentElement.offsetWidth != state.lastWidth ||
container.parentElement.offsetHeight != state.lastHeight
) {
this.props.onResize();
}
this.reset();
};
render() {
const {state} = this;
const parentStyle = {
position: 'absolute',
left: 0,
top: 0,
right: 0,
bottom: 0,
overflow: 'scroll',
zIndex: -1,
visibility: 'hidden',
};
const childStyle = {
position: 'absolute',
left: 0,
top: 0,
};
const expandChildStyle = {
...childStyle,
width: state.expandChildWidth,
height: state.expandChildHeight,
};
const shrinkChildStyle = {
...childStyle,
width: '200%',
height: '200%',
};
return (
<resize-sensor
style={parentStyle}
ref={(ref) => this.container = React.findDOMNode(ref)}
>
<expand
style={parentStyle}
ref={(ref) => this.expand = React.findDOMNode(ref)}
onScroll={this.handleScroll}
>
<expand-child style={expandChildStyle}/>
</expand>
<shrink
style={parentStyle}
onScroll={this.handleScroll}
ref={(ref) => this.shrink = React.findDOMNode(ref)}
>
<shrink-child style={shrinkChildStyle}/>
</shrink>
</resize-sensor>
);
}
}