lemmy-ui/src/shared/components/communities.tsx

331 lines
9.3 KiB
TypeScript
Raw Normal View History

2021-02-22 02:39:04 +00:00
import { Component, linkEvent } from "inferno";
import { HtmlTags } from "./html-tags";
import { Subscription } from "rxjs";
import {
UserOperation,
2020-12-24 01:58:27 +00:00
CommunityView,
ListCommunitiesResponse,
CommunityResponse,
2020-12-24 01:58:27 +00:00
FollowCommunity,
ListCommunities,
SortType,
ListingType,
2020-12-24 01:58:27 +00:00
SiteView,
2021-02-22 02:39:04 +00:00
} from "lemmy-js-client";
import { WebSocketService } from "../services";
import {
wsJsonToRes,
toast,
getPageFromProps,
isBrowser,
setIsoData,
wsSubscribe,
2020-12-24 01:58:27 +00:00
wsUserOp,
wsClient,
authField,
setOptionalAuth,
2021-02-22 02:39:04 +00:00
} from "../utils";
import { CommunityLink } from "./community-link";
import { Spinner } from "./icon";
import { i18n } from "../i18next";
import { InitialFetchRequest } from "shared/interfaces";
const communityLimit = 100;
interface CommunitiesState {
2020-12-24 01:58:27 +00:00
communities: CommunityView[];
page: number;
loading: boolean;
2020-12-24 01:58:27 +00:00
site_view: SiteView;
searchText: string;
}
interface CommunitiesProps {
page: number;
}
export class Communities extends Component<any, CommunitiesState> {
private subscription: Subscription;
private isoData = setIsoData(this.context);
private emptyState: CommunitiesState = {
communities: [],
loading: true,
page: getPageFromProps(this.props),
2020-12-24 01:58:27 +00:00
site_view: this.isoData.site_res.site_view,
2021-02-22 02:39:04 +00:00
searchText: "",
};
constructor(props: any, context: any) {
super(props, context);
this.state = this.emptyState;
this.parseMessage = this.parseMessage.bind(this);
this.subscription = wsSubscribe(this.parseMessage);
// Only fetch the data if coming from another route
if (this.isoData.path == this.context.router.route.match.url) {
this.state.communities = this.isoData.routeData[0].communities;
this.state.loading = false;
} else {
this.refetch();
}
}
componentWillUnmount() {
if (isBrowser()) {
this.subscription.unsubscribe();
}
}
static getDerivedStateFromProps(props: any): CommunitiesProps {
return {
page: getPageFromProps(props),
};
}
componentDidUpdate(_: any, lastState: CommunitiesState) {
if (lastState.page !== this.state.page) {
this.setState({ loading: true });
this.refetch();
}
}
get documentTitle(): string {
2021-02-22 02:39:04 +00:00
return `${i18n.t("communities")} - ${this.state.site_view.site.name}`;
}
render() {
return (
<div class="container">
2020-09-11 18:09:21 +00:00
<HtmlTags
title={this.documentTitle}
path={this.context.router.route.match.url}
/>
{this.state.loading ? (
2021-02-11 20:35:27 +00:00
<h5>
<Spinner />
</h5>
) : (
<div>
<div class="row">
<div class="col-md-6">
2021-02-22 02:39:04 +00:00
<h4>{i18n.t("list_of_communities")}</h4>
</div>
<div class="col-md-6">
<div class="float-md-right">{this.searchForm()}</div>
</div>
</div>
<div class="table-responsive">
<table id="community_table" class="table table-sm table-hover">
<thead class="pointer">
<tr>
2021-02-22 02:39:04 +00:00
<th>{i18n.t("name")}</th>
<th class="text-right">{i18n.t("subscribers")}</th>
<th class="text-right">
2021-02-22 02:39:04 +00:00
{i18n.t("users")} / {i18n.t("month")}
</th>
<th class="text-right d-none d-lg-table-cell">
2021-02-22 02:39:04 +00:00
{i18n.t("posts")}
</th>
<th class="text-right d-none d-lg-table-cell">
2021-02-22 02:39:04 +00:00
{i18n.t("comments")}
</th>
<th></th>
</tr>
</thead>
<tbody>
2020-12-24 01:58:27 +00:00
{this.state.communities.map(cv => (
<tr>
<td>
2020-12-24 01:58:27 +00:00
<CommunityLink community={cv.community} />
</td>
2020-12-24 01:58:27 +00:00
<td class="text-right">{cv.counts.subscribers}</td>
<td class="text-right">{cv.counts.users_active_month}</td>
<td class="text-right d-none d-lg-table-cell">
2020-12-24 01:58:27 +00:00
{cv.counts.posts}
</td>
<td class="text-right d-none d-lg-table-cell">
2020-12-24 01:58:27 +00:00
{cv.counts.comments}
</td>
<td class="text-right">
2020-12-24 01:58:27 +00:00
{cv.subscribed ? (
<span
class="pointer btn-link"
role="button"
onClick={linkEvent(
2020-12-24 01:58:27 +00:00
cv.community.id,
this.handleUnsubscribe
)}
>
2021-02-22 02:39:04 +00:00
{i18n.t("unsubscribe")}
</span>
) : (
<span
class="pointer btn-link"
role="button"
onClick={linkEvent(
2020-12-24 01:58:27 +00:00
cv.community.id,
this.handleSubscribe
)}
>
2021-02-22 02:39:04 +00:00
{i18n.t("subscribe")}
</span>
)}
</td>
</tr>
))}
</tbody>
</table>
</div>
{this.paginator()}
</div>
)}
</div>
);
}
searchForm() {
return (
<form
class="form-inline"
onSubmit={linkEvent(this, this.handleSearchSubmit)}
>
<input
type="text"
id="communities-search"
class="form-control mr-2 mb-2"
value={this.state.searchText}
2021-02-22 02:39:04 +00:00
placeholder={`${i18n.t("search")}...`}
onInput={linkEvent(this, this.handleSearchChange)}
required
minLength={3}
/>
<label class="sr-only" htmlFor="communities-search">
2021-02-22 02:39:04 +00:00
{i18n.t("search")}
</label>
<button type="submit" class="btn btn-secondary mr-2 mb-2">
2021-02-22 02:39:04 +00:00
<span>{i18n.t("search")}</span>
</button>
</form>
);
}
paginator() {
return (
<div class="mt-2">
{this.state.page > 1 && (
<button
class="btn btn-secondary mr-1"
onClick={linkEvent(this, this.prevPage)}
>
2021-02-22 02:39:04 +00:00
{i18n.t("prev")}
</button>
)}
{this.state.communities.length > 0 && (
<button
class="btn btn-secondary"
onClick={linkEvent(this, this.nextPage)}
>
2021-02-22 02:39:04 +00:00
{i18n.t("next")}
</button>
)}
</div>
);
}
updateUrl(paramUpdates: CommunitiesProps) {
const page = paramUpdates.page || this.state.page;
this.props.history.push(`/communities/page/${page}`);
}
nextPage(i: Communities) {
i.updateUrl({ page: i.state.page + 1 });
}
prevPage(i: Communities) {
i.updateUrl({ page: i.state.page - 1 });
}
handleUnsubscribe(communityId: number) {
2020-12-24 01:58:27 +00:00
let form: FollowCommunity = {
community_id: communityId,
follow: false,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.followCommunity(form));
}
handleSubscribe(communityId: number) {
2020-12-24 01:58:27 +00:00
let form: FollowCommunity = {
community_id: communityId,
follow: true,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.followCommunity(form));
}
handleSearchChange(i: Communities, event: any) {
i.setState({ searchText: event.target.value });
}
handleSearchSubmit(i: Communities) {
const searchParamEncoded = encodeURIComponent(i.state.searchText);
i.context.router.history.push(
`/search/q/${searchParamEncoded}/type/Communities/sort/TopAll/page/1`
);
}
refetch() {
2020-12-24 01:58:27 +00:00
let listCommunitiesForm: ListCommunities = {
type_: ListingType.All,
sort: SortType.TopMonth,
limit: communityLimit,
page: this.state.page,
auth: authField(false),
};
WebSocketService.Instance.send(
wsClient.listCommunities(listCommunitiesForm)
);
}
static fetchInitialData(req: InitialFetchRequest): Promise<any>[] {
2021-02-22 02:39:04 +00:00
let pathSplit = req.path.split("/");
let page = pathSplit[3] ? Number(pathSplit[3]) : 1;
2020-12-24 01:58:27 +00:00
let listCommunitiesForm: ListCommunities = {
type_: ListingType.All,
sort: SortType.TopMonth,
limit: communityLimit,
page,
};
setOptionalAuth(listCommunitiesForm, req.auth);
return [req.client.listCommunities(listCommunitiesForm)];
}
2020-12-24 01:58:27 +00:00
parseMessage(msg: any) {
let op = wsUserOp(msg);
2021-04-07 15:54:38 +00:00
console.log(msg);
if (msg.error) {
2021-02-22 02:39:04 +00:00
toast(i18n.t(msg.error), "danger");
return;
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.ListCommunities) {
let data = wsJsonToRes<ListCommunitiesResponse>(msg).data;
this.state.communities = data.communities;
this.state.loading = false;
window.scrollTo(0, 0);
this.setState(this.state);
2020-12-24 01:58:27 +00:00
} else if (op == UserOperation.FollowCommunity) {
let data = wsJsonToRes<CommunityResponse>(msg).data;
let found = this.state.communities.find(
c => c.community.id == data.community_view.community.id
);
found.subscribed = data.community_view.subscribed;
found.counts.subscribers = data.community_view.counts.subscribers;
this.setState(this.state);
}
}
}