Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix log position of compile/upload tabs on first show #1494

Merged
merged 1 commit into from
Oct 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion packages/xod-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"lib": "./dist"
},
"dependencies": {
"autoscroll-react": "git+https://github.com/xodio/autoscroll-react.git#cbb3422461a28b40ca082d6a5f33f667508c3288",
"classnames": "^2.2.5",
"codemirror": "^5.31.0",
"escape-string-regexp": "^1.0.5",
Expand Down
12 changes: 0 additions & 12 deletions packages/xod-client/src/debugger/components/Autoscrolled.jsx

This file was deleted.

32 changes: 23 additions & 9 deletions packages/xod-client/src/debugger/containers/Log.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,38 @@ import * as selectors from '../selectors';
import * as actions from '../actions';
import { LOG_TAB_TYPE } from '../constants';

import Autoscrolled from '../components/Autoscrolled';
import Autoscroll from '../../utils/components/Autoscroll';

class Log extends React.PureComponent {
constructor(props) {
super(props);

this.logEnd = null;
this.autoscrollRef = null;

this.onFollowLog = this.onFollowLog.bind(this);
this.scrollToBottom = this.scrollToBottom.bind(this);
}

onFollowLog() {
if (this.logEnd) {
this.logEnd.scrollIntoView({ behavior: 'smooth' });
}
componentDidMount() {
// Postpone scrolling to the next tick
// so content could be rendered and then
// it will scroll to the right position
setTimeout(() => {
this.scrollToBottom();
}, 0);
}

onFollowLog() {
this.scrollToBottom();
this.props.stopSkippingNewLogLines();
}

scrollToBottom() {
if (this.autoscrollRef) {
this.autoscrollRef.scrollDown();
}
}

render() {
const {
log,
Expand All @@ -39,22 +52,23 @@ class Log extends React.PureComponent {
} = this.props;

return (
<Autoscrolled
<Autoscroll
className="log"
ref={el => (this.autoscrollRef = el)}
onScrolledFromBottom={
isSkipOnScrollEnabled ? startSkippingNewLogLines : noop
}
>
{log}
{R.isEmpty(error) ? null : <div className="error">{error}</div>}
<div ref={el => (this.logEnd = el)} />
{isSkipOnScrollEnabled && isSkippingNewSerialLogLines ? (
<div className="skipped">
<button className="Button Button--small" onClick={this.onFollowLog}>
Follow log ({numberOfSkippedSerialLogLines} new lines skipped)
</button>
</div>
) : null}
</Autoscrolled>
</Autoscroll>
);
}
}
Expand Down
100 changes: 100 additions & 0 deletions packages/xod-client/src/utils/components/Autoscroll.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
/*
Edited fork of `autoscroll-react`: https://github.com/thk2b/autoscroll-react
Changes:
- Added `onScrolledFromBottom` property
- Added `scrollDown` method
*/

import * as R from 'ramda';
import React from 'react';
import PropTypes from 'prop-types';

/* eslint-disable no-param-reassign */
const hasOverflow = el => el.clientHeight < el.scrollHeight;
const isScrolledDown = (el, threshold) => {
const bottom = el.scrollTop + el.clientHeight;
return bottom >= el.scrollHeight - threshold;
};
const isScrolledUp = el => el.scrollTop === 0;
const scrollDown = el => (el.scrollTop = el.scrollHeight - el.clientHeight);
const scrollDownBy = (amount, el) => (el.scrollTop += amount);
/* eslint-enable no-param-reassign */

const isScrolledDownThreshold = 0;

class Autoscroll extends React.PureComponent {
constructor(props) {
super(props);
this._isScrolledDown = true; /* whether the user has scrolled down */
this._el = null;
this._scrollHeight = null;
this._isScrolledUp = null;
}
componentDidMount() {
this.scrollDownIfNeeded();
}
componentWillUpdate() {
this._scrollHeight = this._el.scrollHeight;
this._isScrolledUp = isScrolledUp(this._el);
}
componentDidUpdate() {
/* if the list is scrolled all the way up and new items are added, preserve the current scroll position */
if (this._isScrolledUp && this._scrollHeight !== null) {
/* the scroll height increased by this much during the update */
const difference = this._el.scrollHeight - this._scrollHeight;
this._scrollHeight = null;
scrollDownBy(difference, this._el);
} else this.scrollDownIfNeeded();
}
scrollDownIfNeeded() {
if (this._isScrolledDown && hasOverflow(this._el)) {
scrollDown(this._el);
}
}
scrollDown() {
scrollDown(this._el);
}
handleScroll(e) {
const nextIsScrolledDown = isScrolledDown(
this._el,
isScrolledDownThreshold
);
if (
!nextIsScrolledDown &&
this._isScrolledDown &&
this.props.onScrolledFromBottom
) {
this.props.onScrolledFromBottom(e);
}
this._isScrolledDown = nextIsScrolledDown;

if (isScrolledUp(this._el) && this.props.onScrolledTop) {
this.props.onScrolledTop(e);
}

if (this.props.onScrolled) {
this.props.onScrolled(e);
}
}
render() {
const restProps = R.omit(
['onScrolled', 'onScrolledTop', 'onScrolledFromBottom'],
this.props
);
return (
<div
{...restProps}
ref={el => (this._el = el)}
onScroll={e => this.handleScroll(e)}
/>
);
}
}

Autoscroll.propTypes = {
onScrolled: PropTypes.func,
onScrolledTop: PropTypes.func,
onScrolledFromBottom: PropTypes.func,
};

export default Autoscroll;
4 changes: 0 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1070,10 +1070,6 @@ autoprefixer@^7.1.6:
postcss "^6.0.14"
postcss-value-parser "^3.2.3"

"autoscroll-react@git+https://github.com/xodio/autoscroll-react.git#cbb3422461a28b40ca082d6a5f33f667508c3288":
version "3.2.0"
resolved "git+https://github.com/xodio/autoscroll-react.git#cbb3422461a28b40ca082d6a5f33f667508c3288"

aws-sign2@~0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.6.0.tgz#14342dd38dbcc94d0e5b87d763cd63612c0e794f"
Expand Down