insomnia/app/ui/components/base/editable.js

109 lines
2.4 KiB
JavaScript
Raw Normal View History

import React, {PureComponent, PropTypes} from 'react';
import autobind from 'autobind-decorator';
2016-07-08 06:02:40 +00:00
@autobind
class Editable extends PureComponent {
constructor (props) {
super(props);
this.state = {
editing: false
};
}
2016-07-08 06:02:40 +00:00
_handleSetInputRef (n) {
this._input = n;
}
2016-11-29 21:28:22 +00:00
_handleSingleClickEditStart () {
2016-11-29 21:28:22 +00:00
if (this.props.singleClick) {
this._handleEditStart();
}
}
2016-11-29 21:28:22 +00:00
_handleEditStart () {
2016-07-08 06:02:40 +00:00
this.setState({editing: true});
setTimeout(() => {
this._input && this._input.focus();
this._input && this._input.select();
2016-07-08 06:02:40 +00:00
});
if (this.props.onEditStart) {
this.props.onEditStart();
}
}
2016-07-08 06:02:40 +00:00
_handleEditEnd () {
const value = this._input.value.trim();
if (!value) {
// Don't do anything if it's empty
return;
}
2016-11-10 21:03:12 +00:00
this.props.onSubmit(value);
// This timeout prevents the UI from showing the old value after submit.
// It should give the UI enough time to redraw the new value.
setTimeout(async () => this.setState({editing: false}), 100);
}
2016-07-08 06:02:40 +00:00
_handleEditKeyDown (e) {
2016-07-08 06:02:40 +00:00
if (e.keyCode === 13) {
// Pressed Enter
this._handleEditEnd();
} else if (e.keyCode === 27) {
// Pressed Escape
2016-11-10 21:03:12 +00:00
// NOTE: This blur causes a save because we save on blur
// TODO: Make escape blur without saving
this._input && this._input.blur();
2016-07-08 06:02:40 +00:00
}
}
2016-07-08 06:02:40 +00:00
render () {
const {
value,
singleClick,
onEditStart, // eslint-disable-line no-unused-vars
className,
...extra
} = this.props;
2016-07-08 06:02:40 +00:00
const {editing} = this.state;
if (editing) {
return (
<input {...extra}
className={`editable ${className || ''}`}
type="text"
ref={this._handleSetInputRef}
defaultValue={value}
onKeyDown={this._handleEditKeyDown}
onBlur={this._handleEditEnd}
2016-07-08 06:02:40 +00:00
/>
);
2016-07-08 06:02:40 +00:00
} else {
return (
<div {...extra}
className={`editable ${className}`}
title={singleClick ? 'Click to edit' : 'Double click to edit'}
2016-11-29 21:28:22 +00:00
onClick={this._handleSingleClickEditStart}
onDoubleClick={this._handleEditStart}>
{value}
</div>
);
2016-07-08 06:02:40 +00:00
}
}
}
Editable.propTypes = {
onSubmit: PropTypes.func.isRequired,
value: PropTypes.string.isRequired,
// Optional
singleClick: PropTypes.bool,
onEditStart: PropTypes.func,
className: PropTypes.string
};
2016-07-08 06:02:40 +00:00
export default Editable;