38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
import React from 'react';
|
|
import { useIntl } from 'react-intl';
|
|
import { useDispatch } from 'react-redux';
|
|
import { getFetchClient, useNotification } from '@strapi/strapi/admin';
|
|
import { Button, EmptyStateLayout } from '@strapi/design-system';
|
|
import { EmptyDocuments } from '@strapi/icons/symbols';
|
|
|
|
|
|
import { exportAllConfig } from '../../state/actions/Config';
|
|
import ConfirmModal from '../ConfirmModal';
|
|
|
|
const FirstExport = () => {
|
|
const { post, get } = getFetchClient();
|
|
const { toggleNotification } = useNotification();
|
|
const dispatch = useDispatch();
|
|
const { formatMessage } = useIntl();
|
|
|
|
return (
|
|
<div>
|
|
<EmptyStateLayout
|
|
content={formatMessage({ id: 'config-sync.FirstExport.Message' })}
|
|
action={(
|
|
<ConfirmModal
|
|
type="export"
|
|
onSubmit={() => dispatch(exportAllConfig([], toggleNotification, formatMessage, post, get))}
|
|
trigger={(
|
|
<Button>{formatMessage({ id: 'config-sync.FirstExport.Button' })}</Button>
|
|
)}
|
|
/>
|
|
)}
|
|
icon={<EmptyDocuments width={160} />}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default FirstExport;
|