|
| 1 | +import classNames from 'classnames'; |
| 2 | +import getHeight from 'dom-helpers/query/height'; |
| 3 | +import getOffset from 'dom-helpers/query/offset'; |
| 4 | +import getOffsetParent from 'dom-helpers/query/offsetParent'; |
| 5 | +import getScrollTop from 'dom-helpers/query/scrollTop'; |
| 6 | +import requestAnimationFrame from 'dom-helpers/util/requestAnimationFrame'; |
| 7 | +import React from 'react'; |
| 8 | +import ReactDOM from 'react-dom'; |
| 9 | + |
| 10 | +import addEventListener from './utils/addEventListener'; |
| 11 | +import getDocumentHeight from './utils/getDocumentHeight'; |
| 12 | +import ownerDocument from './utils/ownerDocument'; |
| 13 | +import ownerWindow from './utils/ownerWindow'; |
| 14 | + |
| 15 | +/** |
| 16 | + * The `<Affix/>` component toggles `position: fixed;` on and off, emulating |
| 17 | + * the effect found with `position: sticky;`. |
| 18 | + */ |
| 19 | +class Affix extends React.Component { |
| 20 | + constructor(props, context) { |
| 21 | + super(props, context); |
| 22 | + |
| 23 | + this.state = { |
| 24 | + affixed: 'top', |
| 25 | + position: null, |
| 26 | + top: null |
| 27 | + }; |
| 28 | + |
| 29 | + this._needPositionUpdate = false; |
| 30 | + } |
| 31 | + |
| 32 | + componentDidMount() { |
| 33 | + this._isMounted = true; |
| 34 | + |
| 35 | + this._windowScrollListener = addEventListener( |
| 36 | + ownerWindow(this), 'scroll', () => this.onWindowScroll() |
| 37 | + ); |
| 38 | + this._documentClickListener = addEventListener( |
| 39 | + ownerDocument(this), 'click', () => this.onDocumentClick() |
| 40 | + ); |
| 41 | + |
| 42 | + this.onUpdate(); |
| 43 | + } |
| 44 | + |
| 45 | + componentWillReceiveProps() { |
| 46 | + this._needPositionUpdate = true; |
| 47 | + } |
| 48 | + |
| 49 | + componentDidUpdate() { |
| 50 | + if (this._needPositionUpdate) { |
| 51 | + this._needPositionUpdate = false; |
| 52 | + this.onUpdate(); |
| 53 | + } |
| 54 | + } |
| 55 | + |
| 56 | + componentWillUnmount() { |
| 57 | + this._isMounted = false; |
| 58 | + |
| 59 | + if (this._windowScrollListener) { |
| 60 | + this._windowScrollListener.remove(); |
| 61 | + } |
| 62 | + if (this._documentClickListener) { |
| 63 | + this._documentClickListener.remove(); |
| 64 | + } |
| 65 | + } |
| 66 | + |
| 67 | + onWindowScroll() { |
| 68 | + this.onUpdate(); |
| 69 | + } |
| 70 | + |
| 71 | + onDocumentClick() { |
| 72 | + requestAnimationFrame(() => this.onUpdate()); |
| 73 | + } |
| 74 | + |
| 75 | + onUpdate() { |
| 76 | + if (!this._isMounted) { |
| 77 | + return; |
| 78 | + } |
| 79 | + |
| 80 | + const {offsetTop, viewportOffsetTop} = this.props; |
| 81 | + const scrollTop = getScrollTop(ownerWindow(this)); |
| 82 | + const positionTopMin = scrollTop + (viewportOffsetTop || 0); |
| 83 | + |
| 84 | + if (positionTopMin <= offsetTop) { |
| 85 | + this.updateState('top', null, null); |
| 86 | + return; |
| 87 | + } |
| 88 | + |
| 89 | + if (positionTopMin > this.getPositionTopMax()) { |
| 90 | + if (this.state.affixed === 'bottom') { |
| 91 | + this.updateStateAtBottom(); |
| 92 | + } else { |
| 93 | + // Setting position away from `fixed` can change the offset parent of |
| 94 | + // the affix, so we can't calculate the correct position until after |
| 95 | + // we've updated its position. |
| 96 | + this.setState({ |
| 97 | + affixed: 'bottom', |
| 98 | + position: 'absolute', |
| 99 | + top: null |
| 100 | + }, () => { |
| 101 | + if (!this._isMounted) { |
| 102 | + return; |
| 103 | + } |
| 104 | + |
| 105 | + this.updateStateAtBottom(); |
| 106 | + }); |
| 107 | + } |
| 108 | + return; |
| 109 | + } |
| 110 | + |
| 111 | + this.updateState('affix', 'fixed', viewportOffsetTop); |
| 112 | + } |
| 113 | + |
| 114 | + getPositionTopMax() { |
| 115 | + const documentHeight = getDocumentHeight(ownerDocument(this)); |
| 116 | + const height = getHeight(ReactDOM.findDOMNode(this)); |
| 117 | + |
| 118 | + return documentHeight - height - this.props.offsetBottom; |
| 119 | + } |
| 120 | + |
| 121 | + updateState(affixed, position, top) { |
| 122 | + if ( |
| 123 | + affixed === this.state.affixed && |
| 124 | + position === this.state.position && |
| 125 | + top === this.state.top |
| 126 | + ) { |
| 127 | + return; |
| 128 | + } |
| 129 | + |
| 130 | + this.setState({affixed, position, top}); |
| 131 | + } |
| 132 | + |
| 133 | + updateStateAtBottom() { |
| 134 | + const positionTopMax = this.getPositionTopMax(); |
| 135 | + const offsetParent = getOffsetParent(ReactDOM.findDOMNode(this)); |
| 136 | + const parentTop = getOffset(offsetParent).top; |
| 137 | + |
| 138 | + this.updateState('bottom', 'absolute', positionTopMax - parentTop); |
| 139 | + } |
| 140 | + |
| 141 | + render() { |
| 142 | + const child = React.Children.only(this.props.children); |
| 143 | + const {className, style} = child.props; |
| 144 | + |
| 145 | + const {affixed, position, top} = this.state; |
| 146 | + const positionStyle = {position, top}; |
| 147 | + |
| 148 | + let affixClassName; |
| 149 | + let affixStyle; |
| 150 | + if (affixed === 'top') { |
| 151 | + affixClassName = this.props.topClassName; |
| 152 | + affixStyle = this.props.topStyle; |
| 153 | + } else if (affixed === 'bottom') { |
| 154 | + affixClassName = this.props.bottomClassName; |
| 155 | + affixStyle = this.props.bottomStyle; |
| 156 | + } else { |
| 157 | + affixClassName = this.props.affixClassName; |
| 158 | + affixStyle = this.props.affixStyle; |
| 159 | + } |
| 160 | + |
| 161 | + return React.cloneElement(child, { |
| 162 | + className: classNames(affixClassName, className), |
| 163 | + style: {...positionStyle, ...affixStyle, ...style} |
| 164 | + }); |
| 165 | + } |
| 166 | +} |
| 167 | + |
| 168 | +Affix.propTypes = { |
| 169 | + /** |
| 170 | + * Pixels to offset from top of screen when calculating position |
| 171 | + */ |
| 172 | + offsetTop: React.PropTypes.number, |
| 173 | + /** |
| 174 | + * When affixed, pixels to offset from top of viewport |
| 175 | + */ |
| 176 | + viewportOffsetTop: React.PropTypes.number, |
| 177 | + /** |
| 178 | + * Pixels to offset from bottom of screen when calculating position |
| 179 | + */ |
| 180 | + offsetBottom: React.PropTypes.number, |
| 181 | + /** |
| 182 | + * CSS class or classes to apply when at top |
| 183 | + */ |
| 184 | + topClassName: React.PropTypes.string, |
| 185 | + /** |
| 186 | + * Style to apply when at top |
| 187 | + */ |
| 188 | + topStyle: React.PropTypes.object, |
| 189 | + /** |
| 190 | + * CSS class or classes to apply when affixed |
| 191 | + */ |
| 192 | + affixClassName: React.PropTypes.string, |
| 193 | + /** |
| 194 | + * Style to apply when affixed |
| 195 | + */ |
| 196 | + affixStyle: React.PropTypes.object, |
| 197 | + /** |
| 198 | + * CSS class or classes to apply when at bottom |
| 199 | + */ |
| 200 | + bottomClassName: React.PropTypes.string, |
| 201 | + /** |
| 202 | + * Style to apply when at bottom |
| 203 | + */ |
| 204 | + bottomStyle: React.PropTypes.object |
| 205 | +}; |
| 206 | + |
| 207 | +Affix.defaultProps = { |
| 208 | + offsetTop: 0, |
| 209 | + viewportOffsetTop: null, |
| 210 | + offsetBottom: 0 |
| 211 | +}; |
| 212 | + |
| 213 | +export default Affix; |
0 commit comments