Skip to content

Commit 06e47df

Browse files
feat: Add suppressFlowMetricEvents field to flashbars (#3314)
1 parent 7650d53 commit 06e47df

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap

+3-1
Original file line numberDiff line numberDiff line change
@@ -8357,6 +8357,7 @@ use the \`id\` attribute, consider setting it on a parent element instead.",
83578357
"type": "string",
83588358
},
83598359
{
8360+
"analyticsTag": "",
83608361
"description": "Specifies flash messages that appear in the same order that they are listed.
83618362
The value is an array of flash message definition objects.
83628363
A flash message object contains the following properties:
@@ -8382,7 +8383,8 @@ If the \`action\` property is set, this property is ignored. **Deprecated**, rep
83828383
* \`id\` (string) - Specifies a unique flash message identifier. This property is used in two ways:
83838384
1. As a [keys](https://reactjs.org/docs/lists-and-keys.html#keys) source for React rendering.
83848385
2. To identify which flash message will be removed from the DOM when it is dismissed, to animate it out.
8385-
",
8386+
* \`analyticsMetadata\` (FlashbarProps.ItemAnalyticsMetadata) - (Optional) Specifies additional analytics-related metadata.
8387+
* \`suppressFlowMetricEvents\` - Prevent this item from generating events related to flow metrics.",
83868388
"name": "items",
83878389
"optional": false,
83888390
"type": "ReadonlyArray<FlashbarProps.MessageDefinition>",

src/flashbar/__tests__/analytics-metadata.test.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,12 @@ describe('Flashbar renders correct analytics metadata', () => {
216216
const wrapper = renderFlashbar({ items: [{ id: '0', type: 'success', loading: true }] });
217217
expect(wrapper.find(`[${DATA_ATTR_ANALYTICS_FLASHBAR}="info"]`)!.getElement()).toBeInTheDocument();
218218
});
219+
220+
test('adds no attribute if suppressFlowMetricEvents is set', () => {
221+
const wrapper = renderFlashbar({
222+
items: [{ id: '0', type: 'success', analyticsMetadata: { suppressFlowMetricEvents: true } }],
223+
});
224+
expect(wrapper.find(`[${DATA_ATTR_ANALYTICS_FLASHBAR}]`)).toBeNull();
225+
});
219226
});
220227
});

src/flashbar/flash.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ export const Flash = React.forwardRef(
114114
}
115115
}
116116

117-
const analyticsMetadata = getAnalyticsMetadataProps(props as BasePropsWithAnalyticsMetadata);
117+
const analyticsMetadata = getAnalyticsMetadataProps(
118+
props as BasePropsWithAnalyticsMetadata & FlashbarProps.MessageDefinition
119+
);
118120
const elementRef = useComponentMetadata('Flash', PACKAGE_VERSION, { ...analyticsMetadata });
119121
const mergedRef = useMergeRefs(ref, elementRef);
120122

@@ -176,7 +178,7 @@ export const Flash = React.forwardRef(
176178
getVisualContextClassname(type === 'warning' && !loading ? 'flashbar-warning' : 'flashbar'),
177179
initialHidden && styles['initial-hidden']
178180
)}
179-
{...analyticsAttributes}
181+
{...(analyticsMetadata.suppressFlowMetricEvents ? undefined : analyticsAttributes)}
180182
>
181183
<div className={styles['flash-body']}>
182184
<div className={styles['flash-focus-container']} tabIndex={-1}>

src/flashbar/interfaces.ts

+8
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ export namespace FlashbarProps {
2020
buttonText?: ButtonProps['children'];
2121
onButtonClick?: ButtonProps['onClick'];
2222
onDismiss?: ButtonProps['onClick'];
23+
analyticsMetadata?: FlashbarProps.ItemAnalyticsMetadata;
24+
}
25+
26+
export interface ItemAnalyticsMetadata {
27+
suppressFlowMetricEvents?: boolean;
2328
}
2429

2530
export interface I18nStrings {
@@ -65,6 +70,9 @@ export interface FlashbarProps extends BaseComponentProps {
6570
* * `id` (string) - Specifies a unique flash message identifier. This property is used in two ways:
6671
* 1. As a [keys](https://reactjs.org/docs/lists-and-keys.html#keys) source for React rendering.
6772
* 2. To identify which flash message will be removed from the DOM when it is dismissed, to animate it out.
73+
* * `analyticsMetadata` (FlashbarProps.ItemAnalyticsMetadata) - (Optional) Specifies additional analytics-related metadata.
74+
* * `suppressFlowMetricEvents` - Prevent this item from generating events related to flow metrics.
75+
* @analytics
6876
*/
6977
items: ReadonlyArray<FlashbarProps.MessageDefinition>;
7078

src/internal/base-component/index.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ export interface BasePropsWithAnalyticsMetadata {
4848
* Helper function to merge beta analytics metadata with the public analytics metadata api.
4949
* Beta analytics metadata will override the public values to allow for safe migration.
5050
*/
51-
export function getAnalyticsMetadataProps(props?: BasePropsWithAnalyticsMetadata) {
51+
export function getAnalyticsMetadataProps<T extends BasePropsWithAnalyticsMetadata>(
52+
props?: T
53+
): NonNullable<T['analyticsMetadata'] & T['__analyticsMetadata']> {
5254
return { ...props?.analyticsMetadata, ...props?.__analyticsMetadata };
5355
}

0 commit comments

Comments
 (0)