+ const item =
{icon &&
}
{content || children}
;
- return link ? {item} : item;
+ return (link && !disabled) ? {item} : item;
}
const ButtonStyled = styled.div`
@@ -47,6 +49,7 @@ const ButtonStyled = styled.div`
&:hover, &.primary {
background: ${({ theme }) => theme.text};
color: ${({ theme }) => theme.secondary};
+ box-shadow: 0 0 5px ${({ theme }) => theme.text};
img {
filter: ${({ theme }) => (theme.type === 'dark' ? 'none' : 'invert()')};
@@ -54,13 +57,18 @@ const ButtonStyled = styled.div`
}
&.primary:hover {
- background: ${({ theme }) => theme.secondary};
+ background: transparent;
color: ${({ theme }) => theme.text};
img {
filter: ${({ theme }) => (theme.type === 'dark' ? 'invert()' : 'none')};
}
}
+
+ &.disabled {
+ opacity: 0.9;
+ cursor: not-allowed;
+ }
`;
export default Button;
\ No newline at end of file
diff --git a/src/sections/about.tsx b/src/sections/about.tsx
index 6bdefef..b4d5840 100644
--- a/src/sections/about.tsx
+++ b/src/sections/about.tsx
@@ -61,9 +61,6 @@ const About: React.FC = () => {
"Evanescence"
])}
yeah I know, I listen to a broad spectrum of music
-
- Some links...
- {asCardStack(LINKS)}
>;
}
@@ -71,38 +68,4 @@ const Heading = styled.h1`
font-family: "Pacifico", serif;
`;
-const LINKS = [
- {
- content: "PGP",
- icon: "/icons/pgp.svg",
- link: "/pgp.asc",
- primary: true
- },
- {
- content: "Uptime of my services",
- icon: "/icons/uptime.svg",
- link: "https://health.sador.me/status/aio"
- },
- {
- content: "E-mail",
- icon: "/icons/email.svg",
- link: "mailto:contact@sador.me?subject=[sador.me] ..."
- },
- {
- content: "Gitea",
- icon: "/icons/gitea.svg",
- link: "https://git.sador.me"
- },
- {
- content: "Matrix",
- icon: "/icons/matrix.svg",
- link: "https://matrix.to/#/@boss:sador.me"
- },
- {
- content: "Instagram",
- icon: "/icons/instagram.svg",
- link: "https://instagram.com/sadorowo"
- }
-];
-
export default About;
\ No newline at end of file
diff --git a/src/sections/links.tsx b/src/sections/links.tsx
new file mode 100644
index 0000000..3d411d7
--- /dev/null
+++ b/src/sections/links.tsx
@@ -0,0 +1,71 @@
+import styled from "styled-components";
+import { asCardStack } from "../components/card-stack";
+
+const Links: React.FC = () => {
+ return <>
+ Fediverse!
+ {asCardStack(FEDIVERSE_LINKS)}
+
+ Some links...
+ {asCardStack(LINKS)}
+ >;
+}
+
+const Heading = styled.h1`
+ font-family: "Pacifico", serif;
+`;
+
+const FEDIVERSE_LINKS = [
+ {
+ content: "Akkoma",
+ icon: "/icons/fediverse/akkoma.svg",
+ link: "https://akkoma.sador.me"
+ },
+ {
+ content: "Pixelfed",
+ icon: "/icons/fediverse/pixelfed.svg",
+ link: "https://pix.sador.me"
+ },
+ {
+ content: "PeerTube",
+ icon: "/icons/fediverse/peertube.svg",
+ link: "https://tube.sador.me"
+ }
+].map(link => Object.assign(link, { primary: true }));
+
+const LINKS = [
+ {
+ content: "PGP",
+ icon: "/icons/pgp.svg",
+ link: "/pgp.asc",
+ primary: true
+ },
+ {
+ content: "Uptime of my services",
+ icon: "/icons/uptime.svg",
+ link: "https://health.sador.me/status/aio"
+ },
+ {
+ content: "E-mail",
+ icon: "/icons/email.svg",
+ link: "mailto:contact@sador.me?subject=[sador.me] ..."
+ },
+ {
+ content: "Gitea",
+ icon: "/icons/gitea.svg",
+ link: "https://git.sador.me"
+ },
+ {
+ content: "Matrix",
+ icon: "/icons/matrix.svg",
+ link: "https://matrix.to/#/@boss:sador.me"
+ },
+ {
+ content: "Instagram (deactivated)",
+ icon: "/icons/instagram.svg",
+ disabled: true,
+ link: "https://instagram.com/sadorowo"
+ }
+];
+
+export default Links;
\ No newline at end of file
diff --git a/src/tests/about.test.js b/src/tests/about.test.js
index 294cf39..831f889 100644
--- a/src/tests/about.test.js
+++ b/src/tests/about.test.js
@@ -1,8 +1,8 @@
import { render, screen } from "@testing-library/react";
-import App from "../App";
+import About from "../sections/about";
test("renders hello text", () => {
- render();
+ render();
const helloElement = screen.getByText(/hello/i);
expect(helloElement).toBeInTheDocument();
@@ -10,37 +10,30 @@ test("renders hello text", () => {
describe("all sub-sections of about are visible", () => {
test("'some facts about me'", () => {
- render();
+ render();
const section = screen.getByText(/some facts about me/i);
expect(section).toBeInTheDocument();
})
test("'i can...'", () => {
- render();
+ render();
const section = screen.getByText(/i can.../i);
expect(section).toBeInTheDocument();
})
test("'my favourite music genres'", () => {
- render();
+ render();
const section = screen.getByText(/my favourite music genres/i);
expect(section).toBeInTheDocument();
})
test("'bands/singers'", () => {
- render();
+ render();
const section = screen.getByText(/bands\/singers/i);
expect(section).toBeInTheDocument();
})
-
- test("'some links'", () => {
- render();
-
- const section = screen.getByText(/some links/i);
- expect(section).toBeInTheDocument();
- })
})
\ No newline at end of file
diff --git a/src/tests/links.test.js b/src/tests/links.test.js
new file mode 100644
index 0000000..129d1f5
--- /dev/null
+++ b/src/tests/links.test.js
@@ -0,0 +1,18 @@
+import { render, screen } from "@testing-library/react";
+import Links from "../sections/links";
+
+describe("all sub-sections of links are visible", () => {
+ test("'Fediverse!'", () => {
+ render();
+
+ const section = screen.getByText(/Fediverse!/i);
+ expect(section).toBeInTheDocument();
+ })
+
+ test("'some links'", () => {
+ render();
+
+ const section = screen.getByText(/some links/i);
+ expect(section).toBeInTheDocument();
+ })
+})
\ No newline at end of file
diff --git a/src/tests/tools.test.js b/src/tests/tools.test.js
index c21871f..eebfd98 100644
--- a/src/tests/tools.test.js
+++ b/src/tests/tools.test.js
@@ -1,16 +1,16 @@
import { render, screen } from "@testing-library/react";
-import App from "../App";
+import Tools from "../sections/tools";
describe("all sub-sections of tools are visible", () => {
test("'languages that i use'", () => {
- render();
+ render();
const section = screen.getByText(/languages that i use/i);
expect(section).toBeInTheDocument();
})
test("'my favourite tools'", () => {
- render();
+ render();
const section = screen.getByText(/my favourite tools/i);
expect(section).toBeInTheDocument();