1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-30 21:52:08 +02:00
onion/js/components/ascribe_panel/action_panel.js

60 lines
1.6 KiB
JavaScript
Raw Normal View History

2015-08-06 13:56:37 +02:00
'use strict';
import React from 'react';
import classnames from 'classnames';
2015-08-06 13:56:37 +02:00
let ActionPanel = React.createClass({
propTypes: {
title: React.PropTypes.string,
2015-08-10 11:57:38 +02:00
content: React.PropTypes.oneOfType([
React.PropTypes.string,
React.PropTypes.element
]),
2015-08-06 13:56:37 +02:00
buttons: React.PropTypes.element,
onClick: React.PropTypes.func,
ignoreFocus: React.PropTypes.bool
},
getInitialState() {
return {
isFocused: false
};
},
handleFocus() {
// if ignoreFocus (bool) is defined, then just ignore focusing on
// the property and input
if(this.props.ignoreFocus) {
return;
}
// if onClick is defined from the outside,
// just call it
if(this.props.onClick) {
this.props.onClick();
}
this.refs.input.getDOMNode().focus();
this.setState({
isFocused: true
});
},
render() {
return (
<div className={classnames('ascribe-panel-wrapper', {'is-focused': this.state.isFocused})}>
<div className="ascribe-panel-table">
<div className="ascribe-panel-content">
{this.props.content}
</div>
</div>
<div className="ascribe-panel-table">
<div className="ascribe-panel-content">
{this.props.buttons}
</div>
2015-08-06 13:56:37 +02:00
</div>
</div>
);
}
});
export default ActionPanel;