2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
2016-08-18 17:36:43 -05:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
|
|
|
|
|
|
export default class HelpController extends React.Component {
|
|
|
|
|
static get propTypes() {
|
|
|
|
|
return {
|
|
|
|
|
children: React.PropTypes.node.isRequired
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentWillUpdate() {
|
|
|
|
|
ReactDOM.findDOMNode(this).scrollIntoView();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
render() {
|
|
|
|
|
return (
|
|
|
|
|
<div className='help'>
|
|
|
|
|
<div className='container col-sm-10 col-sm-offset-1'>
|
|
|
|
|
{this.props.children}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-04-12 08:27:57 -04:00
|
|
|
}
|