mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
bce0e5fec1
* Fixed some editor bugs * Some fixes * Update index.js
291 lines
8.6 KiB
JavaScript
291 lines
8.6 KiB
JavaScript
import React, {PureComponent, PropTypes} from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import {DragSource, DropTarget} from 'react-dnd';
|
|
import classnames from 'classnames';
|
|
import FileInputButton from '../base/FileInputButton';
|
|
import {Dropdown, DropdownItem, DropdownButton} from '../base/dropdown/index';
|
|
import PromptButton from '../base/PromptButton';
|
|
import Button from '../base/Button';
|
|
import OneLineEditor from '../codemirror/OneLineEditor';
|
|
import {preventDefault} from '../../../common/misc';
|
|
|
|
class KeyValueEditorRow extends PureComponent {
|
|
_nameInput = null;
|
|
_valueInput = null;
|
|
state = {
|
|
dragDirection: 0
|
|
};
|
|
|
|
focusName () {
|
|
this._nameInput.focus();
|
|
}
|
|
|
|
focusValue () {
|
|
this._valueInput.focus();
|
|
}
|
|
|
|
setDragDirection (dragDirection) {
|
|
if (dragDirection !== this.state.dragDirection) {
|
|
this.setState({dragDirection})
|
|
}
|
|
}
|
|
|
|
_setNameInputRef = n => this._nameInput = n;
|
|
_setValueInputRef = n => this._valueInput = n;
|
|
|
|
_sendChange = patch => {
|
|
const pair = Object.assign({}, this.props.pair, patch);
|
|
this.props.onChange && this.props.onChange(pair);
|
|
};
|
|
|
|
_handleNameChange = name => this._sendChange({name});
|
|
_handleValueChange = value => this._sendChange({value});
|
|
_handleFileNameChange = filename => this._sendChange({fileName});
|
|
_handleTypeChange = type => this._sendChange({type});
|
|
_handleDisableChange = disabled => this._sendChange({disabled});
|
|
|
|
_handleFocusName = e => this.props.onFocusName(this.props.pair, e);
|
|
_handleFocusValue = e => this.props.onFocusValue(this.props.pair, e);
|
|
|
|
_handleDelete = () => {
|
|
if (this.props.onDelete) {
|
|
this.props.onDelete(this.props.pair);
|
|
}
|
|
};
|
|
|
|
_handleKeyDown = (e, value) => {
|
|
if (this.props.onKeyDown) {
|
|
this.props.onKeyDown(this.props.pair, e, value);
|
|
}
|
|
};
|
|
|
|
render () {
|
|
const {
|
|
pair,
|
|
namePlaceholder,
|
|
valuePlaceholder,
|
|
handleRender,
|
|
valueInputType,
|
|
multipart,
|
|
sortable,
|
|
noDropZone,
|
|
hideButtons,
|
|
readOnly,
|
|
className,
|
|
isDragging,
|
|
isDraggingOver,
|
|
connectDragSource,
|
|
connectDropTarget,
|
|
} = this.props;
|
|
|
|
const {dragDirection} = this.state;
|
|
|
|
const classes = classnames(className, {
|
|
'key-value-editor__row-wrapper': true,
|
|
'key-value-editor__row-wrapper--dragging': isDragging,
|
|
'key-value-editor__row-wrapper--dragging-above': isDraggingOver && dragDirection > 0,
|
|
'key-value-editor__row-wrapper--dragging-below': isDraggingOver && dragDirection < 0,
|
|
'key-value-editor__row-wrapper--disabled': pair.disabled,
|
|
});
|
|
|
|
const row = (
|
|
<li className={classes}>
|
|
{sortable ? (
|
|
<div className="key-value-editor__drag">
|
|
<i className={'fa ' + (hideButtons ? 'fa-empty' : 'fa-reorder')}/>
|
|
</div>
|
|
) : null
|
|
}
|
|
|
|
<div className="key-value-editor__row">
|
|
<div className="form-control form-control--underlined form-control--wide">
|
|
<OneLineEditor
|
|
ref={this._setNameInputRef}
|
|
placeholder={namePlaceholder || 'Name'}
|
|
defaultValue={pair.name}
|
|
render={handleRender}
|
|
readOnly={readOnly}
|
|
onChange={this._handleNameChange}
|
|
onFocus={this._handleFocusName}
|
|
onKeyDown={this._handleKeyDown}
|
|
/>
|
|
</div>
|
|
<div className="form-control form-control--wide wide form-control--underlined">
|
|
{pair.type === 'file' ? (
|
|
<FileInputButton
|
|
ref={this._setValueInputRef}
|
|
showFileName={true}
|
|
className="btn btn--clicky wide ellipsis txt-sm"
|
|
path={pair.fileName || ''}
|
|
onChange={this._handleFileNameChange}
|
|
/>
|
|
) : (
|
|
<OneLineEditor
|
|
ref={this._setValueInputRef}
|
|
readOnly={readOnly}
|
|
type={valueInputType || 'text'}
|
|
placeholder={valuePlaceholder || 'Value'}
|
|
defaultValue={pair.value}
|
|
onChange={this._handleValueChange}
|
|
render={handleRender}
|
|
onKeyDown={this._handleKeyDown}
|
|
onFocus={this._handleFocusValue}
|
|
/>
|
|
)}
|
|
</div>
|
|
|
|
{multipart ? (
|
|
!hideButtons ? (
|
|
<Dropdown right={true}>
|
|
<DropdownButton className="tall">
|
|
<i className="fa fa-caret-down"></i>
|
|
</DropdownButton>
|
|
<DropdownItem onClick={this._handleTypeChange} value="text">
|
|
Text
|
|
</DropdownItem>
|
|
<DropdownItem onClick={this._handleTypeChange} value="file">
|
|
File
|
|
</DropdownItem>
|
|
</Dropdown>
|
|
) : (
|
|
<button>
|
|
<i className="fa fa-empty"/>
|
|
</button>
|
|
)
|
|
) : null
|
|
}
|
|
|
|
{!hideButtons ? (
|
|
<Button onClick={this._handleDisableChange}
|
|
value={!pair.disabled}
|
|
title={pair.disabled ? 'Enable item' : 'Disable item'}>
|
|
{pair.disabled ?
|
|
<i className="fa fa-square-o"/> :
|
|
<i className="fa fa-check-square-o"/>
|
|
}
|
|
</Button>
|
|
) : (
|
|
<button><i className="fa fa-empty"/></button>
|
|
)}
|
|
|
|
{!hideButtons ? (
|
|
<PromptButton key={Math.random()}
|
|
tabIndex="-1"
|
|
confirmMessage=" "
|
|
addIcon={true}
|
|
onClick={this._handleDelete}
|
|
title="Delete item">
|
|
<i className="fa fa-trash-o"/>
|
|
</PromptButton>
|
|
) : (
|
|
<button>
|
|
<i className="fa fa-empty"/>
|
|
</button>
|
|
)}
|
|
</div>
|
|
</li>
|
|
);
|
|
|
|
if (noDropZone || !sortable) {
|
|
return row;
|
|
} else {
|
|
return connectDragSource(connectDropTarget(row));
|
|
}
|
|
}
|
|
}
|
|
|
|
KeyValueEditorRow.propTypes = {
|
|
// Required
|
|
onChange: PropTypes.func.isRequired,
|
|
onDelete: PropTypes.func.isRequired,
|
|
onFocusName: PropTypes.func.isRequired,
|
|
onFocusValue: PropTypes.func.isRequired,
|
|
index: PropTypes.number.isRequired,
|
|
pair: PropTypes.shape({
|
|
name: PropTypes.string.isRequired,
|
|
value: PropTypes.string,
|
|
fileName: PropTypes.string,
|
|
type: PropTypes.string,
|
|
disabled: PropTypes.bool,
|
|
}).isRequired,
|
|
|
|
// Optional
|
|
readOnly: PropTypes.bool,
|
|
onMove: PropTypes.func,
|
|
onKeyDown: PropTypes.func,
|
|
handleRender: PropTypes.func,
|
|
namePlaceholder: PropTypes.string,
|
|
valuePlaceholder: PropTypes.string,
|
|
valueInputType: PropTypes.string,
|
|
multipart: PropTypes.bool,
|
|
sortable: PropTypes.bool,
|
|
noDropZone: PropTypes.bool,
|
|
hideButtons: PropTypes.bool,
|
|
|
|
// For drag-n-drop
|
|
connectDragSource: PropTypes.func,
|
|
connectDropTarget: PropTypes.func,
|
|
isDragging: PropTypes.bool,
|
|
isDraggingOver: PropTypes.bool,
|
|
};
|
|
|
|
const dragSource = {
|
|
beginDrag(props) {
|
|
return {pair: props.pair};
|
|
}
|
|
};
|
|
|
|
|
|
function isAbove (monitor, component) {
|
|
const hoveredNode = ReactDOM.findDOMNode(component);
|
|
|
|
const hoveredTop = hoveredNode.getBoundingClientRect().top;
|
|
const draggedTop = monitor.getSourceClientOffset().y;
|
|
|
|
return hoveredTop > draggedTop;
|
|
}
|
|
|
|
const dragTarget = {
|
|
drop (props, monitor, component) {
|
|
if (isAbove(monitor, component)) {
|
|
props.onMove(monitor.getItem().pair, props.pair, 1);
|
|
} else {
|
|
props.onMove(monitor.getItem().pair, props.pair, -1);
|
|
}
|
|
},
|
|
hover (props, monitor, component) {
|
|
if (isAbove(monitor, component)) {
|
|
component.decoratedComponentInstance.setDragDirection(1);
|
|
} else {
|
|
component.decoratedComponentInstance.setDragDirection(-1);
|
|
}
|
|
}
|
|
};
|
|
|
|
function sourceCollect (connect, monitor) {
|
|
return {
|
|
connectDragSource: connect.dragSource(),
|
|
isDragging: monitor.isDragging(),
|
|
};
|
|
}
|
|
|
|
function targetCollect (connect, monitor) {
|
|
return {
|
|
connectDropTarget: connect.dropTarget(),
|
|
isDraggingOver: monitor.isOver(),
|
|
};
|
|
}
|
|
|
|
const source = DragSource('KEY_VALUE_EDITOR', dragSource, sourceCollect)(KeyValueEditorRow);
|
|
const target = DropTarget('KEY_VALUE_EDITOR', dragTarget, targetCollect)(source);
|
|
|
|
target.prototype.focusName = function () {
|
|
this.handler.component.decoratedComponentInstance.focusName();
|
|
};
|
|
|
|
target.prototype.focusValue = function () {
|
|
this.handler.component.decoratedComponentInstance.focusValue();
|
|
};
|
|
|
|
export default target;
|