diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-03-10 15:13:24 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-03-10 15:13:24 +0100 |
commit | 4a6edd92e661fa228f6f8607f045ef5489f58a05 (patch) | |
tree | 7a2134ac48cce29694313e5a5b3105f2cf7e93ff /web/src/js/components/common.js | |
parent | b413a052f96896d387f58e903203cf2e29c6f1f6 (diff) | |
parent | 1c0496e051d8b1af297138732475b1689ada5eb8 (diff) | |
download | mitmproxy-4a6edd92e661fa228f6f8607f045ef5489f58a05.tar.gz mitmproxy-4a6edd92e661fa228f6f8607f045ef5489f58a05.tar.bz2 mitmproxy-4a6edd92e661fa228f6f8607f045ef5489f58a05.zip |
Merge pull request #1004 from gzzhanghao/vscroll
[web] VirtualScroll and AutoScroll helper
Diffstat (limited to 'web/src/js/components/common.js')
-rw-r--r-- | web/src/js/components/common.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/web/src/js/components/common.js b/web/src/js/components/common.js index 23e0a434..ad97ab38 100644 --- a/web/src/js/components/common.js +++ b/web/src/js/components/common.js @@ -2,34 +2,6 @@ import React from "react" import ReactDOM from "react-dom" import _ from "lodash" -// http://blog.vjeux.com/2013/javascript/scroll-position-with-react.html (also contains inverse example) -export var AutoScrollMixin = { - componentWillUpdate: function () { - var node = ReactDOM.findDOMNode(this); - this._shouldScrollBottom = ( - node.scrollTop !== 0 && - node.scrollTop + node.clientHeight === node.scrollHeight - ); - }, - componentDidUpdate: function () { - if (this._shouldScrollBottom) { - var node = ReactDOM.findDOMNode(this); - node.scrollTop = node.scrollHeight; - } - } -}; - - -export var StickyHeadMixin = { - adjustHead: function () { - // Abusing CSS transforms to set the element - // referenced as head into some kind of position:sticky. - var head = ReactDOM.findDOMNode(this.refs.head); - head.style.transform = "translate(0," + ReactDOM.findDOMNode(this).scrollTop + "px)"; - } -}; - - export var Router = { contextTypes: { location: React.PropTypes.object, |