2019-04-21 21:38:57 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { Link } from 'inferno-router';
|
2019-10-19 00:20:27 +00:00
|
|
|
import { Subscription } from 'rxjs';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
UserOperation,
|
|
|
|
CommunityUser,
|
|
|
|
GetFollowedCommunitiesResponse,
|
|
|
|
ListCommunitiesForm,
|
|
|
|
ListCommunitiesResponse,
|
|
|
|
Community,
|
|
|
|
SortType,
|
|
|
|
GetSiteResponse,
|
|
|
|
ListingType,
|
|
|
|
SiteResponse,
|
|
|
|
GetPostsResponse,
|
|
|
|
CreatePostLikeResponse,
|
|
|
|
Post,
|
|
|
|
GetPostsForm,
|
|
|
|
} from '../interfaces';
|
2019-04-05 19:14:54 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import { PostListings } from './post-listings';
|
2019-10-21 00:49:13 +00:00
|
|
|
import { SortSelect } from './sort-select';
|
2019-10-21 04:21:54 +00:00
|
|
|
import { ListingTypeSelect } from './listing-type-select';
|
2019-04-21 21:38:57 +00:00
|
|
|
import { SiteForm } from './site-form';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
msgOp,
|
|
|
|
repoUrl,
|
|
|
|
mdToHtml,
|
|
|
|
fetchLimit,
|
|
|
|
routeSortTypeToEnum,
|
|
|
|
routeListingTypeToEnum,
|
|
|
|
postRefetchSeconds,
|
2019-12-29 20:39:48 +00:00
|
|
|
pictshareAvatarThumbnail,
|
2020-01-02 21:55:54 +00:00
|
|
|
showAvatars,
|
2019-10-19 00:20:27 +00:00
|
|
|
} from '../utils';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
2019-04-20 19:42:52 +00:00
|
|
|
|
|
|
|
interface MainState {
|
2019-04-05 19:14:54 +00:00
|
|
|
subscribedCommunities: Array<CommunityUser>;
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities: Array<Community>;
|
2019-04-16 23:04:23 +00:00
|
|
|
site: GetSiteResponse;
|
2019-04-21 21:38:57 +00:00
|
|
|
showEditSite: boolean;
|
2019-04-08 21:46:09 +00:00
|
|
|
loading: boolean;
|
2019-04-29 00:19:04 +00:00
|
|
|
posts: Array<Post>;
|
|
|
|
type_: ListingType;
|
|
|
|
sort: SortType;
|
|
|
|
page: number;
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 00:19:04 +00:00
|
|
|
export class Main extends Component<any, MainState> {
|
2019-04-05 19:14:54 +00:00
|
|
|
private subscription: Subscription;
|
2019-10-13 19:37:10 +00:00
|
|
|
private postFetcher: any;
|
2019-04-20 19:42:52 +00:00
|
|
|
private emptyState: MainState = {
|
2019-04-08 21:46:09 +00:00
|
|
|
subscribedCommunities: [],
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities: [],
|
2019-04-16 23:04:23 +00:00
|
|
|
site: {
|
|
|
|
op: null,
|
|
|
|
site: {
|
|
|
|
id: null,
|
|
|
|
name: null,
|
|
|
|
creator_id: null,
|
|
|
|
creator_name: null,
|
|
|
|
published: null,
|
|
|
|
number_of_users: null,
|
|
|
|
number_of_posts: null,
|
|
|
|
number_of_comments: null,
|
2019-08-29 04:28:06 +00:00
|
|
|
number_of_communities: null,
|
2019-12-29 20:39:48 +00:00
|
|
|
enable_downvotes: null,
|
|
|
|
open_registration: null,
|
|
|
|
enable_nsfw: null,
|
2019-04-16 23:04:23 +00:00
|
|
|
},
|
|
|
|
admins: [],
|
|
|
|
banned: [],
|
2019-09-13 16:09:01 +00:00
|
|
|
online: null,
|
2019-04-16 23:04:23 +00:00
|
|
|
},
|
2019-04-21 21:38:57 +00:00
|
|
|
showEditSite: false,
|
2019-04-29 00:19:04 +00:00
|
|
|
loading: true,
|
|
|
|
posts: [],
|
|
|
|
type_: this.getListingTypeFromProps(this.props),
|
|
|
|
sort: this.getSortTypeFromProps(this.props),
|
|
|
|
page: this.getPageFromProps(this.props),
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-29 00:19:04 +00:00
|
|
|
|
|
|
|
getListingTypeFromProps(props: any): ListingType {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.type
|
|
|
|
? routeListingTypeToEnum(props.match.params.type)
|
|
|
|
: UserService.Instance.user
|
2019-10-21 04:21:54 +00:00
|
|
|
? UserService.Instance.user.default_listing_type
|
2019-10-19 00:20:27 +00:00
|
|
|
: ListingType.All;
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
getSortTypeFromProps(props: any): SortType {
|
2019-10-19 00:20:27 +00:00
|
|
|
return props.match.params.sort
|
|
|
|
? routeSortTypeToEnum(props.match.params.sort)
|
2019-10-21 04:21:54 +00:00
|
|
|
: UserService.Instance.user
|
|
|
|
? UserService.Instance.user.default_sort_type
|
2019-10-19 00:20:27 +00:00
|
|
|
: SortType.Hot;
|
2019-04-29 00:19:04 +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-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-04-05 19:14:54 +00:00
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
2019-06-01 22:12:10 +00:00
|
|
|
this.handleEditCancel = this.handleEditCancel.bind(this);
|
2019-10-21 00:49:13 +00:00
|
|
|
this.handleSortChange = this.handleSortChange.bind(this);
|
2019-10-21 04:21:54 +00:00
|
|
|
this.handleTypeChange = this.handleTypeChange.bind(this);
|
2019-04-05 19:14:54 +00:00
|
|
|
|
|
|
|
this.subscription = WebSocketService.Instance.subject
|
2020-01-15 22:28:59 +00:00
|
|
|
.pipe(retryWhen(errors => errors.pipe(delay(3000), take(10))))
|
2019-10-19 00:20:27 +00:00
|
|
|
.subscribe(
|
|
|
|
msg => this.parseMessage(msg),
|
|
|
|
err => console.error(err),
|
2019-04-05 19:14:54 +00:00
|
|
|
() => console.log('complete')
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-05 19:14:54 +00:00
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
WebSocketService.Instance.getSite();
|
|
|
|
|
|
|
|
if (UserService.Instance.user) {
|
2019-04-05 19:14:54 +00:00
|
|
|
WebSocketService.Instance.getFollowedCommunities();
|
|
|
|
}
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
let listCommunitiesForm: ListCommunitiesForm = {
|
2019-05-02 05:26:31 +00:00
|
|
|
sort: SortType[SortType.Hot],
|
2019-10-19 00:20:27 +00:00
|
|
|
limit: 6,
|
|
|
|
};
|
2019-04-10 06:19:12 +00:00
|
|
|
|
|
|
|
WebSocketService.Instance.listCommunities(listCommunitiesForm);
|
2019-04-21 21:38:57 +00:00
|
|
|
|
2019-10-13 19:37:10 +00:00
|
|
|
this.keepFetchingPosts();
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.subscription.unsubscribe();
|
2019-10-13 19:37:10 +00:00
|
|
|
clearInterval(this.postFetcher);
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 00:19:04 +00:00
|
|
|
// Necessary for back button for some reason
|
|
|
|
componentWillReceiveProps(nextProps: any) {
|
2019-10-19 00:20:27 +00:00
|
|
|
if (
|
|
|
|
nextProps.history.action == 'POP' ||
|
|
|
|
nextProps.history.action == 'PUSH'
|
|
|
|
) {
|
2019-04-29 00:19:04 +00:00
|
|
|
this.state.type_ = this.getListingTypeFromProps(nextProps);
|
|
|
|
this.state.sort = this.getSortTypeFromProps(nextProps);
|
|
|
|
this.state.page = this.getPageFromProps(nextProps);
|
2019-09-06 01:34:10 +00:00
|
|
|
this.setState(this.state);
|
2019-04-29 00:19:04 +00:00
|
|
|
this.fetchPosts();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-05 19:14:54 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2019-10-19 00:20:27 +00:00
|
|
|
<div class="col-12 col-md-8">{this.posts()}</div>
|
|
|
|
<div class="col-12 col-md-4">{this.my_sidebar()}</div>
|
2019-08-10 00:14:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-08-10 00:14:43 +00:00
|
|
|
}
|
2019-10-19 00:20:27 +00:00
|
|
|
|
2019-08-10 00:14:43 +00:00
|
|
|
my_sidebar() {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
2019-08-10 00:14:43 +00:00
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.state.loading && (
|
2019-08-10 00:14:43 +00:00
|
|
|
<div>
|
2019-08-20 02:37:32 +00:00
|
|
|
<div class="card border-secondary mb-3">
|
|
|
|
<div class="card-body">
|
|
|
|
{this.trendingCommunities()}
|
2019-10-19 00:20:27 +00:00
|
|
|
{UserService.Instance.user &&
|
|
|
|
this.state.subscribedCommunities.length > 0 && (
|
|
|
|
<div>
|
|
|
|
<h5>
|
|
|
|
<T i18nKey="subscribed_to_communities">
|
|
|
|
#
|
|
|
|
<Link class="text-white" to="/communities">
|
|
|
|
#
|
|
|
|
</Link>
|
|
|
|
</T>
|
|
|
|
</h5>
|
|
|
|
<ul class="list-inline">
|
|
|
|
{this.state.subscribedCommunities.map(community => (
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<Link to={`/c/${community.community_name}`}>
|
|
|
|
{community.community_name}
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<Link
|
|
|
|
class="btn btn-sm btn-secondary btn-block"
|
|
|
|
to="/create_community"
|
|
|
|
>
|
2019-08-20 02:37:32 +00:00
|
|
|
<T i18nKey="create_a_community">#</T>
|
|
|
|
</Link>
|
2019-04-29 00:19:04 +00:00
|
|
|
</div>
|
2019-08-10 00:14:43 +00:00
|
|
|
</div>
|
2019-08-20 02:37:32 +00:00
|
|
|
{this.sidebar()}
|
|
|
|
{this.landing()}
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-05 19:14:54 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2019-04-10 06:19:12 +00:00
|
|
|
trendingCommunities() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-08-10 00:14:43 +00:00
|
|
|
<h5>
|
2019-10-19 00:20:27 +00:00
|
|
|
<T i18nKey="trending_communities">
|
|
|
|
#
|
|
|
|
<Link class="text-white" to="/communities">
|
|
|
|
#
|
|
|
|
</Link>
|
|
|
|
</T>
|
2019-08-10 00:14:43 +00:00
|
|
|
</h5>
|
2019-10-19 00:20:27 +00:00
|
|
|
<ul class="list-inline">
|
|
|
|
{this.state.trendingCommunities.map(community => (
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<Link to={`/c/${community.name}`}>{community.name}</Link>
|
|
|
|
</li>
|
|
|
|
))}
|
2019-04-10 06:19:12 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-10 06:19:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 21:38:57 +00:00
|
|
|
sidebar() {
|
2019-04-09 21:21:19 +00:00
|
|
|
return (
|
2019-08-20 04:45:06 +00:00
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.state.showEditSite ? (
|
|
|
|
this.siteInfo()
|
|
|
|
) : (
|
2019-08-20 04:45:06 +00:00
|
|
|
<SiteForm
|
2019-10-19 00:20:27 +00:00
|
|
|
site={this.state.site.site}
|
|
|
|
onCancel={this.handleEditCancel}
|
2019-08-20 04:45:06 +00:00
|
|
|
/>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-21 21:38:57 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-21 21:38:57 +00:00
|
|
|
}
|
|
|
|
|
2019-04-29 00:19:04 +00:00
|
|
|
updateUrl() {
|
|
|
|
let typeStr = ListingType[this.state.type_].toLowerCase();
|
|
|
|
let sortStr = SortType[this.state.sort].toLowerCase();
|
2019-10-19 00:20:27 +00:00
|
|
|
this.props.history.push(
|
|
|
|
`/home/type/${typeStr}/sort/${sortStr}/page/${this.state.page}`
|
|
|
|
);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 21:38:57 +00:00
|
|
|
siteInfo() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-08-20 04:45:06 +00:00
|
|
|
<div class="card border-secondary mb-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="mb-0">{`${this.state.site.site.name}`}</h5>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.canAdmin && (
|
|
|
|
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
2019-08-20 04:45:06 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleEditClick)}
|
|
|
|
>
|
2019-08-20 04:45:06 +00:00
|
|
|
<T i18nKey="edit">#</T>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-08-20 04:45:06 +00:00
|
|
|
<ul class="my-2 list-inline">
|
2019-09-13 16:09:01 +00:00
|
|
|
<li className="list-inline-item badge badge-secondary">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T
|
|
|
|
i18nKey="number_online"
|
|
|
|
interpolation={{ count: this.state.site.online }}
|
|
|
|
>
|
|
|
|
#
|
|
|
|
</T>
|
2019-09-13 16:09:01 +00:00
|
|
|
</li>
|
2019-08-20 04:45:06 +00:00
|
|
|
<li className="list-inline-item badge badge-secondary">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T
|
|
|
|
i18nKey="number_of_users"
|
|
|
|
interpolation={{
|
|
|
|
count: this.state.site.site.number_of_users,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
#
|
|
|
|
</T>
|
2019-08-20 04:45:06 +00:00
|
|
|
</li>
|
2019-08-29 04:28:06 +00:00
|
|
|
<li className="list-inline-item badge badge-secondary">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T
|
|
|
|
i18nKey="number_of_communities"
|
|
|
|
interpolation={{
|
|
|
|
count: this.state.site.site.number_of_communities,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
#
|
|
|
|
</T>
|
2019-08-29 04:28:06 +00:00
|
|
|
</li>
|
2019-08-20 04:45:06 +00:00
|
|
|
<li className="list-inline-item badge badge-secondary">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T
|
|
|
|
i18nKey="number_of_posts"
|
|
|
|
interpolation={{
|
|
|
|
count: this.state.site.site.number_of_posts,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
#
|
|
|
|
</T>
|
2019-08-20 04:45:06 +00:00
|
|
|
</li>
|
|
|
|
<li className="list-inline-item badge badge-secondary">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T
|
|
|
|
i18nKey="number_of_comments"
|
|
|
|
interpolation={{
|
|
|
|
count: this.state.site.site.number_of_comments,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
#
|
|
|
|
</T>
|
2019-08-20 04:45:06 +00:00
|
|
|
</li>
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<Link className="badge badge-secondary" to="/modlog">
|
|
|
|
<T i18nKey="modlog">#</T>
|
|
|
|
</Link>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2019-10-19 00:20:27 +00:00
|
|
|
<ul class="mt-1 list-inline small mb-0">
|
2019-08-20 04:45:06 +00:00
|
|
|
<li class="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T i18nKey="admins" class="d-inline">
|
|
|
|
#
|
|
|
|
</T>
|
|
|
|
:
|
|
|
|
</li>
|
|
|
|
{this.state.site.admins.map(admin => (
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<Link class="text-info" to={`/u/${admin.name}`}>
|
2020-01-02 21:55:54 +00:00
|
|
|
{admin.avatar && showAvatars() && (
|
2019-12-29 20:39:48 +00:00
|
|
|
<img
|
|
|
|
height="32"
|
|
|
|
width="32"
|
|
|
|
src={pictshareAvatarThumbnail(admin.avatar)}
|
|
|
|
class="rounded-circle mr-1"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<span>{admin.name}</span>
|
2019-10-19 00:20:27 +00:00
|
|
|
</Link>
|
2019-08-20 04:45:06 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
))}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{this.state.site.site.description && (
|
|
|
|
<div class="card border-secondary mb-3">
|
|
|
|
<div class="card-body">
|
|
|
|
<div
|
|
|
|
className="md-div"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(
|
|
|
|
this.state.site.site.description
|
2019-08-20 04:45:06 +00:00
|
|
|
)}
|
2019-10-19 00:20:27 +00:00
|
|
|
/>
|
2019-08-20 04:45:06 +00:00
|
|
|
</div>
|
2019-04-16 23:04:23 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
);
|
2019-04-21 21:38:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
landing() {
|
|
|
|
return (
|
2019-08-20 02:37:32 +00:00
|
|
|
<div class="card border-secondary">
|
|
|
|
<div class="card-body">
|
|
|
|
<h5>
|
2019-10-19 00:20:27 +00:00
|
|
|
<T i18nKey="powered_by" class="d-inline">
|
|
|
|
#
|
|
|
|
</T>
|
|
|
|
<svg class="icon mx-2">
|
|
|
|
<use xlinkHref="#icon-mouse">#</use>
|
|
|
|
</svg>
|
|
|
|
<a href={repoUrl}>
|
|
|
|
Lemmy<sup>beta</sup>
|
|
|
|
</a>
|
2019-08-20 02:37:32 +00:00
|
|
|
</h5>
|
2019-08-20 04:45:06 +00:00
|
|
|
<p class="mb-0">
|
2019-10-19 00:20:27 +00:00
|
|
|
<T i18nKey="landing_0">
|
|
|
|
#
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Social_network_aggregation">
|
|
|
|
#
|
|
|
|
</a>
|
|
|
|
<a href="https://en.wikipedia.org/wiki/Fediverse">#</a>
|
|
|
|
<br></br>
|
|
|
|
<code>#</code>
|
|
|
|
<br></br>
|
|
|
|
<b>#</b>
|
|
|
|
<br></br>
|
|
|
|
<a href={repoUrl}>#</a>
|
|
|
|
<br></br>
|
|
|
|
<a href="https://www.rust-lang.org">#</a>
|
|
|
|
<a href="https://actix.rs/">#</a>
|
|
|
|
<a href="https://infernojs.org">#</a>
|
|
|
|
<a href="https://www.typescriptlang.org/">#</a>
|
|
|
|
</T>
|
|
|
|
</p>
|
|
|
|
</div>
|
2019-04-09 21:21:19 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
posts() {
|
|
|
|
return (
|
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.loading ? (
|
|
|
|
<h5>
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
</h5>
|
|
|
|
) : (
|
|
|
|
<div>
|
|
|
|
{this.selects()}
|
2020-01-20 00:48:34 +00:00
|
|
|
<PostListings posts={this.state.posts} showCommunity />
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.paginator()}
|
|
|
|
</div>
|
|
|
|
)}
|
2019-04-29 00:19:04 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selects() {
|
|
|
|
return (
|
2019-08-20 02:37:32 +00:00
|
|
|
<div className="mb-3">
|
2019-10-21 04:21:54 +00:00
|
|
|
<ListingTypeSelect
|
|
|
|
type_={this.state.type_}
|
|
|
|
onChange={this.handleTypeChange}
|
|
|
|
/>
|
2019-12-02 01:21:19 +00:00
|
|
|
<span class="mx-2">
|
2019-10-21 00:49:13 +00:00
|
|
|
<SortSelect sort={this.state.sort} onChange={this.handleSortChange} />
|
|
|
|
</span>
|
2019-12-02 01:21:19 +00:00
|
|
|
{this.state.type_ == ListingType.All && (
|
2019-12-02 06:20:01 +00:00
|
|
|
<a
|
|
|
|
href={`/feeds/all.xml?sort=${SortType[this.state.sort]}`}
|
|
|
|
target="_blank"
|
|
|
|
>
|
2019-12-02 01:21:19 +00:00
|
|
|
<svg class="icon mx-1 text-muted small">
|
|
|
|
<use xlinkHref="#icon-rss">#</use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
)}
|
2019-12-08 00:39:43 +00:00
|
|
|
{UserService.Instance.user &&
|
|
|
|
this.state.type_ == ListingType.Subscribed && (
|
|
|
|
<a
|
|
|
|
href={`/feeds/front/${UserService.Instance.auth}.xml?sort=${
|
|
|
|
SortType[this.state.sort]
|
|
|
|
}`}
|
|
|
|
target="_blank"
|
|
|
|
>
|
|
|
|
<svg class="icon mx-1 text-muted small">
|
|
|
|
<use xlinkHref="#icon-rss">#</use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
)}
|
2019-04-29 00:19:04 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-09 21:21:19 +00:00
|
|
|
}
|
2019-04-05 19:14:54 +00:00
|
|
|
|
2019-04-29 00:19:04 +00:00
|
|
|
paginator() {
|
|
|
|
return (
|
2019-08-18 05:00:11 +00:00
|
|
|
<div class="my-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>
|
|
|
|
)}
|
2020-01-19 21:47:54 +00:00
|
|
|
{this.state.posts.length == fetchLimit && (
|
|
|
|
<button
|
|
|
|
class="btn btn-sm btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.nextPage)}
|
|
|
|
>
|
|
|
|
<T i18nKey="next">#</T>
|
|
|
|
</button>
|
|
|
|
)}
|
2019-04-29 00:19:04 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-04-21 21:38:57 +00:00
|
|
|
get canAdmin(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
UserService.Instance.user &&
|
|
|
|
this.state.site.admins
|
|
|
|
.map(a => a.id)
|
|
|
|
.includes(UserService.Instance.user.id)
|
|
|
|
);
|
2019-04-21 21:38:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleEditClick(i: Main) {
|
|
|
|
i.state.showEditSite = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleEditCancel() {
|
|
|
|
this.state.showEditSite = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
nextPage(i: Main) {
|
2019-04-29 00:19:04 +00:00
|
|
|
i.state.page++;
|
2019-08-29 23:49:58 +00:00
|
|
|
i.state.loading = true;
|
2019-04-29 00:19:04 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
i.updateUrl();
|
|
|
|
i.fetchPosts();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
prevPage(i: Main) {
|
2019-04-29 00:19:04 +00:00
|
|
|
i.state.page--;
|
2019-08-29 23:49:58 +00:00
|
|
|
i.state.loading = true;
|
2019-04-29 00:19:04 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
i.updateUrl();
|
|
|
|
i.fetchPosts();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 00:49:13 +00:00
|
|
|
handleSortChange(val: SortType) {
|
|
|
|
this.state.sort = val;
|
|
|
|
this.state.page = 1;
|
|
|
|
this.state.loading = true;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.updateUrl();
|
|
|
|
this.fetchPosts();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 04:21:54 +00:00
|
|
|
handleTypeChange(val: ListingType) {
|
|
|
|
this.state.type_ = val;
|
|
|
|
this.state.page = 1;
|
|
|
|
this.state.loading = true;
|
|
|
|
this.setState(this.state);
|
|
|
|
this.updateUrl();
|
|
|
|
this.fetchPosts();
|
2019-10-19 00:20:27 +00:00
|
|
|
window.scrollTo(0, 0);
|
2019-10-13 19:37:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
keepFetchingPosts() {
|
|
|
|
this.fetchPosts();
|
|
|
|
this.postFetcher = setInterval(() => this.fetchPosts(), postRefetchSeconds);
|
2019-04-29 00:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fetchPosts() {
|
|
|
|
let getPostsForm: GetPostsForm = {
|
|
|
|
page: this.state.page,
|
|
|
|
limit: fetchLimit,
|
|
|
|
sort: SortType[this.state.sort],
|
2019-10-19 00:20:27 +00:00
|
|
|
type_: ListingType[this.state.type_],
|
|
|
|
};
|
2019-04-29 00:19:04 +00:00
|
|
|
WebSocketService.Instance.getPosts(getPostsForm);
|
|
|
|
}
|
|
|
|
|
2019-04-05 19:14:54 +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-05 19:14:54 +00:00
|
|
|
return;
|
|
|
|
} else if (op == UserOperation.GetFollowedCommunities) {
|
|
|
|
let res: GetFollowedCommunitiesResponse = msg;
|
|
|
|
this.state.subscribedCommunities = res.communities;
|
|
|
|
this.setState(this.state);
|
2019-04-10 06:19:12 +00:00
|
|
|
} else if (op == UserOperation.ListCommunities) {
|
|
|
|
let res: ListCommunitiesResponse = msg;
|
|
|
|
this.state.trendingCommunities = res.communities;
|
|
|
|
this.setState(this.state);
|
2019-04-16 23:04:23 +00:00
|
|
|
} else if (op == UserOperation.GetSite) {
|
|
|
|
let res: GetSiteResponse = msg;
|
|
|
|
|
|
|
|
// This means it hasn't been set up yet
|
|
|
|
if (!res.site) {
|
2019-10-19 00:20:27 +00:00
|
|
|
this.context.router.history.push('/setup');
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
this.state.site.admins = res.admins;
|
|
|
|
this.state.site.site = res.site;
|
|
|
|
this.state.site.banned = res.banned;
|
2019-09-13 16:09:01 +00:00
|
|
|
this.state.site.online = res.online;
|
2019-04-16 23:04:23 +00:00
|
|
|
this.setState(this.state);
|
2019-06-03 01:35:46 +00:00
|
|
|
document.title = `${WebSocketService.Instance.site.name}`;
|
2019-04-21 21:38:57 +00:00
|
|
|
} else if (op == UserOperation.EditSite) {
|
|
|
|
let res: SiteResponse = msg;
|
|
|
|
this.state.site.site = res.site;
|
|
|
|
this.state.showEditSite = false;
|
|
|
|
this.setState(this.state);
|
2019-04-29 00:19:04 +00:00
|
|
|
} else if (op == UserOperation.GetPosts) {
|
|
|
|
let res: GetPostsResponse = msg;
|
|
|
|
this.state.posts = res.posts;
|
|
|
|
this.state.loading = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
} else if (op == UserOperation.CreatePostLike) {
|
|
|
|
let res: CreatePostLikeResponse = msg;
|
|
|
|
let found = this.state.posts.find(c => c.id == res.post.id);
|
|
|
|
found.my_vote = res.post.my_vote;
|
|
|
|
found.score = res.post.score;
|
|
|
|
found.upvotes = res.post.upvotes;
|
|
|
|
found.downvotes = res.post.downvotes;
|
|
|
|
this.setState(this.state);
|
2019-04-21 21:38:57 +00:00
|
|
|
}
|
2019-04-05 19:14:54 +00:00
|
|
|
}
|
|
|
|
}
|