2019-04-04 20:00:19 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
2019-10-19 00:20:27 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
2019-04-04 20:00:19 +00:00
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-10-19 00:20:27 +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-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
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-30 13:49:01 +00:00
|
|
|
page: number;
|
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: [],
|
2019-04-30 13:49:01 +00:00
|
|
|
loading: true,
|
|
|
|
page: this.getPageFromProps(this.props),
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
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-10-19 00:20:27 +00:00
|
|
|
.pipe(
|
|
|
|
retryWhen(errors =>
|
|
|
|
errors.pipe(
|
|
|
|
delay(3000),
|
|
|
|
take(10)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2019-08-10 00:14:43 +00:00
|
|
|
.subscribe(
|
2019-10-19 00:20:27 +00:00
|
|
|
msg => this.parseMessage(msg),
|
|
|
|
err => console.error(err),
|
2019-04-04 20:00:19 +00:00
|
|
|
() => console.log('complete')
|
2019-08-10 00:14:43 +00:00
|
|
|
);
|
2019-04-10 06:19:12 +00:00
|
|
|
|
2019-04-30 13:49:01 +00:00
|
|
|
this.refetch();
|
|
|
|
}
|
2019-04-05 06:26:38 +00:00
|
|
|
|
2019-04-30 13:49:01 +00:00
|
|
|
getPageFromProps(props: any): number {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.page ? Number(props.match.params.page) : 1;
|
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() {
|
2019-10-19 00:20:27 +00:00
|
|
|
document.title = `${i18n.t('communities')} - ${
|
|
|
|
WebSocketService.Instance.site.name
|
|
|
|
}`;
|
2019-04-05 00:01:10 +00:00
|
|
|
}
|
|
|
|
|
2019-04-30 13:49:01 +00:00
|
|
|
// Necessary for back button for some reason
|
|
|
|
componentWillReceiveProps(nextProps: any) {
|
|
|
|
if (nextProps.history.action == 'POP') {
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.state.page = this.getPageFromProps(nextProps);
|
|
|
|
this.refetch();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2019-04-09 21:21:19 +00:00
|
|
|
<div class="container">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.loading ? (
|
|
|
|
<h5 class="">
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
</h5>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
<h5>
|
|
|
|
<T i18nKey="list_of_communities">#</T>
|
|
|
|
</h5>
|
|
|
|
<div class="table-responsive">
|
|
|
|
<table id="community_table" class="table table-sm table-hover">
|
|
|
|
<thead class="pointer">
|
2019-04-08 21:46:09 +00:00
|
|
|
<tr>
|
2019-10-19 00:20:27 +00:00
|
|
|
<th>
|
|
|
|
<T i18nKey="name">#</T>
|
|
|
|
</th>
|
|
|
|
<th class="d-none d-lg-table-cell">
|
|
|
|
<T i18nKey="title">#</T>
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
<T i18nKey="category">#</T>
|
|
|
|
</th>
|
|
|
|
<th class="text-right">
|
|
|
|
<T i18nKey="subscribers">#</T>
|
|
|
|
</th>
|
|
|
|
<th class="text-right d-none d-lg-table-cell">
|
|
|
|
<T i18nKey="posts">#</T>
|
|
|
|
</th>
|
|
|
|
<th class="text-right d-none d-lg-table-cell">
|
|
|
|
<T i18nKey="comments">#</T>
|
|
|
|
</th>
|
|
|
|
<th></th>
|
2019-04-08 21:46:09 +00:00
|
|
|
</tr>
|
2019-10-19 00:20:27 +00:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{this.state.communities.map(community => (
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<Link to={`/c/${community.name}`}>
|
|
|
|
{community.name}
|
|
|
|
</Link>
|
|
|
|
</td>
|
|
|
|
<td class="d-none d-lg-table-cell">{community.title}</td>
|
|
|
|
<td>{community.category_name}</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{community.number_of_subscribers}
|
|
|
|
</td>
|
|
|
|
<td class="text-right d-none d-lg-table-cell">
|
|
|
|
{community.number_of_posts}
|
|
|
|
</td>
|
|
|
|
<td class="text-right d-none d-lg-table-cell">
|
|
|
|
{community.number_of_comments}
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{community.subscribed ? (
|
|
|
|
<span
|
|
|
|
class="pointer btn-link"
|
|
|
|
onClick={linkEvent(
|
|
|
|
community.id,
|
|
|
|
this.handleUnsubscribe
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="unsubscribe">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<span
|
|
|
|
class="pointer btn-link"
|
|
|
|
onClick={linkEvent(
|
|
|
|
community.id,
|
|
|
|
this.handleSubscribe
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="subscribe">#</T>
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
))}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{this.paginator()}
|
2019-04-08 21:46:09 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-04 20:00:19 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-30 13:49:01 +00:00
|
|
|
paginator() {
|
|
|
|
return (
|
|
|
|
<div class="mt-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.page > 1 && (
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary mr-1"
|
|
|
|
onClick={linkEvent(this, this.prevPage)}
|
|
|
|
>
|
|
|
|
<T i18nKey="prev">#</T>
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.nextPage)}
|
|
|
|
>
|
|
|
|
<T i18nKey="next">#</T>
|
|
|
|
</button>
|
2019-04-30 13:49:01 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateUrl() {
|
|
|
|
this.props.history.push(`/communities/page/${this.state.page}`);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
nextPage(i: Communities) {
|
2019-04-30 13:49:01 +00:00
|
|
|
i.state.page++;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.updateUrl();
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
prevPage(i: Communities) {
|
2019-04-30 13:49:01 +00:00
|
|
|
i.state.page--;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.updateUrl();
|
|
|
|
i.refetch();
|
|
|
|
}
|
|
|
|
|
2019-04-05 06:26:38 +00:00
|
|
|
handleUnsubscribe(communityId: number) {
|
|
|
|
let form: FollowCommunityForm = {
|
|
|
|
community_id: communityId,
|
2019-10-19 00:20:27 +00:00
|
|
|
follow: false,
|
2019-04-05 06:26:38 +00:00
|
|
|
};
|
|
|
|
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,
|
2019-10-19 00:20:27 +00:00
|
|
|
follow: true,
|
2019-04-05 06:26:38 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.followCommunity(form);
|
|
|
|
}
|
|
|
|
|
2019-04-30 13:49:01 +00:00
|
|
|
refetch() {
|
|
|
|
let listCommunitiesForm: ListCommunitiesForm = {
|
|
|
|
sort: SortType[SortType.TopAll],
|
|
|
|
limit: 100,
|
|
|
|
page: this.state.page,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-30 13:49:01 +00:00
|
|
|
|
|
|
|
WebSocketService.Instance.listCommunities(listCommunitiesForm);
|
|
|
|
}
|
|
|
|
|
2019-04-04 20:00:19 +00:00
|
|
|
parseMessage(msg: any) {
|
|
|
|
console.log(msg);
|
|
|
|
let op: UserOperation = msgOp(msg);
|
|
|
|
if (msg.error) {
|
2019-08-10 00:14:43 +00:00
|
|
|
alert(i18n.t(msg.error));
|
2019-04-04 20:00:19 +00:00
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.ListCommunities) {
|
|
|
|
let res: ListCommunitiesResponse = msg;
|
|
|
|
this.state.communities = res.communities;
|
2019-10-19 00:20:27 +00:00
|
|
|
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-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-04 20:00:19 +00:00
|
|
|
this.setState(this.state);
|
2019-06-02 16:41:57 +00:00
|
|
|
let table = document.querySelector('#community_table');
|
|
|
|
Sortable.initTable(table);
|
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-10-19 00:20:27 +00:00
|
|
|
}
|
2019-04-04 20:00:19 +00:00
|
|
|
}
|
|
|
|
}
|