mirror of https://github.com/LemmyNet/lemmy.git
Merge pull request #1075 from LemmyNet/fix_online_counts
Fixing online counts. Fixes #664pull/1088/head
commit
4981eb38fb
|
@ -4,7 +4,7 @@ use crate::{
|
||||||
apub::ActorType,
|
apub::ActorType,
|
||||||
blocking,
|
blocking,
|
||||||
websocket::{
|
websocket::{
|
||||||
server::{JoinCommunityRoom, SendCommunityRoomMessage},
|
server::{GetCommunityUsersOnline, JoinCommunityRoom, SendCommunityRoomMessage},
|
||||||
UserOperation,
|
UserOperation,
|
||||||
WebsocketInfo,
|
WebsocketInfo,
|
||||||
},
|
},
|
||||||
|
@ -205,13 +205,10 @@ impl Perform for GetCommunity {
|
||||||
id,
|
id,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
ws.chatserver
|
||||||
// TODO
|
.send(GetCommunityUsersOnline { community_id })
|
||||||
1
|
.await
|
||||||
// let fut = async {
|
.unwrap_or(1)
|
||||||
// ws.chatserver.send(GetCommunityUsersOnline {community_id}).await.unwrap()
|
|
||||||
// };
|
|
||||||
// Runtime::new().unwrap().block_on(fut)
|
|
||||||
} else {
|
} else {
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
|
@ -13,7 +13,7 @@ use crate::{
|
||||||
blocking,
|
blocking,
|
||||||
fetch_iframely_and_pictrs_data,
|
fetch_iframely_and_pictrs_data,
|
||||||
websocket::{
|
websocket::{
|
||||||
server::{JoinCommunityRoom, JoinPostRoom, SendPost},
|
server::{GetPostUsersOnline, JoinCommunityRoom, JoinPostRoom, SendPost},
|
||||||
UserOperation,
|
UserOperation,
|
||||||
WebsocketInfo,
|
WebsocketInfo,
|
||||||
},
|
},
|
||||||
|
@ -308,13 +308,10 @@ impl Perform for GetPost {
|
||||||
id,
|
id,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
ws.chatserver
|
||||||
// TODO
|
.send(GetPostUsersOnline { post_id: data.id })
|
||||||
1
|
.await
|
||||||
// let fut = async {
|
.unwrap_or(1)
|
||||||
// ws.chatserver.send(GetPostUsersOnline {post_id: data.id}).await.unwrap()
|
|
||||||
// };
|
|
||||||
// Runtime::new().unwrap().block_on(fut)
|
|
||||||
} else {
|
} else {
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,7 +12,11 @@ use crate::{
|
||||||
apub::fetcher::search_by_apub_id,
|
apub::fetcher::search_by_apub_id,
|
||||||
blocking,
|
blocking,
|
||||||
version,
|
version,
|
||||||
websocket::{server::SendAllMessage, UserOperation, WebsocketInfo},
|
websocket::{
|
||||||
|
server::{GetUsersOnline, SendAllMessage},
|
||||||
|
UserOperation,
|
||||||
|
WebsocketInfo,
|
||||||
|
},
|
||||||
DbPool,
|
DbPool,
|
||||||
LemmyError,
|
LemmyError,
|
||||||
};
|
};
|
||||||
|
@ -414,13 +418,8 @@ impl Perform for GetSite {
|
||||||
|
|
||||||
let banned = blocking(pool, move |conn| UserView::banned(conn)).await??;
|
let banned = blocking(pool, move |conn| UserView::banned(conn)).await??;
|
||||||
|
|
||||||
let online = if let Some(_ws) = websocket_info {
|
let online = if let Some(ws) = websocket_info {
|
||||||
// TODO
|
ws.chatserver.send(GetUsersOnline).await.unwrap_or(1)
|
||||||
1
|
|
||||||
// let fut = async {
|
|
||||||
// ws.chatserver.send(GetUsersOnline).await.unwrap()
|
|
||||||
// };
|
|
||||||
// Runtime::new().unwrap().block_on(fut)
|
|
||||||
} else {
|
} else {
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
|
@ -385,11 +385,9 @@ export class Main extends Component<any, MainState> {
|
||||||
badges() {
|
badges() {
|
||||||
return (
|
return (
|
||||||
<ul class="my-2 list-inline">
|
<ul class="my-2 list-inline">
|
||||||
{/*
|
|
||||||
<li className="list-inline-item badge badge-light">
|
<li className="list-inline-item badge badge-light">
|
||||||
{i18n.t('number_online', { count: this.state.siteRes.online })}
|
{i18n.t('number_online', { count: this.state.siteRes.online })}
|
||||||
</li>
|
</li>
|
||||||
*/}
|
|
||||||
<li className="list-inline-item badge badge-light">
|
<li className="list-inline-item badge badge-light">
|
||||||
{i18n.t('number_of_users', {
|
{i18n.t('number_of_users', {
|
||||||
count: this.state.siteRes.site.number_of_users,
|
count: this.state.siteRes.site.number_of_users,
|
||||||
|
|
|
@ -125,11 +125,9 @@ export class Sidebar extends Component<SidebarProps, SidebarState> {
|
||||||
let community = this.props.community;
|
let community = this.props.community;
|
||||||
return (
|
return (
|
||||||
<ul class="my-1 list-inline">
|
<ul class="my-1 list-inline">
|
||||||
{/*
|
|
||||||
<li className="list-inline-item badge badge-light">
|
<li className="list-inline-item badge badge-light">
|
||||||
{i18n.t('number_online', { count: this.props.online })}
|
{i18n.t('number_online', { count: this.props.online })}
|
||||||
</li>
|
</li>
|
||||||
*/}
|
|
||||||
<li className="list-inline-item badge badge-light">
|
<li className="list-inline-item badge badge-light">
|
||||||
{i18n.t('number_of_subscribers', {
|
{i18n.t('number_of_subscribers', {
|
||||||
count: community.number_of_subscribers,
|
count: community.number_of_subscribers,
|
||||||
|
|
Loading…
Reference in New Issue