Skip to content

Commit

Permalink
TASK: Replace react-portal with native portal for dialog component
Browse files Browse the repository at this point in the history
  • Loading branch information
grebaldi committed Jun 21, 2023
1 parent 085b05f commit ca2e1ac
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 22 deletions.
1 change: 0 additions & 1 deletion packages/react-ui-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
"react-dom": "^16.0.0",
"react-height": "^3.0.0",
"react-motion": "^0.5.0",
"react-portal": "^4.2.0",
"react-svg": "^11.1.2",
"react-textarea-autosize": "^8.3.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ exports[`<Dialog/> Content should render correctly. 1`] = `
`;

exports[`<Dialog/> Portal should render correctly. 1`] = `
<Portal>
<Portal
containerInfo={<body />}
>
<section
autoFocus={true}
className="dialogClassName wideClassName errorClassName"
Expand Down
10 changes: 3 additions & 7 deletions packages/react-ui-components/src/Dialog/dialog.spec.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {shallow} from 'enzyme';
import toJson from 'enzyme-to-json';
import React from 'react';
import {Portal} from 'react-portal';

import DialogWithOverlay, {DialogProps, DialogWithoutOverlay} from './dialog';

Expand Down Expand Up @@ -46,24 +45,21 @@ describe('<Dialog/>', () => {

it('should render the "dialog--wide" className from the "theme" prop if the style is wide.', () => {
const wrapper = shallow(<DialogWithOverlay {...props} style="wide"/>);
const portal = wrapper.find(Portal);
const section = portal.find('section');
const section = wrapper.find('section');

expect(section.prop('className')).toContain('wideClassName');
});

it('should render the "dialog--jumbo" className from the "theme" prop if the style is jumbo.', () => {
const wrapper = shallow(<DialogWithOverlay {...props} style="jumbo"/>);
const portal = wrapper.find(Portal);
const section = portal.find('section');
const section = wrapper.find('section');

expect(section.prop('className')).toContain('jumboClassName');
});

it('should render the "dialog--narrow" className from the "theme" prop if the style is narrow.', () => {
const wrapper = shallow(<DialogWithOverlay {...props} style="narrow"/>);
const portal = wrapper.find(Portal);
const section = portal.find('section');
const section = wrapper.find('section');

expect(section.prop('className')).toContain('narrowClassName');
});
Expand Down
25 changes: 12 additions & 13 deletions packages/react-ui-components/src/Dialog/dialog.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import mergeClassNames from 'classnames';
import React, { PureComponent, ReactNode } from 'react';
import { Portal } from 'react-portal';
import { createPortal } from 'react-dom';
import { Dialog, DialogManager } from './DialogManager';

type DialogType = 'success' | 'warn' | 'error';
Expand Down Expand Up @@ -180,18 +180,17 @@ class DialogWithOverlay extends PureComponent<DialogProps> {
return null;
}

return (
<Portal>
<section
{...rest}
className={sectionClassName}
role="dialog"
tabIndex={0}
onClick={this.handleOverlayClick}
>
<DialogWithoutOverlay {...this.props} />
</section>
</Portal>
return createPortal(
<section
{...rest}
className={sectionClassName}
role="dialog"
tabIndex={0}
onClick={this.handleOverlayClick}
>
<DialogWithoutOverlay {...this.props} />
</section>,
document.body
);
}

Expand Down

0 comments on commit ca2e1ac

Please sign in to comment.