Changed structure to keep code contained to file_upload.jsx
Этот коммит содержится в:
@@ -113,31 +113,33 @@ module.exports = React.createClass({
|
|||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
if (this.props.postType === 'post') {
|
if (this.props.postType === 'post') {
|
||||||
$('body').on('dragover', '.post-list__table', function(e) {
|
$('body').on('dragover dragleave', '.app__content', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
$('body').on('dragenter', '.post-list__table', function(e) {
|
$('body').on('dragenter', '.app__content', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
console.log('HERE');
|
||||||
|
$('.app__content').addClass('center-file-overlay');
|
||||||
|
$('.post-right__container').removeClass('right-file-overlay');
|
||||||
});
|
});
|
||||||
$('body').on('dragleave', '.post-list__table', function(e) {
|
$('body').on('drop', '.app__content', function(e) {
|
||||||
e.preventDefault();
|
|
||||||
});
|
|
||||||
$('body').on('drop', '.post-list__table', function(e) {
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
$('.app__content').removeClass('center-file-overlay');
|
||||||
self.handleDrop(e);
|
self.handleDrop(e);
|
||||||
});
|
});
|
||||||
} else if (this.props.postType === 'comment') {
|
} else if (this.props.postType === 'comment') {
|
||||||
$('body').on('dragover', '.sidebar--right', function(e) {
|
$('body').on('dragover dragleave', '.post-right__container', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
});
|
});
|
||||||
$('body').on('dragenter', '.sidebar--right', function(e) {
|
$('body').on('dragenter', '.post-right__container', function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
console.log('HERE RIGHT');
|
||||||
|
$('.post-right__container').addClass('right-file-overlay');
|
||||||
|
$('.app__content').removeClass('center-file-overlay');
|
||||||
});
|
});
|
||||||
$('body').on('dragleave', '.sidebar--right', function(e) {
|
$('body').on('drop', '.post-right__container', function(e) {
|
||||||
e.preventDefault();
|
|
||||||
});
|
|
||||||
$('body').on('drop', '.sidebar--right', function(e) {
|
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
$('.post-right__container').removeClass('right-file-overlay');
|
||||||
self.handleDrop(e);
|
self.handleDrop(e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -280,10 +280,6 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
handleDragEnter: function() {
|
|
||||||
console.log("HERE ENTER");
|
|
||||||
this.setState({fileDrag: true});
|
|
||||||
},
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
return getStateFromStores();
|
return getStateFromStores();
|
||||||
},
|
},
|
||||||
@@ -472,7 +468,7 @@ module.exports = React.createClass({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div ref="postlist" className="post-list-holder-by-time">
|
<div ref="postlist" className="post-list-holder-by-time">
|
||||||
<div className={"post-list__table " + fileDragOverlay} onDragEnter={this.handleDragEnter}>
|
<div className="post-list__table">
|
||||||
<div className="post-list__content">
|
<div className="post-list__content">
|
||||||
{ more_messages }
|
{ more_messages }
|
||||||
{ postCtls }
|
{ postCtls }
|
||||||
|
|||||||
@@ -243,10 +243,6 @@ module.exports = React.createClass({
|
|||||||
this.refs[id].forceUpdate();
|
this.refs[id].forceUpdate();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
handleDragEnter: function() {
|
|
||||||
console.log("HERE ENTER RIGHT");
|
|
||||||
this.setState({fileDrag: true});
|
|
||||||
},
|
|
||||||
getInitialState: function() {
|
getInitialState: function() {
|
||||||
return getStateFromStores();
|
return getStateFromStores();
|
||||||
},
|
},
|
||||||
@@ -304,7 +300,7 @@ module.exports = React.createClass({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={"post-right__container" + fileDragOverlay} onDragEnter={this.handleDragEnter}>
|
<div className="post-right__container ">
|
||||||
<div className="search-bar__container sidebar--right__search-header">{searchForm}</div>
|
<div className="search-bar__container sidebar--right__search-header">{searchForm}</div>
|
||||||
<div className="sidebar-right__body">
|
<div className="sidebar-right__body">
|
||||||
<RhsHeaderPost fromSearch={this.props.fromSearch} isMentionSearch={this.props.isMentionSearch} />
|
<RhsHeaderPost fromSearch={this.props.fromSearch} isMentionSearch={this.props.isMentionSearch} />
|
||||||
|
|||||||
@@ -202,3 +202,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.center-file-overlay {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background:rgba(255,255,255,0.5);
|
||||||
|
}
|
||||||
|
|
||||||
|
.right-file-overlay {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background:rgba(255,255,255,0.5);
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
.post-right__container {
|
.post-right__container {
|
||||||
|
|
||||||
.post-right-file-overlay {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background:rgba(255,255,255,0.5);
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-right-root-message {
|
.post-right-root-message {
|
||||||
padding: 1em 1em 0;
|
padding: 1em 1em 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user