-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccordion.tsx
More file actions
71 lines (65 loc) · 1.75 KB
/
Accordion.tsx
File metadata and controls
71 lines (65 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
* Copyright (c) 2019-2026 by Brockmann Consult Development team
* Permissions are hereby granted under the terms of the MIT License:
* https://opensource.org/licenses/MIT.
*/
import MuiAccordion from "@mui/material/Accordion";
import MuiAccordionDetails from "@mui/material/AccordionDetails";
import MuiAccordionSummary from "@mui/material/AccordionSummary";
import MuiTypography from "@mui/material/Typography";
import type { ComponentState, ComponentProps } from "@/index";
import { Children } from "@/index";
import { Icon } from "./Icon";
import type { SyntheticEvent } from "react";
interface AccordionState extends ComponentState {
label?: string;
icon?: string;
expanded?: boolean;
disabled?: boolean;
}
interface AccordionProps extends ComponentProps, AccordionState {}
export const Accordion = ({
id,
style,
label,
icon,
expanded,
disabled,
children: nodes,
onChange,
}: AccordionProps) => {
const handleChange = (_event: SyntheticEvent, isExpanded: boolean) => {
if (id) {
onChange?.({
componentType: "Accordion",
id,
property: "expanded",
value: isExpanded,
});
}
};
return (
<div>
<MuiAccordion
id={id}
style={style}
expanded={expanded}
disabled={disabled}
onChange={handleChange}
>
<MuiAccordionSummary
expandIcon={icon ? <Icon iconName={icon} /> : undefined}
>
{label ? (
<MuiTypography component="span">{label}</MuiTypography>
) : null}
</MuiAccordionSummary>
{nodes && (
<MuiAccordionDetails>
<Children nodes={nodes} onChange={onChange} />
</MuiAccordionDetails>
)}
</MuiAccordion>
</div>
);
};