META-INF.resources.js.components.digital-signature-form.DigitalSignatureForm.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.digital.signature.web
Show all versions of com.liferay.digital.signature.web
Liferay Digital Signature Web
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import ClayButton from '@clayui/button';
import ClayCard from '@clayui/card';
import ClayForm from '@clayui/form';
import ClayLayout from '@clayui/layout';
import {useFormik} from 'formik';
import {
createResourceURL,
fetch,
navigate,
objectToFormData,
openToast,
} from 'frontend-js-web';
import React, {useContext} from 'react';
import {AppContext} from '../../AppContext';
import {
isEmail,
maxLength,
required,
validate,
withInvalidExtensions,
} from '../form/FormValidation';
import DigitalSignatureFormBase from './DigitalSignatureFormBase';
const defaultRecipient = {
email: '',
fullName: '',
};
const DigitalSignatureForm = ({fileEntries = [], history}) => {
const {allowedFileExtensions, baseResourceURL, portletNamespace} =
useContext(AppContext);
const urlParams = new URLSearchParams(window.location.href);
const backURL = urlParams.get(`${portletNamespace}backURL`);
const onGoBack = () => {
if (history) {
return history.goBack();
}
return navigate(backURL);
};
const onSubmit = async (values) => {
const fileEntryIds = values.fileEntries.map(
({fileEntryId}) => fileEntryId
);
const formDataValues = {
[`${portletNamespace}emailMessage`]: values.emailMessage,
[`${portletNamespace}emailSubject`]: values.emailSubject,
[`${portletNamespace}envelopeName`]: values.envelopeName,
[`${portletNamespace}fileEntryIds`]: fileEntryIds,
[`${portletNamespace}recipients`]: JSON.stringify(
values.recipients
),
};
try {
const response = await fetch(
createResourceURL(baseResourceURL, {
p_p_resource_id: '/digital_signature/add_ds_envelope',
}),
{
body: objectToFormData(formDataValues),
method: 'POST',
}
);
const {dsEnvelopeId} = await response.json();
if (dsEnvelopeId) {
openToast({
message: Liferay.Language.get(
'your-envelope-was-created-successfully'
),
title: Liferay.Language.get('success'),
type: 'success',
});
}
}
catch (error) {
openToast({
message: Liferay.Language.get('an-unexpected-error-occurred'),
title: Liferay.Language.get('error'),
type: 'danger',
});
}
onGoBack();
};
const getInitialErrors = () => {
if (fileEntries.length) {
return {
fileEntries: withInvalidExtensions(
fileEntries,
allowedFileExtensions
),
};
}
};
const onValidate = (values) => {
let errorList = {};
errorList = {
...validate(
{
emailMessage: [(v) => maxLength(v, 10000)],
emailSubject: [(v) => maxLength(v, 100), required],
envelopeName: [(v) => maxLength(v, 100), required],
fileEntries: [
(v) => withInvalidExtensions(v, allowedFileExtensions),
],
},
values
),
};
const recipientErrors = values.recipients.map((recipient) =>
validate(
{
email: [(v) => maxLength(v, 100), isEmail, required],
fullName: [required],
},
recipient
)
);
const withRecipientError = recipientErrors.some(
(recipient) => recipient?.email || recipient?.fullName
);
if (withRecipientError) {
errorList.recipients = recipientErrors;
}
return errorList;
};
const {
errors,
handleChange,
handleSubmit,
isSubmitting,
isValid,
setFieldValue,
values,
} = useFormik({
initialErrors: getInitialErrors(),
initialValues: {
emailMessage: '',
emailSubject: '',
envelopeName: '',
fileEntries,
recipients: [defaultRecipient],
},
onSubmit,
validate: onValidate,
});
return (
{Liferay.Language.get('new-digital-signature-envelope')}
10
}
type="submit"
>
{Liferay.Language.get('send')}
{Liferay.Language.get('cancel')}
);
};
export default DigitalSignatureForm;