This commit is contained in:
William Tran 2021-05-24 21:29:45 -04:00
parent fa1ad02690
commit 0bf1033c4a
3 changed files with 137 additions and 168 deletions

View File

@ -3,6 +3,7 @@
} }
.contentHeading { .contentHeading {
font-size: 1.5rem;
margin: 1rem 0 1rem 0; margin: 1rem 0 1rem 0;
color: var(--blue-2); color: var(--blue-2);
} }

View File

@ -21,6 +21,12 @@ interface Props {
children: ReactNode; children: ReactNode;
} }
interface ChildProps {
headings: Heading[];
currentIndex: number;
link: Link;
}
export const OrganizedContent: React.FC<Props> = ({ export const OrganizedContent: React.FC<Props> = ({
headings, headings,
currentIndex, currentIndex,
@ -28,26 +34,70 @@ export const OrganizedContent: React.FC<Props> = ({
link: Link, link: Link,
}) => { }) => {
const isReadAll = headings[currentIndex].name === "Read All"; const isReadAll = headings[currentIndex].name === "Read All";
const prevHeading =
currentIndex > 0 && headings[currentIndex - 1].name !== "Read All"
? headings[currentIndex - 1]
: undefined;
const nextHeading =
currentIndex < headings.length - 1 && !isReadAll
? headings[currentIndex + 1]
: undefined;
const isMobile = false; const isMobile = false;
if (!isMobile) { if (isMobile) {
return (
<div>
{isReadAll ? (
<div>
{headings
.filter(
(heading: { name: string }) => heading.name !== "Read All"
)
.map((heading) => (
<div key={heading.url}>
<h2 className={styles.contentHeading}>{heading.name}</h2>
{heading.content}
</div>
))}
</div>
) : (
<h2 className={styles.contentHeading}>
{headings[currentIndex].name}
</h2>
)}
{children}
<Footer headings={headings} currentIndex={currentIndex} link={Link} />
</div>
);
} else {
return ( return (
<div className={styles.organizedContent}> <div className={styles.organizedContent}>
<Nav headings={headings} currentIndex={currentIndex} link={Link} />
<div>
{isReadAll ? (
<div>
{headings
.filter(
(heading: { name: string }) => heading.name !== "Read All"
)
.map((heading) => (
<div key={heading.url}>
<h2 className={styles.contentHeading}>{heading.name}</h2>
{heading.content}
</div>
))}
</div>
) : (
<h2 className={styles.contentHeading}>
{headings[currentIndex].name}
</h2>
)}
{children}
<Footer headings={headings} currentIndex={currentIndex} link={Link} />
</div>
</div>
);
}
};
const Nav: React.FC<ChildProps> = ({ headings, currentIndex, link: Link }) => {
return (
<div className={styles.nav}> <div className={styles.nav}>
{headings.map((heading, index) => ( {headings.map((heading, index) => (
<div <div
className={ className={index === currentIndex ? styles.selectedHeadingArea : ""}
index === currentIndex ? styles.selectedHeadingArea : ""
}
key={heading.url} key={heading.url}
> >
<div <div
@ -70,155 +120,71 @@ export const OrganizedContent: React.FC<Props> = ({
</div> </div>
))} ))}
</div> </div>
<div>
{!isReadAll ? (
<h2 className={styles.contentHeading}>
{headings[currentIndex].name}
</h2>
) : (
<div>
{headings
.filter(
(heading: { name: string }) => heading.name !== "Read All"
)
.map((heading) => (
<div key={heading.url}>
<h2 className={styles.contentHeading}>{heading.name}</h2>
{heading.content}
</div>
))}
</div>
)}
{children}
<div className={styles.footer}>
{prevHeading && (
<div className={styles.clickable}>
<Link url={prevHeading.url}>
<div className={styles.footerSection}>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="9"
viewBox="0 0 14 9"
className={styles.arrow + " " + styles.prevArrow}
>
<path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" />
</svg>
<div>
<div className={styles.prevNext}>Previous</div>
<div className={styles.arrowHeading}>
{prevHeading.name}
</div>
</div>
</div>
</Link>
</div>
)}
<div></div>
{nextHeading && (
<div className={styles.clickable}>
<Link url={nextHeading.url}>
<div className={styles.footerSection}>
<div>
<div className={styles.prevNext + " " + styles.nextText}>
Next
</div>
<div className={styles.arrowHeading}>
{nextHeading.name}
</div>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
width="14"
height="9"
viewBox="0 0 14 9"
className={styles.arrow + " " + styles.nextArrow}
>
<path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" />
</svg>
</div>
</Link>
</div>
)}
</div>
</div>
</div>
); );
} else { };
return (
<div> const Footer: React.FC<ChildProps> = ({
{!isReadAll ? ( headings,
<h2 className={styles.contentHeading}> currentIndex,
{headings[currentIndex].name} link: Link,
</h2> }) => {
) : ( const isReadAll = headings[currentIndex].name === "Read All";
<div> const prevHeading =
{headings currentIndex > 0 && headings[currentIndex - 1].name !== "Read All"
.filter( ? headings[currentIndex - 1]
(heading: { name: string }) => heading.name !== "Read All" : undefined;
) const nextHeading =
.map((heading) => ( currentIndex < headings.length - 1 && !isReadAll
<div key={heading.url}> ? headings[currentIndex + 1]
<h2 className={styles.contentHeading}>{heading.name}</h2> : undefined;
{heading.content}
</div> return (
))} <div className={styles.footer}>
</div> {prevHeading && (
)} <div className={styles.clickable}>
{children} <Link url={prevHeading.url}>
<div className={styles.footer}> <div className={styles.footerSection}>
{prevHeading && ( <svg
<div className={styles.clickable}> xmlns="http://www.w3.org/2000/svg"
<Link url={prevHeading.url}> width="14"
<div className={styles.footerSection}> height="9"
<svg viewBox="0 0 14 9"
xmlns="http://www.w3.org/2000/svg" className={styles.arrow + " " + styles.prevArrow}
width="14" >
height="9" <path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" />
viewBox="0 0 14 9" </svg>
className={styles.arrow + " " + styles.prevArrow} <div>
> <div className={styles.prevNext}>Previous</div>
<path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" /> <div className={styles.arrowHeading}>{prevHeading.name}</div>
</svg> </div>
<div> </div>
<div className={styles.prevNext}>Previous</div> </Link>
<div className={styles.arrowHeading}> </div>
{prevHeading.name} )}
</div> <div></div>
</div> {nextHeading && (
</div> <div className={styles.clickable}>
</Link> <Link url={nextHeading.url}>
</div> <div className={styles.footerSection}>
)} <div>
<div></div> <div className={styles.prevNext + " " + styles.nextText}>
{nextHeading && ( Next
<div className={styles.clickable}> </div>
<Link url={nextHeading.url}> <div className={styles.arrowHeading}>{nextHeading.name}</div>
<div className={styles.footerSection}> </div>
<div> <svg
<div className={styles.prevNext + " " + styles.nextText}> xmlns="http://www.w3.org/2000/svg"
Next width="14"
</div> height="9"
<div className={styles.arrowHeading}> viewBox="0 0 14 9"
{nextHeading.name} className={styles.arrow + " " + styles.nextArrow}
</div> >
</div> <path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" />
<svg </svg>
xmlns="http://www.w3.org/2000/svg" </div>
width="14" </Link>
height="9" </div>
viewBox="0 0 14 9" )}
className={styles.arrow + " " + styles.nextArrow} </div>
> );
<path d="M6.24407 8.12713C6.64284 8.58759 7.35716 8.58759 7.75593 8.12713L13.3613 1.65465C13.9221 1.00701 13.4621 0 12.6053 0H1.39467C0.537918 0 0.0778675 1.00701 0.638743 1.65465L6.24407 8.12713Z" />
</svg>
</div>
</Link>
</div>
)}
</div>
</div>
);
}
}; };

View File

@ -70,3 +70,5 @@ display information about the execs: prez, VP, trez, AVP, and syscom overlord.
Codey is supposed to say something here... Codey is supposed to say something here...
<OrganizedContentDemo /> <OrganizedContentDemo />
---