2019-04-03 23:01:20 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2019-04-04 20:53:32 +00:00
|
|
|
import { Link } from 'inferno-router';
|
2019-04-21 20:52:55 +00:00
|
|
|
import { Community, CommunityUser, FollowCommunityForm, CommunityForm as CommunityFormI, UserView } from '../interfaces';
|
2019-04-04 22:29:14 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2019-04-15 23:12:06 +00:00
|
|
|
import { mdToHtml, getUnixTime } from '../utils';
|
2019-04-04 22:29:14 +00:00
|
|
|
import { CommunityForm } from './community-form';
|
2019-04-03 23:01:20 +00:00
|
|
|
|
|
|
|
interface SidebarProps {
|
|
|
|
community: Community;
|
2019-04-04 20:53:32 +00:00
|
|
|
moderators: Array<CommunityUser>;
|
2019-04-21 20:52:55 +00:00
|
|
|
admins: Array<UserView>;
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface SidebarState {
|
2019-04-04 22:29:14 +00:00
|
|
|
showEdit: boolean;
|
2019-04-15 23:12:06 +00:00
|
|
|
showRemoveDialog: boolean;
|
|
|
|
removeReason: string;
|
|
|
|
removeExpires: string;
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class Sidebar extends Component<SidebarProps, SidebarState> {
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
private emptyState: SidebarState = {
|
2019-04-15 23:12:06 +00:00
|
|
|
showEdit: false,
|
|
|
|
showRemoveDialog: false,
|
|
|
|
removeReason: null,
|
|
|
|
removeExpires: null
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-04-03 23:01:20 +00:00
|
|
|
super(props, context);
|
2019-04-04 22:29:14 +00:00
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleEditCommunity = this.handleEditCommunity.bind(this);
|
2019-04-05 02:08:21 +00:00
|
|
|
this.handleEditCancel = this.handleEditCancel.bind(this);
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
2019-04-04 22:29:14 +00:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{!this.state.showEdit
|
|
|
|
? this.sidebar()
|
2019-04-21 21:38:57 +00:00
|
|
|
: <CommunityForm
|
|
|
|
community={this.props.community}
|
|
|
|
onEdit={this.handleEditCommunity}
|
|
|
|
onCancel={this.handleEditCancel} />
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
sidebar() {
|
2019-04-03 23:01:20 +00:00
|
|
|
let community = this.props.community;
|
|
|
|
return (
|
|
|
|
<div>
|
2019-04-20 04:06:25 +00:00
|
|
|
<h5 className="mb-0">{community.title}
|
2019-04-15 23:12:06 +00:00
|
|
|
{community.removed &&
|
|
|
|
<small className="ml-2 text-muted font-italic">removed</small>
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
</h5>
|
2019-04-25 21:52:18 +00:00
|
|
|
<Link className="text-muted" to={`/f/${community.name}`}>/f/{community.name}</Link>
|
2019-04-21 20:52:55 +00:00
|
|
|
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
|
|
|
{this.canMod &&
|
|
|
|
<>
|
2019-04-15 23:12:06 +00:00
|
|
|
<li className="list-inline-item">
|
2019-04-21 20:52:55 +00:00
|
|
|
<span class="pointer" onClick={linkEvent(this, this.handleEditClick)}>edit</span>
|
2019-04-15 23:12:06 +00:00
|
|
|
</li>
|
2019-04-21 20:52:55 +00:00
|
|
|
{this.amCreator &&
|
|
|
|
<li className="list-inline-item">
|
|
|
|
{/* <span class="pointer" onClick={linkEvent(this, this.handleDeleteClick)}>delete</span> */}
|
|
|
|
</li>
|
|
|
|
}
|
|
|
|
</>
|
|
|
|
}
|
|
|
|
{this.canAdmin &&
|
2019-04-15 23:12:06 +00:00
|
|
|
<li className="list-inline-item">
|
|
|
|
{!this.props.community.removed ?
|
|
|
|
<span class="pointer" onClick={linkEvent(this, this.handleModRemoveShow)}>remove</span> :
|
|
|
|
<span class="pointer" onClick={linkEvent(this, this.handleModRemoveSubmit)}>restore</span>
|
|
|
|
}
|
|
|
|
</li>
|
2019-04-21 20:52:55 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
</ul>
|
2019-04-15 23:12:06 +00:00
|
|
|
{this.state.showRemoveDialog &&
|
|
|
|
<form onSubmit={linkEvent(this, this.handleModRemoveSubmit)}>
|
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-form-label">Reason</label>
|
|
|
|
<input type="text" class="form-control mr-2" placeholder="Optional" value={this.state.removeReason} onInput={linkEvent(this, this.handleModRemoveReasonChange)} />
|
2019-04-04 20:53:32 +00:00
|
|
|
</div>
|
2019-04-22 17:45:50 +00:00
|
|
|
{/* TODO hold off on expires for now */}
|
|
|
|
{/* <div class="form-group row"> */}
|
|
|
|
{/* <label class="col-form-label">Expires</label> */}
|
|
|
|
{/* <input type="date" class="form-control mr-2" placeholder="Expires" value={this.state.removeExpires} onInput={linkEvent(this, this.handleModRemoveExpiresChange)} /> */}
|
|
|
|
{/* </div> */}
|
2019-04-15 23:12:06 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<button type="submit" class="btn btn-secondary">Remove Community</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
}
|
2019-04-16 23:04:23 +00:00
|
|
|
<ul class="my-1 list-inline">
|
2019-04-15 23:12:06 +00:00
|
|
|
<li className="list-inline-item"><Link className="badge badge-light" to="/communities">{community.category_name}</Link></li>
|
|
|
|
<li className="list-inline-item badge badge-light">{community.number_of_subscribers} Subscribers</li>
|
|
|
|
<li className="list-inline-item badge badge-light">{community.number_of_posts} Posts</li>
|
|
|
|
<li className="list-inline-item badge badge-light">{community.number_of_comments} Comments</li>
|
2019-04-16 23:04:23 +00:00
|
|
|
<li className="list-inline-item"><Link className="badge badge-light" to={`/modlog/community/${this.props.community.id}`}>Modlog</Link></li>
|
|
|
|
</ul>
|
|
|
|
<ul class="list-inline small">
|
|
|
|
<li class="list-inline-item">mods: </li>
|
|
|
|
{this.props.moderators.map(mod =>
|
2019-04-25 21:52:18 +00:00
|
|
|
<li class="list-inline-item"><Link class="text-info" to={`/u/${mod.user_name}`}>{mod.user_name}</Link></li>
|
2019-04-16 23:04:23 +00:00
|
|
|
)}
|
2019-04-15 23:12:06 +00:00
|
|
|
</ul>
|
|
|
|
<div>
|
|
|
|
{community.subscribed
|
|
|
|
? <button class="btn btn-sm btn-secondary" onClick={linkEvent(community.id, this.handleUnsubscribe)}>Unsubscribe</button>
|
|
|
|
: <button class="btn btn-sm btn-secondary" onClick={linkEvent(community.id, this.handleSubscribe)}>Subscribe</button>
|
2019-04-04 20:53:32 +00:00
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
</div>
|
|
|
|
{community.description &&
|
|
|
|
<div>
|
|
|
|
<hr />
|
|
|
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(community.description)} />
|
2019-04-16 23:04:23 +00:00
|
|
|
<hr />
|
2019-04-15 23:12:06 +00:00
|
|
|
</div>
|
|
|
|
}
|
|
|
|
</div>
|
2019-04-03 23:01:20 +00:00
|
|
|
);
|
|
|
|
}
|
2019-04-04 22:29:14 +00:00
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleEditClick(i: Sidebar) {
|
2019-04-04 22:29:14 +00:00
|
|
|
i.state.showEdit = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleEditCommunity() {
|
2019-04-04 22:29:14 +00:00
|
|
|
this.state.showEdit = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2019-04-05 02:08:21 +00:00
|
|
|
handleEditCancel() {
|
|
|
|
this.state.showEdit = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
// TODO no deleting communities yet
|
2019-04-08 05:19:02 +00:00
|
|
|
// handleDeleteClick(i: Sidebar, event) {
|
|
|
|
// }
|
2019-04-04 22:29:14 +00:00
|
|
|
|
2019-04-05 06:26:38 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-04-04 22:29:14 +00:00
|
|
|
private get amCreator(): boolean {
|
2019-04-16 23:04:23 +00:00
|
|
|
return this.props.community.creator_id == UserService.Instance.user.id;
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|
|
|
|
|
2019-04-21 20:52:55 +00:00
|
|
|
get canMod(): boolean {
|
|
|
|
return UserService.Instance.user && this.props.moderators.map(m => m.user_id).includes(UserService.Instance.user.id);
|
|
|
|
}
|
|
|
|
|
|
|
|
get canAdmin(): boolean {
|
|
|
|
return UserService.Instance.user && this.props.admins.map(a => a.id).includes(UserService.Instance.user.id);
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
handleDeleteClick() {
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveShow(i: Sidebar) {
|
|
|
|
i.state.showRemoveDialog = true;
|
|
|
|
i.setState(i.state);
|
2019-04-04 22:29:14 +00:00
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
handleModRemoveReasonChange(i: Sidebar, event: any) {
|
|
|
|
i.state.removeReason = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveExpiresChange(i: Sidebar, event: any) {
|
|
|
|
console.log(event.target.value);
|
|
|
|
i.state.removeExpires = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveSubmit(i: Sidebar) {
|
2019-04-16 23:04:23 +00:00
|
|
|
event.preventDefault();
|
2019-04-15 23:12:06 +00:00
|
|
|
let deleteForm: CommunityFormI = {
|
|
|
|
name: i.props.community.name,
|
|
|
|
title: i.props.community.title,
|
|
|
|
category_id: i.props.community.category_id,
|
|
|
|
edit_id: i.props.community.id,
|
|
|
|
removed: !i.props.community.removed,
|
|
|
|
reason: i.state.removeReason,
|
|
|
|
expires: getUnixTime(i.state.removeExpires),
|
|
|
|
auth: null,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.editCommunity(deleteForm);
|
|
|
|
|
|
|
|
i.state.showRemoveDialog = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-04-03 23:01:20 +00:00
|
|
|
}
|