2019-04-16 23:04:23 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
2020-03-06 19:57:52 +00:00
|
|
|
import { Prompt } from 'inferno-router';
|
2019-04-16 23:04:23 +00:00
|
|
|
import { Site, SiteForm as SiteFormI } from '../interfaces';
|
|
|
|
import { WebSocketService } from '../services';
|
2020-01-24 18:59:50 +00:00
|
|
|
import { capitalizeFirstLetter, randomStr, setupTribute } from '../utils';
|
2020-01-06 16:22:51 +00:00
|
|
|
import autosize from 'autosize';
|
2020-01-24 18:59:50 +00:00
|
|
|
import Tribute from 'tributejs/src/Tribute.js';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
2019-04-16 23:04:23 +00:00
|
|
|
|
|
|
|
interface SiteFormProps {
|
|
|
|
site?: Site; // If a site is given, that means this is an edit
|
|
|
|
onCancel?(): any;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface SiteFormState {
|
|
|
|
siteForm: SiteFormI;
|
|
|
|
loading: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class SiteForm extends Component<SiteFormProps, SiteFormState> {
|
2020-01-24 18:59:50 +00:00
|
|
|
private id = `site-form-${randomStr()}`;
|
|
|
|
private tribute: Tribute;
|
2019-10-19 00:20:27 +00:00
|
|
|
private emptyState: SiteFormState = {
|
2019-04-16 23:04:23 +00:00
|
|
|
siteForm: {
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: true,
|
|
|
|
open_registration: true,
|
|
|
|
enable_nsfw: true,
|
2019-10-19 00:20:27 +00:00
|
|
|
name: null,
|
2019-04-16 23:04:23 +00:00
|
|
|
},
|
2019-10-19 00:20:27 +00:00
|
|
|
loading: false,
|
|
|
|
};
|
2019-04-16 23:04:23 +00:00
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
2020-01-24 18:59:50 +00:00
|
|
|
|
|
|
|
this.tribute = setupTribute();
|
2019-04-16 23:04:23 +00:00
|
|
|
this.state = this.emptyState;
|
2020-01-24 18:59:50 +00:00
|
|
|
|
2019-04-21 21:38:57 +00:00
|
|
|
if (this.props.site) {
|
|
|
|
this.state.siteForm = {
|
|
|
|
name: this.props.site.name,
|
|
|
|
description: this.props.site.description,
|
2019-12-11 20:21:47 +00:00
|
|
|
enable_downvotes: this.props.site.enable_downvotes,
|
|
|
|
open_registration: this.props.site.open_registration,
|
|
|
|
enable_nsfw: this.props.site.enable_nsfw,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-21 21:38:57 +00:00
|
|
|
}
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
2020-01-24 18:59:50 +00:00
|
|
|
var textarea: any = document.getElementById(this.id);
|
|
|
|
autosize(textarea);
|
|
|
|
this.tribute.attach(textarea);
|
|
|
|
textarea.addEventListener('tribute-replaced', () => {
|
|
|
|
this.state.siteForm.description = textarea.value;
|
|
|
|
this.setState(this.state);
|
|
|
|
autosize.update(textarea);
|
|
|
|
});
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
2020-04-10 20:55:57 +00:00
|
|
|
// Necessary to stop the loading
|
|
|
|
componentWillReceiveProps() {
|
|
|
|
this.state.loading = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
render() {
|
|
|
|
return (
|
2020-03-06 19:57:52 +00:00
|
|
|
<>
|
|
|
|
<Prompt
|
|
|
|
when={
|
|
|
|
!this.state.loading &&
|
2020-04-10 20:55:57 +00:00
|
|
|
!this.props.site &&
|
2020-03-06 19:57:52 +00:00
|
|
|
(this.state.siteForm.name || this.state.siteForm.description)
|
|
|
|
}
|
|
|
|
message={i18n.t('block_leaving')}
|
|
|
|
/>
|
|
|
|
<form onSubmit={linkEvent(this, this.handleCreateSiteSubmit)}>
|
|
|
|
<h5>{`${
|
|
|
|
this.props.site
|
|
|
|
? capitalizeFirstLetter(i18n.t('edit'))
|
|
|
|
: capitalizeFirstLetter(i18n.t('name'))
|
|
|
|
} ${i18n.t('your_site')}`}</h5>
|
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-12 col-form-label" htmlFor="create-site-name">
|
|
|
|
{i18n.t('name')}
|
|
|
|
</label>
|
|
|
|
<div class="col-12">
|
2019-12-11 20:21:47 +00:00
|
|
|
<input
|
2020-03-06 19:57:52 +00:00
|
|
|
type="text"
|
|
|
|
id="create-site-name"
|
|
|
|
class="form-control"
|
|
|
|
value={this.state.siteForm.name}
|
|
|
|
onInput={linkEvent(this, this.handleSiteNameChange)}
|
|
|
|
required
|
|
|
|
minLength={3}
|
|
|
|
maxLength={20}
|
2019-12-11 20:21:47 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-06 19:57:52 +00:00
|
|
|
<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.siteForm.description}
|
|
|
|
onInput={linkEvent(this, this.handleSiteDescriptionChange)}
|
|
|
|
class="form-control"
|
|
|
|
rows={3}
|
|
|
|
maxLength={10000}
|
2019-12-11 20:21:47 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-06 19:57:52 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="form-check">
|
|
|
|
<input
|
|
|
|
class="form-check-input"
|
|
|
|
id="create-site-downvotes"
|
|
|
|
type="checkbox"
|
|
|
|
checked={this.state.siteForm.enable_downvotes}
|
|
|
|
onChange={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleSiteEnableDownvotesChange
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
<label class="form-check-label" htmlFor="create-site-downvotes">
|
|
|
|
{i18n.t('enable_downvotes')}
|
|
|
|
</label>
|
|
|
|
</div>
|
2019-12-11 20:21:47 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-03-06 19:57:52 +00:00
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="form-check">
|
|
|
|
<input
|
|
|
|
class="form-check-input"
|
|
|
|
id="create-site-enable-nsfw"
|
|
|
|
type="checkbox"
|
|
|
|
checked={this.state.siteForm.enable_nsfw}
|
|
|
|
onChange={linkEvent(this, this.handleSiteEnableNsfwChange)}
|
|
|
|
/>
|
|
|
|
<label
|
|
|
|
class="form-check-label"
|
|
|
|
htmlFor="create-site-enable-nsfw"
|
|
|
|
>
|
|
|
|
{i18n.t('enable_nsfw')}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="form-check">
|
|
|
|
<input
|
|
|
|
class="form-check-input"
|
|
|
|
id="create-site-open-registration"
|
|
|
|
type="checkbox"
|
|
|
|
checked={this.state.siteForm.open_registration}
|
|
|
|
onChange={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleSiteOpenRegistrationChange
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
<label
|
|
|
|
class="form-check-label"
|
|
|
|
htmlFor="create-site-open-registration"
|
|
|
|
>
|
|
|
|
{i18n.t('open_registration')}
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group row">
|
|
|
|
<div class="col-12">
|
|
|
|
<button type="submit" class="btn btn-secondary mr-2">
|
|
|
|
{this.state.loading ? (
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
) : this.props.site ? (
|
|
|
|
capitalizeFirstLetter(i18n.t('save'))
|
|
|
|
) : (
|
|
|
|
capitalizeFirstLetter(i18n.t('create'))
|
|
|
|
)}
|
2019-10-19 00:20:27 +00:00
|
|
|
</button>
|
2020-03-06 19:57:52 +00:00
|
|
|
{this.props.site && (
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="btn btn-secondary"
|
|
|
|
onClick={linkEvent(this, this.handleCancel)}
|
|
|
|
>
|
|
|
|
{i18n.t('cancel')}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
2019-04-16 23:04:23 +00:00
|
|
|
</div>
|
2020-03-06 19:57:52 +00:00
|
|
|
</form>
|
|
|
|
</>
|
2019-04-16 23:04:23 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCreateSiteSubmit(i: SiteForm, event: any) {
|
|
|
|
event.preventDefault();
|
|
|
|
i.state.loading = true;
|
|
|
|
if (i.props.site) {
|
|
|
|
WebSocketService.Instance.editSite(i.state.siteForm);
|
|
|
|
} else {
|
|
|
|
WebSocketService.Instance.createSite(i.state.siteForm);
|
|
|
|
}
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSiteNameChange(i: SiteForm, event: any) {
|
|
|
|
i.state.siteForm.name = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSiteDescriptionChange(i: SiteForm, event: any) {
|
|
|
|
i.state.siteForm.description = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-12-11 20:21:47 +00:00
|
|
|
handleSiteEnableNsfwChange(i: SiteForm, event: any) {
|
|
|
|
i.state.siteForm.enable_nsfw = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSiteOpenRegistrationChange(i: SiteForm, event: any) {
|
|
|
|
i.state.siteForm.open_registration = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSiteEnableDownvotesChange(i: SiteForm, event: any) {
|
|
|
|
i.state.siteForm.enable_downvotes = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-16 23:04:23 +00:00
|
|
|
handleCancel(i: SiteForm) {
|
|
|
|
i.props.onCancel();
|
|
|
|
}
|
|
|
|
}
|