mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 10:10:01 +00:00
319 lines
9.5 KiB
TypeScript
Vendored
319 lines
9.5 KiB
TypeScript
Vendored
import { Component, linkEvent } from 'inferno';
|
|
import { Prompt } from 'inferno-router';
|
|
import { Subscription } from 'rxjs';
|
|
import { retryWhen, delay, take } from 'rxjs/operators';
|
|
import {
|
|
CommunityForm as CommunityFormI,
|
|
UserOperation,
|
|
Category,
|
|
ListCategoriesResponse,
|
|
CommunityResponse,
|
|
WebSocketJsonResponse,
|
|
} from '../interfaces';
|
|
import { WebSocketService } from '../services';
|
|
import {
|
|
wsJsonToRes,
|
|
capitalizeFirstLetter,
|
|
toast,
|
|
randomStr,
|
|
setupTribute,
|
|
} from '../utils';
|
|
import Tribute from 'tributejs/src/Tribute.js';
|
|
import autosize from 'autosize';
|
|
import { i18n } from '../i18next';
|
|
|
|
import { Community } from '../interfaces';
|
|
|
|
interface CommunityFormProps {
|
|
community?: Community; // If a community is given, that means this is an edit
|
|
onCancel?(): any;
|
|
onCreate?(community: Community): any;
|
|
onEdit?(community: Community): any;
|
|
enableNsfw: boolean;
|
|
}
|
|
|
|
interface CommunityFormState {
|
|
communityForm: CommunityFormI;
|
|
categories: Array<Category>;
|
|
loading: boolean;
|
|
}
|
|
|
|
export class CommunityForm extends Component<
|
|
CommunityFormProps,
|
|
CommunityFormState
|
|
> {
|
|
private id = `community-form-${randomStr()}`;
|
|
private tribute: Tribute;
|
|
private subscription: Subscription;
|
|
|
|
private emptyState: CommunityFormState = {
|
|
communityForm: {
|
|
name: null,
|
|
title: null,
|
|
category_id: null,
|
|
nsfw: false,
|
|
},
|
|
categories: [],
|
|
loading: false,
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
|
|
this.tribute = setupTribute();
|
|
this.state = this.emptyState;
|
|
|
|
if (this.props.community) {
|
|
this.state.communityForm = {
|
|
name: this.props.community.name,
|
|
title: this.props.community.title,
|
|
category_id: this.props.community.category_id,
|
|
description: this.props.community.description,
|
|
edit_id: this.props.community.id,
|
|
nsfw: this.props.community.nsfw,
|
|
auth: null,
|
|
};
|
|
}
|
|
|
|
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')
|
|
);
|
|
|
|
WebSocketService.Instance.listCategories();
|
|
}
|
|
|
|
componentDidMount() {
|
|
var textarea: any = document.getElementById(this.id);
|
|
autosize(textarea);
|
|
this.tribute.attach(textarea);
|
|
textarea.addEventListener('tribute-replaced', () => {
|
|
this.state.communityForm.description = textarea.value;
|
|
this.setState(this.state);
|
|
autosize.update(textarea);
|
|
});
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
if (
|
|
!this.state.loading &&
|
|
(this.state.communityForm.name ||
|
|
this.state.communityForm.title ||
|
|
this.state.communityForm.description)
|
|
) {
|
|
window.onbeforeunload = () => true;
|
|
} else {
|
|
window.onbeforeunload = undefined;
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.subscription.unsubscribe();
|
|
window.onbeforeunload = null;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<Prompt
|
|
when={
|
|
!this.state.loading &&
|
|
(this.state.communityForm.name ||
|
|
this.state.communityForm.title ||
|
|
this.state.communityForm.description)
|
|
}
|
|
message={i18n.t('block_leaving')}
|
|
/>
|
|
<form onSubmit={linkEvent(this, this.handleCreateCommunitySubmit)}>
|
|
<div class="form-group row">
|
|
<label class="col-12 col-form-label" htmlFor="community-name">
|
|
{i18n.t('name')}
|
|
</label>
|
|
<div class="col-12">
|
|
<input
|
|
type="text"
|
|
id="community-name"
|
|
class="form-control"
|
|
value={this.state.communityForm.name}
|
|
onInput={linkEvent(this, this.handleCommunityNameChange)}
|
|
required
|
|
minLength={3}
|
|
maxLength={20}
|
|
pattern="[a-z0-9_]+"
|
|
title={i18n.t('community_reqs')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
<label class="col-12 col-form-label" htmlFor="community-title">
|
|
{i18n.t('title')}
|
|
</label>
|
|
<div class="col-12">
|
|
<input
|
|
type="text"
|
|
id="community-title"
|
|
value={this.state.communityForm.title}
|
|
onInput={linkEvent(this, this.handleCommunityTitleChange)}
|
|
class="form-control"
|
|
required
|
|
minLength={3}
|
|
maxLength={100}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-12 col-form-label" htmlFor={this.id}>
|
|
{i18n.t('sidebar')}
|
|
</label>
|
|
<div class="col-12">
|
|
<textarea
|
|
id={this.id}
|
|
value={this.state.communityForm.description}
|
|
onInput={linkEvent(this, this.handleCommunityDescriptionChange)}
|
|
class="form-control"
|
|
rows={3}
|
|
maxLength={10000}
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-12 col-form-label" htmlFor="community-category">
|
|
{i18n.t('category')}
|
|
</label>
|
|
<div class="col-12">
|
|
<select
|
|
class="form-control"
|
|
id="community-category"
|
|
value={this.state.communityForm.category_id}
|
|
onInput={linkEvent(this, this.handleCommunityCategoryChange)}
|
|
>
|
|
{this.state.categories.map(category => (
|
|
<option value={category.id}>{category.name}</option>
|
|
))}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
{this.props.enableNsfw && (
|
|
<div class="form-group row">
|
|
<div class="col-12">
|
|
<div class="form-check">
|
|
<input
|
|
class="form-check-input"
|
|
id="community-nsfw"
|
|
type="checkbox"
|
|
checked={this.state.communityForm.nsfw}
|
|
onChange={linkEvent(this, this.handleCommunityNsfwChange)}
|
|
/>
|
|
<label class="form-check-label" htmlFor="community-nsfw">
|
|
{i18n.t('nsfw')}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
<div class="form-group row">
|
|
<div class="col-12">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-secondary mr-2"
|
|
disabled={this.state.loading}
|
|
>
|
|
{this.state.loading ? (
|
|
<svg class="icon icon-spinner spin">
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
</svg>
|
|
) : this.props.community ? (
|
|
capitalizeFirstLetter(i18n.t('save'))
|
|
) : (
|
|
capitalizeFirstLetter(i18n.t('create'))
|
|
)}
|
|
</button>
|
|
{this.props.community && (
|
|
<button
|
|
type="button"
|
|
class="btn btn-secondary"
|
|
onClick={linkEvent(this, this.handleCancel)}
|
|
>
|
|
{i18n.t('cancel')}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</>
|
|
);
|
|
}
|
|
|
|
handleCreateCommunitySubmit(i: CommunityForm, event: any) {
|
|
event.preventDefault();
|
|
i.state.loading = true;
|
|
if (i.props.community) {
|
|
WebSocketService.Instance.editCommunity(i.state.communityForm);
|
|
} else {
|
|
WebSocketService.Instance.createCommunity(i.state.communityForm);
|
|
}
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCommunityNameChange(i: CommunityForm, event: any) {
|
|
i.state.communityForm.name = event.target.value;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCommunityTitleChange(i: CommunityForm, event: any) {
|
|
i.state.communityForm.title = event.target.value;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCommunityDescriptionChange(i: CommunityForm, event: any) {
|
|
i.state.communityForm.description = event.target.value;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCommunityCategoryChange(i: CommunityForm, event: any) {
|
|
i.state.communityForm.category_id = Number(event.target.value);
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCommunityNsfwChange(i: CommunityForm, event: any) {
|
|
i.state.communityForm.nsfw = event.target.checked;
|
|
i.setState(i.state);
|
|
}
|
|
|
|
handleCancel(i: CommunityForm) {
|
|
i.props.onCancel();
|
|
}
|
|
|
|
parseMessage(msg: WebSocketJsonResponse) {
|
|
let res = wsJsonToRes(msg);
|
|
console.log(msg);
|
|
if (msg.error) {
|
|
toast(i18n.t(msg.error), 'danger');
|
|
this.state.loading = false;
|
|
this.setState(this.state);
|
|
return;
|
|
} else if (res.op == UserOperation.ListCategories) {
|
|
let data = res.data as ListCategoriesResponse;
|
|
this.state.categories = data.categories;
|
|
if (!this.props.community) {
|
|
this.state.communityForm.category_id = data.categories[0].id;
|
|
}
|
|
this.setState(this.state);
|
|
} else if (res.op == UserOperation.CreateCommunity) {
|
|
let data = res.data as CommunityResponse;
|
|
this.state.loading = false;
|
|
this.props.onCreate(data.community);
|
|
}
|
|
// TODO is this necessary
|
|
else if (res.op == UserOperation.EditCommunity) {
|
|
let data = res.data as CommunityResponse;
|
|
this.state.loading = false;
|
|
this.props.onEdit(data.community);
|
|
}
|
|
}
|
|
}
|