305 lines
9 KiB
JavaScript
305 lines
9 KiB
JavaScript
'use strict';
|
|
|
|
import React, {Component} from 'react';
|
|
import PropTypes
|
|
from 'prop-types';
|
|
import {withTranslation} from '../lib/i18n';
|
|
import {
|
|
LinkButton,
|
|
requiresAuthenticatedUser,
|
|
Title,
|
|
withPageHelpers
|
|
} from '../lib/page'
|
|
import {
|
|
Button,
|
|
ButtonRow,
|
|
Dropdown,
|
|
Form,
|
|
FormSendMethod,
|
|
InputField,
|
|
StaticField,
|
|
TextArea,
|
|
withForm
|
|
} from '../lib/form';
|
|
import {withErrorHandling} from '../lib/error-handling';
|
|
import {
|
|
NamespaceSelect,
|
|
validateNamespace
|
|
} from '../lib/namespace';
|
|
import {DeleteModalDialog} from "../lib/modals";
|
|
import mailtrainConfig
|
|
from 'mailtrainConfig';
|
|
import {
|
|
getEditForm,
|
|
getTemplateTypes,
|
|
getTypeForm
|
|
} from './helpers';
|
|
import axios
|
|
from '../lib/axios';
|
|
import styles
|
|
from "../lib/styles.scss";
|
|
import {getUrl} from "../lib/urls";
|
|
import {TestSendModalDialog} from "./TestSendModalDialog";
|
|
import {withComponentMixins} from "../lib/decorator-helpers";
|
|
|
|
|
|
@withComponentMixins([
|
|
withTranslation,
|
|
withForm,
|
|
withErrorHandling,
|
|
withPageHelpers,
|
|
requiresAuthenticatedUser
|
|
])
|
|
export default class CUD extends Component {
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.templateTypes = getTemplateTypes(props.t);
|
|
|
|
this.state = {
|
|
showMergeTagReference: false,
|
|
elementInFullscreen: false,
|
|
showTestSendModal: false,
|
|
};
|
|
|
|
this.initForm({
|
|
onChangeBeforeValidation: {
|
|
type: ::this.onTypeChanged
|
|
}
|
|
});
|
|
|
|
this.sendModalGetDataHandler = ::this.sendModalGetData;
|
|
}
|
|
|
|
static propTypes = {
|
|
action: PropTypes.string.isRequired,
|
|
wizard: PropTypes.string,
|
|
entity: PropTypes.object
|
|
}
|
|
|
|
onTypeChanged(mutStateData, key, oldType, type) {
|
|
if (type) {
|
|
this.templateTypes[type].afterTypeChange(mutStateData);
|
|
}
|
|
}
|
|
|
|
loadFromEntityMutator(data) {
|
|
this.templateTypes[data.type].afterLoad(data);
|
|
}
|
|
|
|
componentDidMount() {
|
|
if (this.props.entity) {
|
|
this.getFormValuesFromEntity(this.props.entity, data => this.loadFromEntityMutator(data));
|
|
} else {
|
|
this.populateFormValues({
|
|
name: '',
|
|
description: '',
|
|
namespace: mailtrainConfig.user.namespace,
|
|
type: mailtrainConfig.editors[0],
|
|
text: '',
|
|
html: '',
|
|
data: {},
|
|
...this.templateTypes[mailtrainConfig.editors[0]].initData()
|
|
});
|
|
}
|
|
}
|
|
|
|
localValidateFormValues(state) {
|
|
const t = this.props.t;
|
|
|
|
for (const key of state.keys()) {
|
|
state.setIn([key, 'error'], null);
|
|
}
|
|
|
|
if (!state.getIn(['name', 'value'])) {
|
|
state.setIn(['name', 'error'], t('nameMustNotBeEmpty'));
|
|
}
|
|
|
|
const typeKey = state.getIn(['type', 'value']);
|
|
if (!typeKey) {
|
|
state.setIn(['type', 'error'], t('typeMustBeSelected'));
|
|
}
|
|
|
|
validateNamespace(t, state);
|
|
|
|
if (typeKey) {
|
|
this.templateTypes[typeKey].validate(state);
|
|
}
|
|
}
|
|
|
|
async doSave(stayOnPage) {
|
|
const t = this.props.t;
|
|
|
|
let exportedData = {};
|
|
if (this.props.entity) {
|
|
const typeKey = this.getFormValue('type');
|
|
exportedData = await this.templateTypes[typeKey].exportHTMLEditorData(this);
|
|
}
|
|
|
|
let sendMethod, url;
|
|
if (this.props.entity) {
|
|
sendMethod = FormSendMethod.PUT;
|
|
url = `rest/templates/${this.props.entity.id}`
|
|
} else {
|
|
sendMethod = FormSendMethod.POST;
|
|
url = 'rest/templates'
|
|
}
|
|
|
|
this.disableForm();
|
|
this.setFormStatusMessage('info', t('saving'));
|
|
|
|
const submitResponse = await this.validateAndSendFormValuesToURL(sendMethod, url, data => {
|
|
Object.assign(data, exportedData);
|
|
this.templateTypes[data.type].beforeSave(data);
|
|
});
|
|
|
|
if (submitResponse) {
|
|
if (stayOnPage) {
|
|
await this.getFormValuesFromURL(`rest/templates/${this.props.entity.id}`, data => this.loadFromEntityMutator(data));
|
|
this.enableForm();
|
|
this.clearFormStatusMessage();
|
|
this.setFlashMessage('success', t('templateSaved'));
|
|
|
|
} else if (this.props.entity) {
|
|
this.navigateToWithFlashMessage('/templates', 'success', t('templateSaved'));
|
|
|
|
} else {
|
|
this.navigateToWithFlashMessage(`/templates/${submitResponse}/edit`, 'success', t('templateSaved'));
|
|
}
|
|
} else {
|
|
this.enableForm();
|
|
this.setFormStatusMessage('warning', t('thereAreErrorsInTheFormPleaseFixThemAnd'));
|
|
}
|
|
}
|
|
|
|
async save() {
|
|
await this.doSave(true);
|
|
}
|
|
|
|
async submitHandler() {
|
|
await this.doSave(false);
|
|
}
|
|
|
|
async extractPlainText() {
|
|
const typeKey = this.getFormValue('type');
|
|
const exportedData = await this.templateTypes[typeKey].exportHTMLEditorData(this);
|
|
|
|
const html = exportedData.html;
|
|
if (!html) {
|
|
return;
|
|
}
|
|
|
|
if (this.isFormDisabled()) {
|
|
return;
|
|
}
|
|
|
|
this.disableForm();
|
|
|
|
const response = await axios.post(getUrl('rest/html-to-text'), { html });
|
|
|
|
this.updateFormValue('text', response.data.text);
|
|
|
|
this.enableForm();
|
|
}
|
|
|
|
async toggleMergeTagReference() {
|
|
this.setState({
|
|
showMergeTagReference: !this.state.showMergeTagReference
|
|
});
|
|
}
|
|
|
|
async setElementInFullscreen(elementInFullscreen) {
|
|
this.setState({
|
|
elementInFullscreen
|
|
});
|
|
}
|
|
|
|
showTestSendModal() {
|
|
this.setState({
|
|
showTestSendModal: true
|
|
});
|
|
}
|
|
|
|
async sendModalGetData() {
|
|
const typeKey = this.getFormValue('type');
|
|
const exportedData = await this.templateTypes[typeKey].exportHTMLEditorData(this);
|
|
|
|
return {
|
|
html: exportedData.html,
|
|
text: this.getFormValue('text')
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const t = this.props.t;
|
|
const isEdit = !!this.props.entity;
|
|
const canDelete = isEdit && this.props.entity.permissions.includes('delete');
|
|
|
|
const typeOptions = [];
|
|
for (const key of mailtrainConfig.editors) {
|
|
typeOptions.push({key, label: this.templateTypes[key].typeName});
|
|
}
|
|
|
|
const typeKey = this.getFormValue('type');
|
|
|
|
let editForm = null;
|
|
if (isEdit && typeKey) {
|
|
editForm = getEditForm(this, typeKey);
|
|
}
|
|
|
|
let typeForm = null;
|
|
if (typeKey) {
|
|
typeForm = getTypeForm(this, typeKey, isEdit);
|
|
}
|
|
|
|
|
|
return (
|
|
<div className={this.state.elementInFullscreen ? styles.withElementInFullscreen : ''}>
|
|
{isEdit &&
|
|
<TestSendModalDialog
|
|
visible={this.state.showTestSendModal}
|
|
onHide={() => this.setState({showTestSendModal: false})}
|
|
getDataAsync={this.sendModalGetDataHandler}/>
|
|
}
|
|
{canDelete &&
|
|
<DeleteModalDialog
|
|
stateOwner={this}
|
|
visible={this.props.action === 'delete'}
|
|
deleteUrl={`rest/templates/${this.props.entity.id}`}
|
|
backUrl={`/templates/${this.props.entity.id}/edit`}
|
|
successUrl="/templates"
|
|
deletingMsg={t('deletingTemplate')}
|
|
deletedMsg={t('templateDeleted')}/>
|
|
}
|
|
|
|
<Title>{isEdit ? t('editTemplate') : t('createTemplate')}</Title>
|
|
|
|
<Form stateOwner={this} onSubmitAsync={::this.submitHandler}>
|
|
<InputField id="name" label={t('name')}/>
|
|
<TextArea id="description" label={t('description')}/>
|
|
|
|
{isEdit
|
|
?
|
|
<StaticField id="type" className={styles.formDisabled} label={t('type')}>
|
|
{typeKey && this.templateTypes[typeKey].typeName}
|
|
</StaticField>
|
|
:
|
|
<Dropdown id="type" label={t('type')} options={typeOptions}/>
|
|
}
|
|
|
|
{typeForm}
|
|
|
|
<NamespaceSelect/>
|
|
|
|
{editForm}
|
|
|
|
<ButtonRow>
|
|
<Button type="submit" className="btn-primary" icon="check" label={isEdit ? t('save') : t('saveAndEditTemplate')}/>
|
|
{canDelete && <LinkButton className="btn-danger" icon="trash-alt" label={t('delete')} to={`/templates/${this.props.entity.id}/delete`}/> }
|
|
{isEdit && <Button className="btn-danger" icon="send" label={t('testSend')} onClickAsync={async () => this.setState({showTestSendModal: true})}/> }
|
|
</ButtonRow>
|
|
</Form>
|
|
</div>
|
|
);
|
|
}
|
|
}
|