import { Component, linkEvent } from 'inferno'; import { Subscription } from 'rxjs'; import { retryWhen, delay, take } from 'rxjs/operators'; import { UserOperation, Community, ListCommunitiesResponse, CommunityResponse, FollowCommunityForm, ListCommunitiesForm, SortType, WebSocketJsonResponse, GetSiteResponse, } from '../interfaces'; import { WebSocketService } from '../services'; import { wsJsonToRes, toast } from '../utils'; import { CommunityLink } from './community-link'; import { i18n } from '../i18next'; declare const Sortable: any; const communityLimit = 100; interface CommunitiesState { communities: Array; page: number; loading: boolean; } export class Communities extends Component { private subscription: Subscription; private emptyState: CommunitiesState = { communities: [], loading: true, page: this.getPageFromProps(this.props), }; constructor(props: any, context: any) { super(props, context); this.state = this.emptyState; this.subscription = WebSocketService.Instance.subject .pipe(retryWhen(errors => errors.pipe(delay(3000), take(10)))) .subscribe( msg => this.parseMessage(msg), err => console.error(err), () => console.log('complete') ); this.refetch(); WebSocketService.Instance.getSite(); } getPageFromProps(props: any): number { return props.match.params.page ? Number(props.match.params.page) : 1; } componentWillUnmount() { this.subscription.unsubscribe(); } // 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(); } } render() { return (
{this.state.loading ? (
) : (
{i18n.t('list_of_communities')}
{this.state.communities.map(community => ( ))}
{i18n.t('name')} {i18n.t('title')} {i18n.t('category')} {i18n.t('subscribers')} {i18n.t('posts')} {i18n.t('comments')}
{community.title} {community.category_name} {community.number_of_subscribers} {community.number_of_posts} {community.number_of_comments} {community.subscribed ? ( {i18n.t('unsubscribe')} ) : ( {i18n.t('subscribe')} )}
{this.paginator()}
)}
); } paginator() { return (
{this.state.page > 1 && ( )} {this.state.communities.length > 0 && ( )}
); } updateUrl() { this.props.history.push(`/communities/page/${this.state.page}`); } nextPage(i: Communities) { i.state.page++; i.setState(i.state); i.updateUrl(); i.refetch(); } prevPage(i: Communities) { i.state.page--; i.setState(i.state); i.updateUrl(); i.refetch(); } handleUnsubscribe(communityId: number) { let form: FollowCommunityForm = { community_id: communityId, follow: false, }; WebSocketService.Instance.followCommunity(form); } handleSubscribe(communityId: number) { let form: FollowCommunityForm = { community_id: communityId, follow: true, }; WebSocketService.Instance.followCommunity(form); } refetch() { let listCommunitiesForm: ListCommunitiesForm = { sort: SortType[SortType.TopAll], limit: communityLimit, page: this.state.page, }; WebSocketService.Instance.listCommunities(listCommunitiesForm); } parseMessage(msg: WebSocketJsonResponse) { console.log(msg); let res = wsJsonToRes(msg); if (msg.error) { toast(i18n.t(msg.error), 'danger'); return; } else if (res.op == UserOperation.ListCommunities) { let data = res.data as ListCommunitiesResponse; this.state.communities = data.communities; this.state.communities.sort( (a, b) => b.number_of_subscribers - a.number_of_subscribers ); this.state.loading = false; window.scrollTo(0, 0); this.setState(this.state); let table = document.querySelector('#community_table'); Sortable.initTable(table); } else if (res.op == UserOperation.FollowCommunity) { let data = res.data as CommunityResponse; let found = this.state.communities.find(c => c.id == data.community.id); found.subscribed = data.community.subscribed; found.number_of_subscribers = data.community.number_of_subscribers; this.setState(this.state); } else if (res.op == UserOperation.GetSite) { let data = res.data as GetSiteResponse; document.title = `${i18n.t('communities')} - ${data.site.name}`; } } }