diff --git a/public/icons/fediverse/akkoma.svg b/public/icons/fediverse/akkoma.svg new file mode 100644 index 0000000..1070e98 --- /dev/null +++ b/public/icons/fediverse/akkoma.svg @@ -0,0 +1,2 @@ + +Pleroma icon \ No newline at end of file diff --git a/public/icons/fediverse/peertube.svg b/public/icons/fediverse/peertube.svg new file mode 100644 index 0000000..810d962 --- /dev/null +++ b/public/icons/fediverse/peertube.svg @@ -0,0 +1,2 @@ + +PeerTube icon \ No newline at end of file diff --git a/public/icons/fediverse/pixelfed.svg b/public/icons/fediverse/pixelfed.svg new file mode 100644 index 0000000..c677be6 --- /dev/null +++ b/public/icons/fediverse/pixelfed.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx index 9e7abed..bb1614c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -3,6 +3,7 @@ import { useTheme } from "./style/themes.tsx"; import About from "./sections/about.tsx"; import Tools from "./sections/tools.tsx"; +import Links from "./sections/links.tsx"; const App: React.FC = () => { const { theme } = useTheme(); @@ -10,6 +11,7 @@ const App: React.FC = () => { return + ; diff --git a/src/components/button.tsx b/src/components/button.tsx index a966e85..6311283 100644 --- a/src/components/button.tsx +++ b/src/components/button.tsx @@ -5,7 +5,8 @@ export type Props = { content?: string, icon?: string, link?: string, - primary?: boolean + primary?: boolean, + disabled?: boolean, } & React.ComponentProps<'div'>; const Button: React.FC = ({ @@ -14,14 +15,15 @@ const Button: React.FC = ({ link, primary, children, + disabled = false, ...props }) => { - const item = + const item = {icon && Button 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();