1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-01-10 15:42:58 -05:00

random organization

This commit is contained in:
2022-04-28 19:28:16 -04:00
parent 9e8c3eaa67
commit 383c88d5ef
5 changed files with 39 additions and 33 deletions

View File

@@ -56,17 +56,17 @@ const CopyButton = forwardRef(function CopyButton(
};
useEffect(() => {
// reset to original icon after given ms (defaults to 2 seconds)
if (copied) {
const reset = setTimeout(() => {
setCopied(false);
}, timeout);
return () => clearTimeout(reset);
if (!copied) {
return;
}
// eslint-disable-next-line @typescript-eslint/no-empty-function
return () => {};
// reset to original icon after given ms (defaults to 2 seconds)
const reset = setTimeout(() => {
setCopied(false);
}, timeout);
// cancel timeout to avoid memory leaks if unmounted in the middle of this
return () => clearTimeout(reset);
}, [timeout, copied]);
return (

View File

@@ -1,6 +1,7 @@
import { memo } from "react";
import { useRouter } from "next/router";
import MenuItem from "../MenuItem";
import ThemeToggle from "../ThemeToggle";
import { styled } from "../../lib/styles/stitches.config";
import { menuItems } from "../../lib/config/menu";
import type { ComponentProps } from "react";
@@ -22,9 +23,9 @@ const Wrapper = styled("ul", {
});
const Item = styled("li", {
listStyle: "none",
display: "inline-block",
marginLeft: "1em",
listStyle: "none",
"@medium": {
marginLeft: 0,
@@ -51,6 +52,10 @@ const Menu = ({ ...rest }: MenuProps) => {
<MenuItem {...item} current={item.href === `/${router.pathname.split("/")[1]}`} />
</Item>
))}
<Item>
<MenuItem icon={ThemeToggle} />
</Item>
</Wrapper>
);
};