Updated modals that use features to be async loaded with WrappedBundle

• Updated:
- modals that use features to be async loaded with WrappedBundle
This commit is contained in:
mgabdev
2020-08-18 11:05:00 -05:00
parent ddca693cfc
commit 1c2cb6a63a
4 changed files with 12 additions and 8 deletions

View File

@@ -2,7 +2,8 @@ import React from 'react'
import PropTypes from 'prop-types'
import { defineMessages, injectIntl } from 'react-intl'
import ModalLayout from './modal_layout'
import GroupCreate from '../../features/group_create'
import { GroupCreate } from '../../features/ui/util/async_components'
import WrappedBundle from '../../features/ui/util/wrapped_bundle'
const messages = defineMessages({
title: { id: 'create_group', defaultMessage: 'Create group' },
@@ -30,7 +31,7 @@ class GroupCreateModal extends React.PureComponent {
width={440}
onClose={onClose}
>
<GroupCreate onCloseModal={onClose} params={{ id: groupId }} />
<WrappedBundle component={GroupCreate} componentParams={{ id: groupId, onCloseModal: onClose }} />
</ModalLayout>
)
}