File tree 3 files changed +23
-13
lines changed
apps/frontend/ui/src/navigation/partials/OptionConcepts
3 files changed +23
-13
lines changed Original file line number Diff line number Diff line change 1
- import type { JSX } from "react" ;
1
+ import type { JSX , useState } from "react" ;
2
2
3
3
import { MenuList } from "@lib-components" ;
4
4
@@ -9,23 +9,29 @@ import { useSelectionState } from "@app-ui/navigation/partials/OptionConcepts/ho
9
9
10
10
type TProps = {
11
11
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 ;
13
17
} ;
14
18
15
19
export default function OptionConcepts ( {
16
20
concepts,
17
21
onSearch,
22
+ isReqestingConcepts,
23
+ useCheckedValuesState,
24
+ disableButton,
18
25
} : TProps ) : JSX . Element {
19
26
const classes = useOptionConceptsClasses ( ) ;
20
- const { checkedValues, onChange } = useSelectionState ( ) ;
27
+ const { checkedValues, onChange } = useSelectionState ( useCheckedValuesState ) ;
21
28
return (
22
29
< OptionLayoutTemplate
23
30
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 }
29
35
>
30
36
< MenuList
31
37
className = { classes . list }
Original file line number Diff line number Diff line change 1
- import { useState } from "react" ;
1
+ import type { useState } from "react" ;
2
2
import type { MenuProps as TMenuProps } from "@fluentui/react-components" ;
3
3
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
+
8
12
const onChange : TMenuProps [ "onCheckedValueChange" ] = (
9
13
_ ,
10
14
{ name, checkedItems } ,
File renamed without changes.
You can’t perform that action at this time.
0 commit comments