Disclosure
WAAPI animated disclosure component consisting of a root, details, summary, and content.
Disclosure.Root
takes an animationOptions
prop, which is an OptionalEffectTiming
object.
See MDN (opens in a new tab)
for more information.
The Disclosure.Details
optionally returns a render prop with an isOpen
boolean.
This can be used to conditionally render the Disclosure.Summary and Disclosure.Content.
All components, includeing Disclosure.Summary
and Disclosure.Content
, have an optional className
prop.
Installation
npm install @madeinhaus/disclosure
Import
import Disclosure from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
Usage
Disclosure.Root
The Disclosure.Root
component is used as a container for one or more Disclosure.Details
components. It accepts the following props:
className
: An optional string that can be used to add custom styles to theDisclosure.Root
container.animationOptions
: An object that specifies the duration and easing function of the animation that occurs when theDisclosure.Details
component is expanded or collapsed.
Disclosure.Details
The Disclosure.Details
component is used to wrap the content that will be revealed or hidden. It accepts the following props:
className
: An optional string that can be used to add custom styles to theDisclosure.Details
container.animationOptions
: An object that specifies the duration and easing function of the animation that occurs when theDisclosure.Details
component is expanded or collapsed.defaultOpen
: An optional boolean that determines whether theDisclosure.Details
component is initially expanded or collapsed.children
: A function or a ReactNode that is revealed or hidden when theDisclosure
trigger is clicked. If a function is passed, it receives an object with theisOpen
property, which is a boolean that indicates whether theDisclosure.Details
component is currently expanded or collapsed.
Disclosure.Summary
The Disclosure.Summary
component is used to create the trigger that reveals or hides the Disclosure.Details
component. It accepts the following props:
className
: An optional string that can be used to add custom styles to theDisclosure.Summary
trigger.
Disclosure.Content
The Disclosure.Content
component is used to create the trigger that reveals or hides the Disclosure.Details
component. It accepts the following props:
className
: An optional string that can be used to add custom styles to theDisclosure.Summary
trigger.
Examples
Basic Usage
import Disclosure from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
const DisclosureDemoBasic: React.FC = ({
items,
}: {
items: { heading: string; paragraph: string }[];
}) => {
return (
<Disclosure.Root>
{items.map(({ heading, paragraph }, index) => (
<Disclosure.Details key={index}>
<Disclosure.Summary>{heading}</Disclosure.Summary>
<Disclosure.Content>{paragraph}</Disclosure.Content>
</Disclosure.Details>
))}
</Disclosure.Root>
);
};
export default DisclosureDemoBasic;
Voluptate velit
Vel fringilla
Enim lobortis
Metus vulputate
Mauris augue
Usage With Render Prop
import Disclosure from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
const DisclosureDemoRenderProp: React.FC = ({
items,
}: {
items: { heading: string; paragraph: string }[];
}) => {
return (
<Disclosure.Root>
{items.map(({ heading, paragraph }, index) => (
<Disclosure.Details key={index}>
{({ isOpen }) => (
<>
<Disclosure.Summary>
{`${heading} - ${isOpen ? 'open' : 'closed'}`}
</Disclosure.Summary>
{isOpen && <Disclosure.Content>{paragraph}</Disclosure.Content>}
</>
)}
</Disclosure.Details>
))}
</Disclosure.Root>
);
};
export default DisclosureDemoRenderProp;
Voluptate velit - closed
Vel fringilla - closed
Enim lobortis - closed
Metus vulputate - closed
Mauris augue - closed
Usage With Styles
import Disclosure from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
import styles from './DisclosureDemo.module.css';
const DisclosureDemoWithStyles: React.FC = ({
items,
}: {
items: { heading: string; paragraph: string }[];
}) => {
return (
<Disclosure.Root className={styles.root}>
{items.map(({ heading, paragraph }, index) => (
<Disclosure.Details key={index}>
<Disclosure.Summary className={styles.summary}>{heading}</Disclosure.Summary>
<Disclosure.Content className={styles.content}>{paragraph}</Disclosure.Content>
</Disclosure.Details>
))}
</Disclosure.Root>
);
};
export default DisclosureDemoWithStyles;
Voluptate velit
Vel fringilla
Enim lobortis
Metus vulputate
Mauris augue
Usage as Controlled Accordion
import Disclosure, { RegisterDetails } from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
import styles from './DisclosureDemo.module.css';
const DisclosureDemoControlled: React.FC = ({
items,
}: {
items: { heading: string; paragraph: string }[];
}) => {
return (
<Disclosure.Root className={styles.root}>
{(registerDetails: RegisterDetails) =>
items.map(({ heading, paragraph }, index) => {
return (
<Disclosure.Details key={index} {...registerDetails()}>
<Disclosure.Summary className={styles.summary}>{heading}</Disclosure.Summary>
<Disclosure.Content className={styles.content}>{paragraph}</Disclosure.Content>
</Disclosure.Details>
);
})
}
</Disclosure.Root>
);
};
export default DisclosureDemoControlled;
Voluptate velit
Vel fringilla
Enim lobortis
Metus vulputate
Mauris augue
Usage as Controlled Accordion with isOpen
import Disclosure, { RegisterDetails } from '@madeinhaus/disclosure';
import '@madeinhaus/disclosure/dist/index.css';
import styles from './DisclosureDemo.module.css';
const DisclosureDemoControlledWithIsOpen: React.FC = () => {
return (
<Disclosure.Root defaultOpenIndex={2} className={styles.root}>
{(registerDetails: RegisterDetails) =>
items.map(({ heading, paragraph }, index) => {
return (
<Disclosure.Details key={index} {...registerDetails()}>
{({ isOpen }) => (
<>
<Disclosure.Summary className={styles.summary}>
{heading}: {isOpen ? 'isOpen' : ''}
</Disclosure.Summary>
<Disclosure.Content className={styles.content}>{paragraph}</Disclosure.Content>
</>
)}
</Disclosure.Details>
);
})
}
</Disclosure.Root>
);
};
export default DisclosureDemoControlledWithIsOpen;