Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(MessageBox - TypeScript): adjust onClose type #5975

Merged
merged 6 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions packages/main/src/components/MessageBox/MessageBox.cy.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import addIcon from '@ui5/webcomponents-icons/dist/add.js';
import { useState } from 'react';
import { Button, Icon, MessageBoxAction, MessageBoxType } from '../..';
import { MessageBox } from './index.js';

@@ -29,6 +30,54 @@ describe('MessageBox', () => {
});
});

it('close event', () => {
const callback = cy.spy().as('close');
function TestComp() {
const [open, setOpen] = useState(false);
const [type, setType] = useState('');
return (
<>
<Button
onClick={() => {
setOpen(true);
}}
>
Open
</Button>
<MessageBox
open={open}
onClose={(e) => {
callback(e);
setType(e.type);
setOpen(false);
}}
>
My Message Box Content
</MessageBox>
<span data-testid="eventType">{type}</span>
</>
);
}

cy.mount(<TestComp />);

cy.findByText('Open').click();
cy.findByText('OK').click();
cy.get('@close').should('have.been.calledOnce');
cy.wrap(callback).should(
'have.been.calledWith',
Cypress.sinon.match({
type: 'click'
})
);
cy.findByTestId('eventType').should('have.text', 'click');

cy.findByText('Open').click();
cy.realPress('Escape');
cy.get('@close').should('have.been.calledTwice');
cy.findByTestId('eventType').should('have.text', 'before-close');
});

it('Custom Button', () => {
const click = cy.spy().as('onButtonClick');
const close = cy.spy().as('onMessageBoxClose');
35 changes: 26 additions & 9 deletions packages/main/src/components/MessageBox/index.tsx
Original file line number Diff line number Diff line change
@@ -27,8 +27,8 @@ import {
WARNING,
YES
} from '../../i18n/i18n-defaults.js';
import { stopPropagation } from '../../internal/stopPropagation.js';
import type { ButtonPropTypes, DialogDomRef, DialogPropTypes } from '../../webComponents/index.js';
import type { Ui5CustomEvent } from '../../types/index.js';
import type { ButtonDomRef, ButtonPropTypes, DialogDomRef, DialogPropTypes } from '../../webComponents/index.js';
import { Button, Dialog, Icon, Title } from '../../webComponents/index.js';
import { Text } from '../Text/index.js';
import { classNames, styleData } from './MessageBox.module.css.js';
@@ -90,9 +90,17 @@ export interface MessageBoxPropTypes
*/
initialFocus?: MessageBoxActionType;
/**
* Callback to be executed when the `MessageBox` is closed (either by pressing on one of the `actions` or by pressing the `ESC` key). `event.detail.action` contains the pressed action button.
* Callback to be executed when the `MessageBox` is closed (either by pressing on one of the `actions` or by pressing the `ESC` key).
* `event.detail.action` contains the pressed action button.
*
* __Note:__ The target of the event differs according to how the user closed the dialog.
*/
onClose?: (event: CustomEvent<{ action: MessageBoxActionType }>) => void;
onClose?: (
//todo adjust this once enrichEventWithDetails forwards the native `detail`
event:
| Ui5CustomEvent<DialogDomRef, { action: undefined }>
| (MouseEvent & ButtonDomRef & { detail: { action: MessageBoxActionType } })
) => void;
}

const getIcon = (icon, type, classes) => {
@@ -188,9 +196,18 @@ const MessageBox = forwardRef<DialogDomRef, MessageBoxPropTypes>((props, ref) =>
}
};

const handleOnClose = (e) => {
const { action } = e.target.dataset;
stopPropagation(e);
const handleDialogClose: DialogPropTypes['onBeforeClose'] = (e) => {
if (typeof props.onBeforeClose === 'function') {
props.onBeforeClose(e);
}
if (e.detail.escPressed) {
// @ts-expect-error: todo check type
onClose(enrichEventWithDetails(e, { action: undefined }));
}
};

const handleOnClose: ButtonPropTypes['onClick'] = (e) => {
const { action } = e.currentTarget.dataset;
onClose(enrichEventWithDetails(e, { action }));
};

@@ -206,7 +223,7 @@ const MessageBox = forwardRef<DialogDomRef, MessageBoxPropTypes>((props, ref) =>
};

// @ts-expect-error: footer, headerText and onClose are already omitted via prop types
const { footer: _0, headerText: _1, onClose: _2, ...restWithoutOmitted } = rest;
const { footer: _0, headerText: _1, onClose: _2, onBeforeClose: _3, ...restWithoutOmitted } = rest;

const iconToRender = getIcon(icon, type, classNames);
const needsCustomHeader = !props.header && !!iconToRender;
@@ -216,7 +233,7 @@ const MessageBox = forwardRef<DialogDomRef, MessageBoxPropTypes>((props, ref) =>
open={open}
ref={ref}
className={clsx(classNames.messageBox, className)}
onClose={open ? handleOnClose : stopPropagation}
onBeforeClose={handleDialogClose}
accessibleNameRef={needsCustomHeader ? `${messageBoxId}-title ${messageBoxId}-text` : undefined}
accessibleRole={PopupAccessibleRole.AlertDialog}
{...restWithoutOmitted}

Unchanged files with check annotations Beta

function ResizeTestComponent({ onChange }: { onChange: (event: { width: number; height: number }) => void }) {
useEffect(() => {
attachResizeHandler(onChange);
}, []);

Check warning on line 12 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachResizeHandler(onChange);
}) {
useEffect(() => {
attachOrientationChangeHandler(onChange);
}, []);

Check warning on line 32 in packages/base/src/Device/index.cy.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'onChange'. Either include it or remove the dependency array
const unregister = () => {
detachOrientationChangeHandler(onChange);
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 79 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
? dataKeys.findIndex((key) => key === chartConfig.secondYAxis?.dataKey)
: 0;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 188 in packages/charts/src/components/BarChart/BarChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const onItemLegendClick = useLegendItemClick(onLegendClick);
const labelFormatter = useLabelFormatter(primaryDimension);
speed={2}
backgroundColor={ThemingParameters.sapContent_ImagePlaceholderBackground}
foregroundColor={ThemingParameters.sapContent_ImagePlaceholderForegroundColor}
backgroundOpacity={ThemingParameters.sapContent_DisabledOpacity as any}

Check warning on line 15 in packages/charts/src/components/BarChart/Placeholder.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
>
<rect x="20" y="10" width="1" height="135" />
<rect x="20" y="20" width="85" height="15" />
* @param measure {IChartMeasure} Current measure object
* @param dataElement {object} Current data element
*/
highlightColor?: (value: number, measure: MeasureConfig, dataElement: Record<string, any>) => CSSProperties['color'];

Check warning on line 69 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
}
interface DimensionConfig extends IChartDimension {
...rest
} = props;
const [componentRef, chartRef] = useSyncRef<any>(ref);

Check warning on line 148 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
const chartConfig: BulletChartProps['chartConfig'] = {
yAxisVisible: false,
);
} else {
onDataPointClick(
enrichEventWithDetails({} as any, {

Check warning on line 227 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
value: eventOrIndex.value,
dataKey: eventOrIndex.dataKey,
dataIndex: eventOrIndex.index,
{chartConfig.xAxisVisible &&
dimensions.map((dimension, index) => {
let AxisComponent;
const axisProps: any = {

Check warning on line 302 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
dataKey: dimension.accessor,
interval: dimension?.interval ?? (isBigDataSet ? 'preserveStart' : 0),
tickLine: index < 1,
/>
)}
{sortedMeasures?.map((element, index) => {
const chartElementProps: any = {

Check warning on line 440 in packages/charts/src/components/BulletChart/BulletChart.tsx

GitHub Actions / lint

Unexpected any. Specify a different type
isAnimationActive: !noAnimation
};
let labelPosition = 'top';