mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-22 18:26:39 +02:00
150 lines
5.5 KiB
TypeScript
150 lines
5.5 KiB
TypeScript
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2020 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
import React, { useState } from 'react';
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
import RelatedPatterns from '../../components/RelatedPatterns';
|
|
import Pattern from '../../constants/Pattern';
|
|
import DetailsLayout from '../../layouts/DetailsLayout';
|
|
import Block from '../../placeholders/Block';
|
|
import BrowserFrame from '../../placeholders/BrowserFrame';
|
|
import Rectangle from '../../placeholders/Rectangle';
|
|
import Triangle from '../../placeholders/Triangle';
|
|
|
|
interface ItemProps {
|
|
index: number;
|
|
title: React.ReactNode;
|
|
}
|
|
|
|
const Details: React.FC<{}> = () => {
|
|
const [activeItem, setActiveItem] = useState(-1);
|
|
|
|
const Item: React.FC<ItemProps> = ({ index, title, children }) => {
|
|
const isOpened = (index === activeItem);
|
|
const click = () => setActiveItem(isOpened ? -1 : index);
|
|
return (
|
|
<>
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
cursor: 'pointer',
|
|
display: 'flex',
|
|
justifyContent: 'space-between',
|
|
padding: '16px 0',
|
|
}}
|
|
onClick={click}
|
|
>
|
|
{title}
|
|
<Triangle size={8} corner={isOpened ? 't' : 'b'} />
|
|
</div>
|
|
<div
|
|
style={{
|
|
display: isOpened ? 'block' : 'none',
|
|
marginBottom: '16px',
|
|
}}
|
|
>
|
|
{children}
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<DetailsLayout pattern={Pattern.QuestionsAndAnswers}>
|
|
<Helmet>
|
|
<meta name="description" content="Create a questions and answers section with CSS flexbox" />
|
|
<meta name="keywords" content="css accordion, css faq, css flexbox" />
|
|
</Helmet>
|
|
<div className='p-8 pb-20'>
|
|
<BrowserFrame
|
|
content={(
|
|
<div
|
|
style={{
|
|
alignItems: 'center',
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
height: '100%',
|
|
justifyContent: 'center',
|
|
padding: '8px',
|
|
}}
|
|
>
|
|
<div style={{ width: '60%' }}>
|
|
<div
|
|
style={{
|
|
margin: '0 auto',
|
|
paddingBottom: '24px',
|
|
width: '200px',
|
|
}}
|
|
>
|
|
<Rectangle />
|
|
</div>
|
|
<div
|
|
style={{
|
|
borderBottom: '1px solid rgba(0, 0, 0, 0.3)',
|
|
borderTop: '1px solid rgba(0, 0, 0, 0.3)',
|
|
}}
|
|
>
|
|
<Item
|
|
index={0}
|
|
title={<div style={{ width: '40%' }}><Rectangle /></div>}
|
|
>
|
|
<Block numberOfBlocks={10} />
|
|
</Item>
|
|
</div>
|
|
<div
|
|
style={{
|
|
borderBottom: '1px solid rgba(0, 0, 0, 0.3)',
|
|
}}
|
|
>
|
|
<Item
|
|
index={1}
|
|
title={<div style={{ width: '80%' }}><Rectangle /></div>}
|
|
>
|
|
<Block numberOfBlocks={15} />
|
|
</Item>
|
|
</div>
|
|
<div style={{ borderBottom: '1px solid rgba(0, 0, 0, 0.3)' }}>
|
|
<Item
|
|
index={2}
|
|
title={<div style={{ width: '60%' }}><Rectangle /></div>}
|
|
>
|
|
<Block numberOfBlocks={10} />
|
|
</Item>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
source={`
|
|
<!-- Each question and answer item -->
|
|
<div style="
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
|
|
">
|
|
<!-- Heading -->
|
|
<div style="
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
">
|
|
<!-- Question -->
|
|
...
|
|
|
|
<!-- The toggle icon sticks to the right -->
|
|
...
|
|
</div>
|
|
|
|
<!-- Answer -->
|
|
</div>
|
|
`}
|
|
/>
|
|
</div>
|
|
|
|
<RelatedPatterns patterns={[Pattern.Accordion]} />
|
|
</DetailsLayout>
|
|
);
|
|
};
|
|
|
|
export default Details;
|