From 71c95963365d1cf29ddd63b526999166ed590dcd Mon Sep 17 00:00:00 2001
From: Nikhil Tomar <63502271+2nikhiltom@users.noreply.github.com>
Date: Sat, 7 Sep 2024 22:20:01 +0530
Subject: [PATCH] fix(ts): adds types to next/ListBoxTrigger
next/ListBoxSelection tsx (#17325)
* fix(17292): rename .js to .tsx
* fix(17292): convert ListBoxTigger and Selection to TS
---
.../src/components/ComboBox/ComboBox.tsx | 1 -
...stBoxSelection.js => ListBoxSelection.tsx} | 78 ++++++++++++++--
.../components/ListBox/next/ListBoxTrigger.js | 70 ---------------
.../ListBox/next/ListBoxTrigger.tsx | 90 +++++++++++++++++++
.../src/components/ListBox/next/index.js | 9 --
.../src/components/ListBox/next/index.ts | 15 ++++
.../MultiSelect/FilterableMultiSelect.tsx | 8 +-
7 files changed, 178 insertions(+), 93 deletions(-)
rename packages/react/src/components/ListBox/next/{ListBoxSelection.js => ListBoxSelection.tsx} (58%)
delete mode 100644 packages/react/src/components/ListBox/next/ListBoxTrigger.js
create mode 100644 packages/react/src/components/ListBox/next/ListBoxTrigger.tsx
delete mode 100644 packages/react/src/components/ListBox/next/index.js
create mode 100644 packages/react/src/components/ListBox/next/index.ts
diff --git a/packages/react/src/components/ComboBox/ComboBox.tsx b/packages/react/src/components/ComboBox/ComboBox.tsx
index 8266ad21dbd8..eb26d126bbfe 100644
--- a/packages/react/src/components/ComboBox/ComboBox.tsx
+++ b/packages/react/src/components/ComboBox/ComboBox.tsx
@@ -887,7 +887,6 @@ const ComboBox = forwardRef(
)}
diff --git a/packages/react/src/components/ListBox/next/ListBoxSelection.js b/packages/react/src/components/ListBox/next/ListBoxSelection.tsx
similarity index 58%
rename from packages/react/src/components/ListBox/next/ListBoxSelection.js
rename to packages/react/src/components/ListBox/next/ListBoxSelection.tsx
index 1ecc3a5b743b..726c84810d8a 100644
--- a/packages/react/src/components/ListBox/next/ListBoxSelection.js
+++ b/packages/react/src/components/ListBox/next/ListBoxSelection.tsx
@@ -1,5 +1,5 @@
/**
- * Copyright IBM Corp. 2016, 2023
+ * Copyright IBM Corp. 2016, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
@@ -20,14 +20,66 @@ import { usePrefix } from '../../../internal/usePrefix';
export const translationIds = {
'clear.all': 'clear.all',
'clear.selection': 'clear.selection',
-};
+} as const;
+
+export type TranslationKey = keyof typeof translationIds;
-const defaultTranslations = {
- [translationIds['clear.all']]: 'Clear all selected items',
- [translationIds['clear.selection']]: 'Clear selected item',
+const defaultTranslations: Record = {
+ 'clear.all': 'Clear all selected items',
+ 'clear.selection': 'Clear selected item',
};
-const defaultTranslateWithId = (id) => defaultTranslations[id];
+function defaultTranslateWithId(id: TranslationKey): string {
+ return defaultTranslations[id];
+}
+export interface ListBoxSelectionProps {
+ /**
+ * Specify a function to be invoked when a user interacts with the clear
+ * selection element.
+ */
+ clearSelection: (
+ event:
+ | React.MouseEvent
+ | React.KeyboardEvent
+ ) => void;
+ /**
+ * Specify an optional `selectionCount` value that will be used to determine
+ * whether the selection should display a badge or a single clear icon.
+ */
+ selectionCount?: number;
+ /**
+ * i18n hook used to provide the appropriate description for the given menu
+ * icon. This function takes in an id defined in `translationIds` and should
+ * return a string message for that given message id.
+ */
+ translateWithId?: (id: TranslationKey) => string;
+ /**
+ * Specify whether or not the clear selection element should be disabled
+ */
+ disabled?: boolean;
+ /**
+ * Specify an optional `onClearSelection` handler that is called when the underlying
+ * element is cleared
+ */
+ onClearSelection?: (event: React.MouseEvent) => void;
+ /**
+ * Specify an optional `onClick` handler that is called when the underlying
+ * clear selection element is clicked
+ */
+ onClick?: React.MouseEventHandler;
+
+ /**
+ * Specify an optional `onKeyDown` handler that is called when the underlying
+ * clear selection element fires a keydown event
+ */
+ onKeyDown?: React.KeyboardEventHandler;
+
+ /**
+ * Specify an optional `onMouseUp` handler that is called when the underlying
+ * clear selection element fires a mouseup event
+ */
+ onMouseUp?: React.MouseEventHandler;
+}
function ListBoxSelection({
clearSelection,
@@ -36,7 +88,7 @@ function ListBoxSelection({
disabled,
onClearSelection,
...rest
-}) {
+}: ListBoxSelectionProps) {
const prefix = usePrefix();
const className = cx(`${prefix}--list-box__selection`, {
[`${prefix}--tag--filter`]: selectionCount,
@@ -52,7 +104,7 @@ function ListBoxSelection({
}
);
- function onClick(event) {
+ function onClick(event: React.MouseEvent) {
event.stopPropagation();
if (disabled) {
return;
@@ -66,7 +118,9 @@ function ListBoxSelection({
if (selectionCount) {
return (