2019-04-04 20:00:19 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import { Subscription } from "rxjs";
|
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-04-10 06:19:12 +00:00
|
|
|
import { UserOperation, Community, ListCommunitiesResponse, CommunityResponse, FollowCommunityForm, ListCommunitiesForm, SortType } from '../interfaces';
|
2019-04-08 05:19:02 +00:00
|
|
|
import { WebSocketService } from '../services';
|
|
|
|
import { msgOp } from '../utils';
|
2019-04-04 20:00:19 +00:00
|
|
|
|
2019-04-05 00:01:10 +00:00
|
|
|
declare const Sortable: any;
|
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
interface CommunitiesState {
|
|
|
|
communities: Array<Community>;
|
2019-04-08 21:46:09 +00:00
|
|
|
loading: boolean;
|
2019-04-04 20:00:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Communities extends Component<any, CommunitiesState> {
|
|
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: CommunitiesState = {
|
2019-04-08 21:46:09 +00:00
|
|
|
communities: [],
|
|
|
|
loading: true
|
2019-04-04 20:00:19 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-04-04 20:00:19 +00:00
|
|
|
super(props, context);
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2019-04-08 21:46:09 +00:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
|
|
|
.subscribe(
|
|
|
|
(msg) => this.parseMessage(msg),
|
2019-04-04 20:00:19 +00:00
|
|
|
(err) => console.error(err),
|
|
|
|
() => console.log('complete')
|
2019-04-08 21:46:09 +00:00
|
|
|
);
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
let listCommunitiesForm: ListCommunitiesForm = {
|
2019-04-18 15:28:24 +00:00
|
|
|
sort: SortType[SortType.TopAll],
|
|
|
|
limit: 9999,
|
2019-04-10 06:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WebSocketService.Instance.listCommunities(listCommunitiesForm);
|
2019-04-05 06:26:38 +00:00
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2019-04-05 00:01:10 +00:00
|
|
|
componentDidMount() {
|
|
|
|
let table = document.querySelector('#community_table');
|
|
|
|
Sortable.initTable(table);
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2019-04-09 21:21:19 +00:00
|
|
|
<div class="container">
|
2019-04-08 21:46:09 +00:00
|
|
|
{this.state.loading ?
|
2019-04-20 04:06:25 +00:00
|
|
|
<h5 class=""><svg class="icon icon-spinner spin"><use xlinkHref="#icon-spinner"></use></svg></h5> :
|
2019-04-08 21:46:09 +00:00
|
|
|
<div>
|
2019-04-20 04:06:25 +00:00
|
|
|
<h5>Communities</h5>
|
2019-04-08 21:46:09 +00:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="community_table" class="table table-sm table-hover">
|
|
|
|
<thead class="pointer">
|
2019-04-04 20:00:19 +00:00
|
|
|
<tr>
|
2019-04-08 21:46:09 +00:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Title</th>
|
|
|
|
<th>Category</th>
|
2019-04-16 23:04:23 +00:00
|
|
|
<th class="text-right d-none d-md-table-cell">Subscribers</th>
|
|
|
|
<th class="text-right d-none d-md-table-cell">Posts</th>
|
|
|
|
<th class="text-right d-none d-md-table-cell">Comments</th>
|
2019-04-08 21:46:09 +00:00
|
|
|
<th></th>
|
2019-04-04 20:00:19 +00:00
|
|
|
</tr>
|
2019-04-08 21:46:09 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.state.communities.map(community =>
|
|
|
|
<tr>
|
|
|
|
<td><Link to={`/community/${community.id}`}>{community.name}</Link></td>
|
|
|
|
<td>{community.title}</td>
|
|
|
|
<td>{community.category_name}</td>
|
2019-04-16 23:04:23 +00:00
|
|
|
<td class="text-right d-none d-md-table-cell">{community.number_of_subscribers}</td>
|
|
|
|
<td class="text-right d-none d-md-table-cell">{community.number_of_posts}</td>
|
|
|
|
<td class="text-right d-none d-md-table-cell">{community.number_of_comments}</td>
|
2019-04-08 21:46:09 +00:00
|
|
|
<td class="text-right">
|
|
|
|
{community.subscribed ?
|
2019-04-16 23:04:23 +00:00
|
|
|
<span class="pointer btn-link" onClick={linkEvent(community.id, this.handleUnsubscribe)}>Unsubscribe</span> :
|
|
|
|
<span class="pointer btn-link" onClick={linkEvent(community.id, this.handleSubscribe)}>Subscribe</span>
|
2019-04-08 21:46:09 +00:00
|
|
|
}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
)}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2019-04-04 20:00:19 +00:00
|
|
|
</div>
|
2019-04-08 21:46:09 +00:00
|
|
|
}
|
2019-04-04 20:00:19 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-05 06:26:38 +00:00
|
|
|
handleUnsubscribe(communityId: number) {
|
|
|
|
let form: FollowCommunityForm = {
|
|
|
|
community_id: communityId,
|
|
|
|
follow: false
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.followCommunity(form);
|
|
|
|
}
|
2019-04-04 20:00:19 +00:00
|
|
|
|
2019-04-05 06:26:38 +00:00
|
|
|
handleSubscribe(communityId: number) {
|
|
|
|
let form: FollowCommunityForm = {
|
|
|
|
community_id: communityId,
|
|
|
|
follow: true
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.followCommunity(form);
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
|
|
|
alert(msg.error);
|
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.ListCommunities) {
|
|
|
|
let res: ListCommunitiesResponse = msg;
|
|
|
|
this.state.communities = res.communities;
|
|
|
|
this.state.communities.sort((a, b) => b.number_of_subscribers - a.number_of_subscribers);
|
2019-04-08 21:46:09 +00:00
|
|
|
this.state.loading = false;
|
2019-04-04 20:00:19 +00:00
|
|
|
this.setState(this.state);
|
2019-04-05 06:26:38 +00:00
|
|
|
} else if (op == UserOperation.FollowCommunity) {
|
|
|
|
let res: CommunityResponse = msg;
|
|
|
|
let found = this.state.communities.find(c => c.id == res.community.id);
|
|
|
|
found.subscribed = res.community.subscribed;
|
|
|
|
found.number_of_subscribers = res.community.number_of_subscribers;
|
|
|
|
this.setState(this.state);
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
2019-04-04 20:00:19 +00:00
|
|
|
}
|
|
|
|
}
|