import React, { memo, useEffect, useState, useReducer } from 'react'; import PropTypes from 'prop-types'; import { cloneDeep, get } from 'lodash'; import { BackHeader, getQueryParameters, LoadingIndicatorPage, LiLink, PluginHeader, PopUpWarning, getYupInnerErrors, request, templateObject, } from 'strapi-helper-plugin'; import pluginId from '../../pluginId'; import { EditViewProvider } from '../../contexts/EditView'; import Container from '../../components/Container'; import Group from '../../components/Group'; import Inputs from '../../components/Inputs'; import SelectWrapper from '../../components/SelectWrapper'; import createYupSchema from './utils/schema'; import setDefaultForm from './utils/createDefaultForm'; import getInjectedComponents from './utils/getComponents'; import init from './init'; import reducer, { initialState } from './reducer'; import { LinkWrapper, MainWrapper, SubWrapper } from './components'; import { getMediaAttributes, cleanData, mapDataKeysToFilesToUpload, } from './utils/formatData'; import { getDefaultGroupValues, retrieveDisplayedGroups, retrieveGroupLayoutsToFetch, } from './utils/groups'; const getRequestUrl = path => `/${pluginId}/explorer/${path}`; function EditView({ currentEnvironment, emitEvent, layouts, location: { pathname, search }, history: { push }, match: { params: { slug, id }, }, plugins, }) { const abortController = new AbortController(); const { signal } = abortController; const layout = get(layouts, [slug], {}); const isCreatingEntry = id === 'create'; const attributes = get(layout, ['schema', 'attributes'], {}); const groups = retrieveDisplayedGroups(attributes); const groupLayoutsToGet = retrieveGroupLayoutsToFetch(groups); // States const [showWarningCancel, setWarningCancel] = useState(false); const [showWarningDelete, setWarningDelete] = useState(false); const [isSubmitting, setIsSubmitting] = useState(false); const [reducerState, dispatch] = useReducer(reducer, initialState, () => init(initialState, layout, isCreatingEntry) ); const state = reducerState.toJS(); const { didCheckErrors, errors, groupLayoutsData, initialData, modifiedData, isLoading, isLoadingForLayouts, } = state; const source = getQueryParameters(search, 'source'); const shouldShowLoader = isLoadingForLayouts || (!isCreatingEntry && isLoading); useEffect(() => { const fetchGroupLayouts = async () => { try { const data = await Promise.all( groupLayoutsToGet.map(uid => request(`/${pluginId}/groups/${uid}`, { method: 'GET', signal, }) ) ); const groupLayouts = data.reduce((acc, current) => { acc[current.data.uid] = current.data; return acc; }, {}); // Retrieve all the default values for the repeatables and init the form const defaultGroupValues = getDefaultGroupValues(groups, groupLayouts); dispatch({ type: 'GET_GROUP_LAYOUTS_SUCCEEDED', groupLayouts, defaultGroupValues, isCreatingEntry, }); } catch (err) { // TODO ADD A TRAD if (err.code !== 20) { strapi.notification.error('notification.error'); } } }; const fetchData = async () => { try { const data = await request(getRequestUrl(`${slug}/${id}`), { method: 'GET', params: { source }, signal, }); dispatch({ type: 'GET_DATA_SUCCEEDED', data, defaultForm: setDefaultForm(get(layout, ['schema', 'attributes'])), }); fetchGroupLayouts(); } catch (err) { if (err.code !== 20) { strapi.notification.error(`${pluginId}.error.record.fetch`); } } }; if (!isCreatingEntry) { fetchData(); } else { dispatch({ type: 'INIT', data: setDefaultForm(get(layout, ['schema', 'attributes'])), defaultForm: setDefaultForm(get(layout, ['schema', 'attributes'])), }); fetchGroupLayouts(); } return () => { abortController.abort(); }; // eslint-disable-next-line react-hooks/exhaustive-deps }, [id, isCreatingEntry, slug, source, pathname]); if (shouldShowLoader) { return ; } const toggleWarningCancel = () => setWarningCancel(prevState => !prevState); const toggleWarningDelete = () => setWarningDelete(prevState => !prevState); const redirectURL = search .split('redirectUrl=') .filter((_, index) => index !== 0) .join(''); const redirectToPreviousPage = () => push(redirectURL); const handleConfirmDelete = async () => { toggleWarningDelete(); setIsSubmitting(true); try { await request(getRequestUrl(`${slug}/${id}`), { method: 'DELETE', params: { source }, }); strapi.notification.success(`${pluginId}.success.record.delete`); redirectToPreviousPage(); } catch (err) { setIsSubmitting(false); strapi.notification.error(`${pluginId}.error.record.delete`); } }; const displayedFieldNameInHeader = get( layout, ['settings', 'mainField'], 'id' ); const pluginHeaderTitle = isCreatingEntry ? { id: `${pluginId}.containers.Edit.pluginHeader.title.new` } : templateObject({ mainField: displayedFieldNameInHeader }, initialData) .mainField; const displayedRelations = get(layout, ['layouts', 'editRelations'], []); const hasRelations = displayedRelations.length > 0; const fields = get(layout, ['layouts', 'edit'], []); const checkFormErrors = async () => { const schema = createYupSchema(layout, { groups: groupLayoutsData }); let errors = {}; try { // Validate the form using yup await schema.validate(modifiedData, { abortEarly: false }); } catch (err) { errors = getYupInnerErrors(err); } dispatch({ type: 'SET_ERRORS', errors, }); }; const handleChange = ({ target: { name, value, type } }) => { let inputValue = value; // Empty string is not a valid date, // Set the date to null when it's empty if (type === 'date' && value === '') { inputValue = null; } dispatch({ type: 'ON_CHANGE', keys: name.split('.'), value: inputValue, }); }; const handleSubmit = async e => { e.preventDefault(); const schema = createYupSchema(layout, { groups: groupLayoutsData }); try { // Validate the form using yup await schema.validate(modifiedData, { abortEarly: false }); // Set the loading state in the plugin header setIsSubmitting(true); emitEvent('willSaveEntry'); // Create an object containing all the paths of the media fields const filesMap = getMediaAttributes(layout, groupLayoutsData); // Create an object that maps the keys with the related files to upload const filesToUpload = mapDataKeysToFilesToUpload(filesMap, modifiedData); const cleanedData = cleanData( cloneDeep(modifiedData), layout, groupLayoutsData ); const formData = new FormData(); formData.append('data', JSON.stringify(cleanedData)); Object.keys(filesToUpload).forEach(key => { const files = filesToUpload[key]; files.forEach(file => { formData.append(`files.${key}`, file); }); }); // Change the request helper default headers so we can pass a FormData const headers = { 'X-Forwarded-Host': 'strapi' }; const method = isCreatingEntry ? 'POST' : 'PUT'; const endPoint = isCreatingEntry ? slug : `${slug}/${id}`; try { // Time to actually send the data await request( getRequestUrl(endPoint), { method, headers, params: { source }, body: formData, signal, }, false, false ); emitEvent('didSaveEntry'); redirectToPreviousPage(); } catch (err) { const error = get( err, ['response', 'payload', 'message', '0', 'messages', '0', 'id'], 'SERVER ERROR' ); setIsSubmitting(false); emitEvent('didNotSaveEntry', { error: err }); strapi.notification.error(error); } } catch (err) { setIsSubmitting(false); const errors = get(err, 'inner', []).reduce((acc, curr) => { acc[ curr.path .split('[') .join('.') .split(']') .join('') ] = [{ id: curr.message }]; return acc; }, {}); dispatch({ type: 'SET_ERRORS', errors, }); strapi.notification.error( `${pluginId}.containers.EditView.notification.errors` ); } }; return ( { dispatch({ type: 'ADD_RELATION', keys: name.split('.'), value, }); }} checkFormErrors={checkFormErrors} didCheckErrors={didCheckErrors} errors={errors} moveRelation={(dragIndex, overIndex, name) => { dispatch({ type: 'MOVE_FIELD', dragIndex, overIndex, keys: name.split('.'), }); }} onChange={handleChange} onRemove={keys => { dispatch({ type: 'REMOVE_RELATION', keys, }); }} pathname={pathname} resetErrors={() => { dispatch({ type: 'SET_ERRORS', errors: {}, }); }} resetGroupData={groupName => { dispatch({ type: 'RESET_GROUP_DATA', groupName, }); }} search={search} > redirectToPreviousPage()} />
{ toggleWarningCancel(); }, type: 'button', disabled: isSubmitting, // TODO STATE WHEN SUBMITING }, { kind: 'primary', label: `${pluginId}.containers.Edit.submit`, type: 'submit', loader: isSubmitting, style: isSubmitting ? { marginRight: '18px' } : {}, disabled: isSubmitting, // TODO STATE WHEN SUBMITING }, ]} subActions={ isCreatingEntry ? [] : [ { label: 'app.utils.delete', kind: 'delete', onClick: () => { toggleWarningDelete(); }, type: 'button', disabled: isSubmitting, // TODO STATE WHEN SUBMITING }, ] } title={pluginHeaderTitle} />
{fields.map((fieldsRow, key) => { if (fieldsRow.length === 0) { return null; } const [{ name }] = fieldsRow; const group = get(layout, ['schema', 'attributes', name], {}); const groupMetas = get( layout, ['metadatas', name, 'edit'], {} ); const groupValue = get( modifiedData, [name], group.repeatable ? [] : {} ); if (fieldsRow.length === 1 && group.type === 'group') { // Array containing all the keys with of the error object created by YUP // It is used only to know if whether or not we need to apply an orange border to the n+1 field item const groupErrorKeys = Object.keys(errors) .filter(errorKey => errorKey.includes(name)) .map(errorKey => errorKey .split('.') .slice(0, 2) .join('.') ); return ( { dispatch({ type: 'ADD_FIELD_TO_GROUP', keys: keys.split('.'), isRepeatable, }); }} groupErrorKeys={groupErrorKeys} groupValue={groupValue} key={key} isRepeatable={group.repeatable || false} name={name} modifiedData={modifiedData} moveGroupField={(dragIndex, overIndex, name) => { dispatch({ type: 'MOVE_FIELD', dragIndex, overIndex, keys: name.split('.'), }); }} onChange={handleChange} layout={get(groupLayoutsData, group.group, {})} pathname={pathname} removeField={(keys, shouldAddEmptyField) => { dispatch({ type: 'ON_REMOVE_FIELD', keys: keys.split('.'), shouldAddEmptyField, }); }} /> ); } return (
{fieldsRow.map(({ name }, index) => { return ( ); })}
); })}
{hasRelations && (
{displayedRelations.map(relationName => { const relation = get( layout, ['schema', 'attributes', relationName], {} ); const relationMetas = get( layout, ['metadatas', relationName, 'edit'], {} ); const value = get(modifiedData, [relationName], null); return ( ); })}
)}
    { emitEvent('willEditContentTypeLayoutFromEditView'); }} /> {getInjectedComponents( 'right.links', plugins, currentEnvironment, slug, source, emitEvent )}
{ dispatch({ type: 'RESET_FORM', }); toggleWarningCancel(); }} />
); } EditView.propTypes = { currentEnvironment: PropTypes.string.isRequired, emitEvent: PropTypes.func.isRequired, history: PropTypes.shape({ push: PropTypes.func.isRequired, }), layouts: PropTypes.object, location: PropTypes.shape({ pathname: PropTypes.string, search: PropTypes.string, }), match: PropTypes.shape({ params: PropTypes.shape({ id: PropTypes.string.isRequired, slug: PropTypes.string.isRequired, }), }), plugins: PropTypes.object, }; export default memo(EditView);