+
+
+ {loading ? (
+ loadingIndicator
+ ) : (
+
+ {hasSearch ? (
+
+ setSearchTerm(e?.target?.value)}
+ startAdornment={
+
+
+
+ }
+ />
+
+ ) : null}
+
+ {optionsDisplayed?.filter((item: any) => item?.text)?.length ? (
+ optionsDisplayed
+ ?.filter((item: any) => item?.text)
+ ?.map((x: any, idx: any, array: any) => {
+ const prev = array[idx - 1] || null;
+ return (
+ <>
+ {prev === null || prev?.category !== x?.category ? (
+
+ {x?.category}
+
+ ) : null}
+ {
+ onChange(x?.id, x?.selected);
+
+ if (!multipleSelect) {
+ setShowPopover(false);
+ }
+ }}
+ >
+
+ {x?.text}
+
+
+ >
+ );
+ })
+ ) : (
+
+
+ No data to show
+
+
+ )}
+
+ {hasClearSelection ? (
+
+ {
+
+ }
+
+ ) : null}
+
+ )}
+
+
+