Added support to drag and drop text into the main textbox or RHS textbox
Этот коммит содержится в:
@@ -28,6 +28,7 @@ export default class CreateComment extends React.Component {
|
|||||||
this.handleUploadStart = this.handleUploadStart.bind(this);
|
this.handleUploadStart = this.handleUploadStart.bind(this);
|
||||||
this.handleFileUploadComplete = this.handleFileUploadComplete.bind(this);
|
this.handleFileUploadComplete = this.handleFileUploadComplete.bind(this);
|
||||||
this.handleUploadError = this.handleUploadError.bind(this);
|
this.handleUploadError = this.handleUploadError.bind(this);
|
||||||
|
this.handleTextDrop = this.handleTextDrop.bind(this);
|
||||||
this.removePreview = this.removePreview.bind(this);
|
this.removePreview = this.removePreview.bind(this);
|
||||||
this.handleSubmit = this.handleSubmit.bind(this);
|
this.handleSubmit = this.handleSubmit.bind(this);
|
||||||
this.getFileCount = this.getFileCount.bind(this);
|
this.getFileCount = this.getFileCount.bind(this);
|
||||||
@@ -178,6 +179,11 @@ export default class CreateComment extends React.Component {
|
|||||||
this.setState({serverError: err});
|
this.setState({serverError: err});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
handleTextDrop(text) {
|
||||||
|
const originalText = this.state.messageText;
|
||||||
|
this.setState({messageText: originalText + text});
|
||||||
|
React.findDOMNode(this.refs.textbox).focus();
|
||||||
|
}
|
||||||
removePreview(id) {
|
removePreview(id) {
|
||||||
let previews = this.state.previews;
|
let previews = this.state.previews;
|
||||||
let uploadsInProgress = this.state.uploadsInProgress;
|
let uploadsInProgress = this.state.uploadsInProgress;
|
||||||
@@ -264,6 +270,7 @@ export default class CreateComment extends React.Component {
|
|||||||
onUploadStart={this.handleUploadStart}
|
onUploadStart={this.handleUploadStart}
|
||||||
onFileUpload={this.handleFileUploadComplete}
|
onFileUpload={this.handleFileUploadComplete}
|
||||||
onUploadError={this.handleUploadError}
|
onUploadError={this.handleUploadError}
|
||||||
|
onTextDrop={this.handleTextDrop}
|
||||||
postType='comment'
|
postType='comment'
|
||||||
channelId={this.props.channelId}
|
channelId={this.props.channelId}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ export default class CreatePost extends React.Component {
|
|||||||
this.handleUploadStart = this.handleUploadStart.bind(this);
|
this.handleUploadStart = this.handleUploadStart.bind(this);
|
||||||
this.handleFileUploadComplete = this.handleFileUploadComplete.bind(this);
|
this.handleFileUploadComplete = this.handleFileUploadComplete.bind(this);
|
||||||
this.handleUploadError = this.handleUploadError.bind(this);
|
this.handleUploadError = this.handleUploadError.bind(this);
|
||||||
|
this.handleTextDrop = this.handleTextDrop.bind(this);
|
||||||
this.removePreview = this.removePreview.bind(this);
|
this.removePreview = this.removePreview.bind(this);
|
||||||
this.onChange = this.onChange.bind(this);
|
this.onChange = this.onChange.bind(this);
|
||||||
this.getFileCount = this.getFileCount.bind(this);
|
this.getFileCount = this.getFileCount.bind(this);
|
||||||
@@ -230,6 +231,11 @@ export default class CreatePost extends React.Component {
|
|||||||
this.setState({serverError: err});
|
this.setState({serverError: err});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
handleTextDrop(text) {
|
||||||
|
const originalText = this.state.messageText;
|
||||||
|
this.setState({messageText: originalText + text});
|
||||||
|
React.findDOMNode(this.refs.textbox).focus();
|
||||||
|
}
|
||||||
removePreview(id) {
|
removePreview(id) {
|
||||||
let previews = this.state.previews;
|
let previews = this.state.previews;
|
||||||
let uploadsInProgress = this.state.uploadsInProgress;
|
let uploadsInProgress = this.state.uploadsInProgress;
|
||||||
@@ -334,6 +340,7 @@ export default class CreatePost extends React.Component {
|
|||||||
onUploadStart={this.handleUploadStart}
|
onUploadStart={this.handleUploadStart}
|
||||||
onFileUpload={this.handleFileUploadComplete}
|
onFileUpload={this.handleFileUploadComplete}
|
||||||
onUploadError={this.handleUploadError}
|
onUploadError={this.handleUploadError}
|
||||||
|
onTextDrop={this.handleTextDrop}
|
||||||
postType='post'
|
postType='post'
|
||||||
channelId=''
|
channelId=''
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -110,7 +110,7 @@ export default class FileUpload extends React.Component {
|
|||||||
if (typeof files !== 'string' && files.length) {
|
if (typeof files !== 'string' && files.length) {
|
||||||
this.uploadFiles(files);
|
this.uploadFiles(files);
|
||||||
} else {
|
} else {
|
||||||
this.props.onUploadError('Invalid file upload', -1);
|
this.props.onTextDrop(e.originalEvent.dataTransfer.getData('Text'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -266,6 +266,7 @@ FileUpload.propTypes = {
|
|||||||
getFileCount: React.PropTypes.func,
|
getFileCount: React.PropTypes.func,
|
||||||
onFileUpload: React.PropTypes.func,
|
onFileUpload: React.PropTypes.func,
|
||||||
onUploadStart: React.PropTypes.func,
|
onUploadStart: React.PropTypes.func,
|
||||||
|
onTextDrop: React.PropTypes.func,
|
||||||
channelId: React.PropTypes.string,
|
channelId: React.PropTypes.string,
|
||||||
postType: React.PropTypes.string
|
postType: React.PropTypes.string
|
||||||
};
|
};
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user