Merge pull request #174 from nickago/MM-831-3

MM-831 Time change ping riding on the status interupt for timestamp update
Этот коммит содержится в:
Joram Wilander
2015-07-14 10:55:37 -04:00
родитель 2e4b61ef38 634df1c624
Коммит 1f1ad8234a
2 изменённых файлов: 31 добавлений и 3 удалений

Просмотреть файл

@@ -35,6 +35,8 @@ module.exports = React.createClass({
oldScrollHeight: 0,
oldZoom: 0,
scrolledToNew: false,
preForcePosision: 0,
wasForced: false,
componentDidMount: function() {
var user = UserStore.getCurrentUser();
if (user.props && user.props.theme) {
@@ -50,6 +52,7 @@ module.exports = React.createClass({
PostStore.addChangeListener(this._onChange);
ChannelStore.addChangeListener(this._onChange);
UserStore.addStatusesChangeListener(this._onTimeChange);
SocketStore.addChangeListener(this._onSocketChange);
$(".post-list-holder-by-time").perfectScrollbar();
@@ -79,6 +82,11 @@ module.exports = React.createClass({
});
$(post_holder).scroll(function(e){
if (self.wasForced) {
$(post_holder).scrollTop(self.preForcePosision);
$(post_holder).perfectScrollbar('update');
self.wasForced = false;
}
if (!self.preventScrollTrigger) {
self.scrollPosition = $(post_holder).scrollTop() + $(post_holder).innerHeight();
}
@@ -129,6 +137,7 @@ module.exports = React.createClass({
componentWillUnmount: function() {
PostStore.removeChangeListener(this._onChange);
ChannelStore.removeChangeListener(this._onChange);
UserStore.removeStatusesChangeListener(this._onTimeChange);
SocketStore.removeChangeListener(this._onSocketChange);
$('body').off('click.userpopover');
},
@@ -161,7 +170,7 @@ module.exports = React.createClass({
this.scrolledToNew = false;
}
this.setState(newState);
}
}
},
_onSocketChange: function(msg) {
if (msg.action == "posted") {
@@ -225,6 +234,11 @@ module.exports = React.createClass({
AsyncClient.getProfiles();
}
},
_onTimeChange: function() {
this.wasForced = true;
this.preForcePosision = $(".post-list-holder-by-time").scrollTop();
this.forceUpdate();
},
getMorePosts: function(e) {
e.preventDefault();

Просмотреть файл

@@ -281,9 +281,11 @@ function getStateFromStores() {
}
module.exports = React.createClass({
wasForced: false,
componentDidMount: function() {
PostStore.addSelectedPostChangeListener(this._onChange);
PostStore.addChangeListener(this._onChangeAll);
UserStore.addStatusesChangeListener(this._onTimeChange);
this.resize();
var self = this;
$(window).resize(function(){
@@ -291,11 +293,15 @@ module.exports = React.createClass({
});
},
componentDidUpdate: function() {
this.resize();
if(!this.wasForced){
this.resize();
this.wasForced = false;
}
},
componentWillUnmount: function() {
PostStore.removeSelectedPostChangeListener(this._onChange);
PostStore.removeChangeListener(this._onChangeAll);
UserStore.removeStatusesChangeListener(this._onTimeChange);
},
_onChange: function() {
if (this.isMounted()) {
@@ -335,6 +341,14 @@ module.exports = React.createClass({
this.setState(getStateFromStores());
}
},
_onTimeChange: function() {
this.wasForced = true;
for (var key in this.refs) {
if(this.refs[key].forceUpdate != undefined) {
this.refs[key].forceUpdate();
}
}
},
getInitialState: function() {
return getStateFromStores();
},
@@ -394,7 +408,7 @@ module.exports = React.createClass({
<RootPost post={root_post} commentCount={posts_array.length}/>
<div className="post-right-comments-container">
{ posts_array.map(function(cpost) {
return <CommentPost key={cpost.id} post={cpost} selected={ (cpost.id == selected_post.id) } />
return <CommentPost ref={cpost.id} key={cpost.id} post={cpost} selected={ (cpost.id == selected_post.id) } />
})}
</div>
<div className="post-create__container">