@craftercms/studio-ui
Version:
Services, components, models & utils to build CrafterCMS authoring extensions.
104 lines (102 loc) • 3.68 kB
JavaScript
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Copyright (C) 2007-2022 Crafter Software Corporation. All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import React from 'react';
import { FormattedMessage, useIntl } from 'react-intl';
import Dialog from '@mui/material/Dialog';
import { useDispatch } from 'react-redux';
import '@uppy/core/dist/style.css';
import '@uppy/dashboard/dist/style.css';
import { closeConfirmDialog, closeUploadDialog, showConfirmDialog } from '../../state/actions/dialogs';
import { batchActions } from '../../state/actions/misc';
import { translations } from './translations';
import { UploadDialogContainer } from './UploadDialogContainer';
import MinimizedBar from '../MinimizedBar';
import { useEnhancedDialogState } from '../../hooks/useEnhancedDialogState';
export function UploadDialog(props) {
const { formatMessage } = useIntl();
const dispatch = useDispatch();
const { isMinimized, onMaximize, onMinimize, hasPendingChanges, onSubmittingAndOrPendingChange } =
useEnhancedDialogState();
const { open } = props;
const preventWrongDrop = (e) => {
e.stopPropagation();
e.preventDefault();
};
const setPendingChanges = (value) => {
onSubmittingAndOrPendingChange({
hasPendingChanges: value
});
};
const onClose = () => {
if (hasPendingChanges) {
dispatch(
showConfirmDialog({
body: formatMessage(translations.uploadInProgressConfirmation),
onOk: batchActions([closeConfirmDialog(), closeUploadDialog()]),
onCancel: closeConfirmDialog()
})
);
} else {
props.onClose();
}
};
return React.createElement(
React.Fragment,
null,
React.createElement(
Dialog,
{
open: open && !isMinimized,
keepMounted: isMinimized,
onDrop: preventWrongDrop,
onDragOver: preventWrongDrop,
onClose: onClose,
fullWidth: true,
maxWidth: 'md'
},
React.createElement(
UploadDialogContainer,
Object.assign({}, props, {
onClose: onClose,
onMinimized: onMinimize,
hasPendingChanges: hasPendingChanges,
setPendingChanges: setPendingChanges
})
)
),
React.createElement(MinimizedBar, {
open: isMinimized,
onMaximize: onMaximize,
title: React.createElement(FormattedMessage, { id: 'words.upload', defaultMessage: 'Upload' })
})
);
}
export default UploadDialog;