@agilant/toga-blox 1.0.63 → 1.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Dropdown/Dropdown.js +1 -1
- package/dist/components/SearchInput/SearchInput.d.ts +1 -1
- package/dist/components/SearchInput/SearchInput.js +2 -2
- package/dist/components/SearchInput/SearchInput.stories.js +1 -1
- package/dist/components/SearchInput/SearchInput.types.d.ts +1 -0
- package/dist/components/SearchInput/SearchTextInput.js +18 -6
- package/package.json +1 -1
|
@@ -9,7 +9,7 @@ const Dropdown = ({ options, selectedOption, onOptionSelect, optionClasses = "fl
|
|
|
9
9
|
}, selectedOptionBgColor = "bg-gray-50", optionHoverBgColor = "hover:bg-gray-50", }) => {
|
|
10
10
|
const [showMenu, setShowMenu] = useState(false);
|
|
11
11
|
const toggleMenu = () => setShowMenu(!showMenu);
|
|
12
|
-
return (_jsxs("div", { className: `flex items-center justify-between relative min-w-32
|
|
12
|
+
return (_jsxs("div", { className: `flex items-center justify-between relative min-w-32 ${dropdownClasses}`, children: [_jsxs("div", { onClick: toggleMenu, className: `flex cursor-pointer items-center group h-full s`, children: [_jsx("div", { className: `font-bold ${optionClasses}`, children: selectedOption }), _jsx("div", { className: `transform transition-transform duration-200 mx-1 px-1 rounded-full relative ${icon.iconClasses} ${showMenu ? "rotate-180" : "rotate-0"}`, "data-testid": "dropdown-icon", children: getFontAwesomeIcon(icon.name) })] }), showMenu && (_jsx(AnimatePresence, { children: showMenu && (_jsx(motion.div, { initial: { opacity: 0, y: -10 }, animate: { opacity: 1, y: 0 }, exit: { opacity: 0, y: -10 }, className: `absolute top-0 z-10 right-0 left-0 ${menuClasses}`, children: _jsx("ul", { children: options.map((action) => (_jsxs("li", { className: `text-left px-4 py-2 cursor-pointer border-b bg-white ${action === selectedOption
|
|
13
13
|
? `{${selectedOptionBgColor} font-semibold}`
|
|
14
14
|
: `${optionHoverBgColor} text-black`}`, onClick: () => {
|
|
15
15
|
onOptionSelect(action);
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SearchInputProps } from "./SearchInput.types";
|
|
2
|
-
declare const SearchInput: <T extends object>({ bgColor, textHighlight, inputType, dropdownIconProp, dropdownOptions, selectedDropdownOption, onDropdownOptionSelect, searchItems, setSearchItems, toggleStatus, setToggleStatus, minValue, setMinValue, maxValue, setMaxValue, onChange, selectedValue, selectedDate, onDateSelect, selectedStartDate, onStartDateSelect, selectedEndDate, onEndDateSelect, handleFilter, column, setSearchCriteria, setEditingHeader, }: SearchInputProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
declare const SearchInput: <T extends object>({ bgColor, textHighlight, inputType, dropdownIconProp, dropdownOptions, selectedDropdownOption, onDropdownOptionSelect, searchItems, setSearchItems, toggleStatus, setToggleStatus, minValue, setMinValue, maxValue, setMaxValue, onChange, selectedValue, selectedDate, onDateSelect, selectedStartDate, onStartDateSelect, selectedEndDate, onEndDateSelect, handleFilter, column, setSearchCriteria, setEditingHeader, pillColor, }: SearchInputProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default SearchInput;
|
|
@@ -8,7 +8,7 @@ const SearchInput = ({ bgColor = "bg-sky-500", textHighlight = "text-sky-500", i
|
|
|
8
8
|
name: "chevronDown",
|
|
9
9
|
weight: "bold",
|
|
10
10
|
iconClasses: "text-black",
|
|
11
|
-
}, dropdownOptions = [], selectedDropdownOption = "", onDropdownOptionSelect, searchItems = [], setSearchItems, toggleStatus = false, setToggleStatus, minValue, setMinValue, maxValue, setMaxValue, onChange, selectedValue, selectedDate, onDateSelect, selectedStartDate, onStartDateSelect, selectedEndDate, onEndDateSelect, handleFilter, column, setSearchCriteria, setEditingHeader, }) => {
|
|
11
|
+
}, dropdownOptions = [], selectedDropdownOption = "", onDropdownOptionSelect, searchItems = [], setSearchItems, toggleStatus = false, setToggleStatus, minValue, setMinValue, maxValue, setMaxValue, onChange, selectedValue, selectedDate, onDateSelect, selectedStartDate, onStartDateSelect, selectedEndDate, onEndDateSelect, handleFilter, column, setSearchCriteria, setEditingHeader, pillColor, }) => {
|
|
12
12
|
const containerRef = useRef(null);
|
|
13
13
|
const inputRef = useRef(null);
|
|
14
14
|
useEffect(() => {
|
|
@@ -17,7 +17,7 @@ const SearchInput = ({ bgColor = "bg-sky-500", textHighlight = "text-sky-500", i
|
|
|
17
17
|
return (_jsx("div", { ref: containerRef, className: "", children: (() => {
|
|
18
18
|
switch (inputType) {
|
|
19
19
|
case "text":
|
|
20
|
-
return (_jsx(SearchTextInput, { dropdownIconProp: dropdownIconProp, dropdownOptions: dropdownOptions, selectedDropdownOption: selectedDropdownOption, onDropdownOptionSelect: onDropdownOptionSelect, searchItems: searchItems, setSearchItems: setSearchItems, handleFilter: handleFilter, setSearchCriteria: setSearchCriteria, column: column, setEditingHeader: setEditingHeader }));
|
|
20
|
+
return (_jsx(SearchTextInput, { dropdownIconProp: dropdownIconProp, dropdownOptions: dropdownOptions, selectedDropdownOption: selectedDropdownOption, onDropdownOptionSelect: onDropdownOptionSelect, searchItems: searchItems, setSearchItems: setSearchItems, handleFilter: handleFilter, setSearchCriteria: setSearchCriteria, column: column, setEditingHeader: setEditingHeader, pillColor: pillColor }));
|
|
21
21
|
case "number":
|
|
22
22
|
return (_jsx(SearchNumberInput, { dropdownIconProp: dropdownIconProp, dropdownOptions: dropdownOptions, selectedDropdownOption: selectedDropdownOption, onDropdownOptionSelect: onDropdownOptionSelect, toggleStatus: toggleStatus, setToggleStatus: setToggleStatus, minValue: minValue, maxValue: maxValue, setMinValue: setMinValue, setMaxValue: setMaxValue, handleFilter: handleFilter }));
|
|
23
23
|
case "multiSelect":
|
|
@@ -86,7 +86,7 @@ export const TextInput = Template.bind({});
|
|
|
86
86
|
TextInput.args = {
|
|
87
87
|
inputType: "text",
|
|
88
88
|
handleFilter: () => console.log("Filter applied"),
|
|
89
|
-
pillColor: "bg-
|
|
89
|
+
pillColor: "bg-red-500",
|
|
90
90
|
textHighlight: "text-sky-500",
|
|
91
91
|
dropdownIconProp: {
|
|
92
92
|
iconClasses: "text-sky-500",
|
|
@@ -14,7 +14,7 @@ const SearchTextInput = ({ pillColor = "bg-sky-500", textHighlight = "text-sky-5
|
|
|
14
14
|
const containerRef = useRef(null);
|
|
15
15
|
const [localSearchText, setLocalSearchText] = useState("");
|
|
16
16
|
const inputRef = useRef(null);
|
|
17
|
-
//
|
|
17
|
+
// On mount: focus input and load persisted search for this column if it exists.
|
|
18
18
|
useEffect(() => {
|
|
19
19
|
inputRef.current?.focus();
|
|
20
20
|
const stored = localStorage.getItem(localStorageKey);
|
|
@@ -31,54 +31,66 @@ const SearchTextInput = ({ pillColor = "bg-sky-500", textHighlight = "text-sky-5
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
}, [column.id, localStorageKey]);
|
|
34
|
+
// Helper to update local storage.
|
|
34
35
|
const updateLocalStorage = (criteria) => {
|
|
35
36
|
localStorage.setItem(localStorageKey, JSON.stringify(criteria));
|
|
36
37
|
};
|
|
37
38
|
const handleInputChange = (event) => {
|
|
38
39
|
setLocalSearchText(event.target.value);
|
|
39
40
|
};
|
|
41
|
+
// When a badge is clicked, remove from both searchItems and searchCriteria.
|
|
40
42
|
const handleSearchBadgeClick = (item) => {
|
|
41
|
-
// Remove from
|
|
43
|
+
// Remove from displayed badge items.
|
|
42
44
|
const newSearchItems = searchItems.filter((ele) => ele !== item);
|
|
43
45
|
setSearchItems && setSearchItems(newSearchItems);
|
|
44
|
-
// Remove from searchCriteria
|
|
46
|
+
// Remove corresponding criterion from searchCriteria.
|
|
45
47
|
setSearchCriteria((prev) => {
|
|
46
48
|
const newCriteria = prev.filter((crit) => crit.submittedSearchText !== item);
|
|
47
49
|
updateLocalStorage(newCriteria);
|
|
50
|
+
console.log("Removed badge criterion, newCriteria:", newCriteria);
|
|
48
51
|
return newCriteria;
|
|
49
52
|
});
|
|
50
53
|
};
|
|
54
|
+
// On Enter: append new search.
|
|
51
55
|
const handleKeyDown = (e) => {
|
|
56
|
+
console.log("handleKeyDown triggered, localSearchText:", localSearchText);
|
|
52
57
|
if (e.key === "Enter" && localSearchText.length > 0) {
|
|
53
58
|
e.preventDefault();
|
|
59
|
+
// Update the badge list.
|
|
54
60
|
setSearchItems && setSearchItems([...searchItems, localSearchText]);
|
|
55
61
|
handleFilter && handleFilter();
|
|
56
62
|
handleSubmit();
|
|
57
63
|
}
|
|
58
64
|
};
|
|
65
|
+
// Append a new criterion for this column.
|
|
59
66
|
const handleSubmit = () => {
|
|
60
67
|
const trimmed = localSearchText.trim();
|
|
68
|
+
console.log("handleSubmit triggered, trimmed:", trimmed);
|
|
61
69
|
if (!trimmed) {
|
|
62
|
-
//
|
|
70
|
+
// Remove any criteria for this column.
|
|
63
71
|
setSearchCriteria((prev) => {
|
|
64
72
|
const newCriteria = prev.filter((c) => c.searchColumn.id !== column.id);
|
|
65
73
|
updateLocalStorage(newCriteria);
|
|
74
|
+
console.log("Removed criterion, newCriteria:", newCriteria);
|
|
66
75
|
return newCriteria;
|
|
67
76
|
});
|
|
68
77
|
}
|
|
69
78
|
else {
|
|
70
|
-
//
|
|
79
|
+
// Append a new criterion.
|
|
71
80
|
setSearchCriteria((prev) => {
|
|
72
81
|
const newCriteria = [
|
|
73
82
|
...prev,
|
|
74
83
|
{ searchColumn: column, submittedSearchText: trimmed },
|
|
75
84
|
];
|
|
76
85
|
updateLocalStorage(newCriteria);
|
|
86
|
+
console.log("Appended criterion, newCriteria:", newCriteria);
|
|
77
87
|
return newCriteria;
|
|
78
88
|
});
|
|
79
89
|
}
|
|
80
90
|
setEditingHeader(null);
|
|
91
|
+
// Clear the input so a new search can be entered.
|
|
92
|
+
setLocalSearchText("");
|
|
81
93
|
};
|
|
82
|
-
return (_jsx("div", { ref: containerRef, className: "w-[425px]", children: _jsxs("div", { className: "flex flex-col border-2 border-navy-200 rounded-md", children: [_jsxs("div", { className: `flex ${searchItems.length ? "border-b-2" : ""} h-full`, children: [_jsx(Dropdown, { options: dropdownOptions, selectedOption: selectedDropdownOption, onOptionSelect: onDropdownOptionSelect, optionClasses: "px-4 py-1 h-full flex items-center", menuClasses: "bg-white min-w-
|
|
94
|
+
return (_jsx("div", { ref: containerRef, className: "w-[425px]", children: _jsxs("div", { className: "flex flex-col border-2 border-navy-200 rounded-md", children: [_jsxs("div", { className: `flex ${searchItems.length ? "border-b-2" : ""} h-full`, children: [_jsx(Dropdown, { options: dropdownOptions, selectedOption: selectedDropdownOption, onOptionSelect: onDropdownOptionSelect, optionClasses: "px-4 py-1 h-full flex items-center", menuClasses: "bg-white min-w-32xw rounded-md shadow-md", icon: dropdownIconProp, dropdownClasses: "border-0 border-r-2 w-auto " }), _jsx(Input, { focusRingColor: "focus:ring-transparent", hasAutoFocus: true, value: localSearchText, iconColor: "text-navy-400", onKeyDown: handleKeyDown, required: false, id: "", name: "", type: "text", onChange: handleInputChange, additionalClasses: "min-w-[250px] min-h-full text-gray flex", placeholder: "Search", hasIcons: true, firstIcon: localSearchText === "" ? (_jsx(AnimatePresence, { children: _jsx(motion.div, { initial: "initial", animate: "animate", exit: "exit", className: "text-navy-400", children: getFontAwesomeIcon("search", "regular") }) })) : undefined, iconPosition: "both", secondIcon: _jsx("div", { className: "border-transparent text-white min-w-9", children: _jsx(AnimatePresence, { children: localSearchText !== "" && (_jsxs(motion.div, { className: "flex justify-between items-center min-w-4 text-navy-400 hover:cursor-pointer hover:text-primary", initial: "initial", animate: "animate", exit: "exit", children: [_jsx("div", { className: "bg-navy-50 pr-2 pl-1 text-gray-500", onClick: () => setLocalSearchText(""), "data-testid": "clear-icon", children: getFontAwesomeIcon("xmark", "regular") }), _jsx("div", { className: `${textHighlight} text-sm hover:text-primary`, children: getFontAwesomeIcon("search", "solid") })] })) }) }), onIconClick: () => setLocalSearchText("") })] }), searchItems?.length ? (_jsx("div", { className: "flex flex-wrap bg-white py-2 px-2 rounded-md", children: searchItems.map((item, index) => (_jsx(Badge, { backgroundColor: pillColor, borderRadius: "rounded-full", hasRightIcon: true, icon: _jsx("div", { className: "text-white text-xxs", "data-testid": "item-clear-icon", children: getFontAwesomeIcon("xmark", "solid") }), iconSize: "text-sm", mobileIconLabel: item, onClick: () => handleSearchBadgeClick(item), text: _jsx(Text, { color: "text-white", fontFamily: "font-serif", size: "text-sm", tag: "span", text: item }), badgeContainerClasses: `${pillColor} p-1 max-w-fit min-w-20 rounded-full flex justify-between items-center text-white text-xs px-4 border-none mr-4 mb-1`, type: "span" }, index))) })) : null] }) }));
|
|
83
95
|
};
|
|
84
96
|
export default SearchTextInput;
|