Skip to content

Commit 2d7c9cf

Browse files
committed
missing u for storybook
1 parent c488776 commit 2d7c9cf

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

apps/frontend/ui/src/navigation/partials/OptionConcepts/func.tsx

+14-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { JSX } from "react";
1+
import type { JSX, useState } from "react";
22

33
import { MenuList } from "@lib-components";
44

@@ -9,23 +9,29 @@ import { useSelectionState } from "@app-ui/navigation/partials/OptionConcepts/ho
99

1010
type TProps = {
1111
concepts: string[];
12-
onSearch: (value: string) => void;
12+
/* must be initialized with { concept: [] } */
13+
useCheckedValuesState: typeof useState<Record<string, string[]>>;
14+
onSearch: () => void;
15+
isReqestingConcepts: boolean;
16+
disableButton: boolean;
1317
};
1418

1519
export default function OptionConcepts({
1620
concepts,
1721
onSearch,
22+
isReqestingConcepts,
23+
useCheckedValuesState,
24+
disableButton,
1825
}: TProps): JSX.Element {
1926
const classes = useOptionConceptsClasses();
20-
const { checkedValues, onChange } = useSelectionState();
27+
const { checkedValues, onChange } = useSelectionState(useCheckedValuesState);
2128
return (
2229
<OptionLayoutTemplate
2330
header="Search through recongizable concepts"
24-
subtitle="Choose from the given list below"
25-
onSearch={() => {
26-
onSearch(checkedValues.concept[0]);
27-
}}
28-
disabledSearch={checkedValues.concept.length === 0}
31+
subtitle="Choose one from the given list below"
32+
onClick={onSearch}
33+
disableClick={disableButton}
34+
isLoading={isReqestingConcepts}
2935
>
3036
<MenuList
3137
className={classes.list}

apps/frontend/ui/src/navigation/partials/OptionConcepts/hooks.ts

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
1-
import { useState } from "react";
1+
import type { useState } from "react";
22
import type { MenuProps as TMenuProps } from "@fluentui/react-components";
33

4-
function useSelectionState() {
5-
const [checkedValues, setCheckedValues] = useState<Record<string, string[]>>({
6-
concept: [],
7-
});
4+
/**
5+
* @param useCheckedValuesState needs to be initialized with { concept: [] }
6+
*/
7+
function useSelectionState(
8+
useCheckedValuesState: typeof useState<Record<string, string[]>>,
9+
) {
10+
const [checkedValues, setCheckedValues] = useCheckedValuesState();
11+
812
const onChange: TMenuProps["onCheckedValueChange"] = (
913
_,
1014
{ name, checkedItems },

0 commit comments

Comments
 (0)