Compare commits

..

1 Commits

Author SHA1 Message Date
neri 3d2f660f78 update dependecies
continuous-integration/drone/push Build is passing Details
2022-06-07 21:38:45 +02:00
8 changed files with 10 additions and 53 deletions

View File

@ -13,24 +13,6 @@ let pages = [
['supporte uns', '/support/', ''],
]
function PathCheck(path, link) {
if(path === link) {
return ' ' + navStyles.navItemActive
}
if(link !== '/' && path !== '/') {
if(path.includes(link)){
return ' ' + navStyles.navItemActive
}
if(link.includes(path)){
return ' ' + navStyles.navItemActive
}
}
return ''
}
export default function Nav({ path }) {
// nav items should always be active in the staticly generated html
const isSSR = typeof window === 'undefined'
@ -62,7 +44,7 @@ export default function Nav({ path }) {
{pages.map(([title, link, device]) => (
<Link
key={title}
className={navStyles.navItem + PathCheck(path, link) + ' ' + device}
className={navStyles.navItem + activeClasses(link) + ' ' + device}
activeClassName={navStyles.navItemActive}
to={`${link}`}
>

View File

@ -1,5 +1,4 @@
import React, { useEffect, useState } from 'react'
import { StaticImage } from 'gatsby-plugin-image'
const roomStateData = {
loading: { text: '...', color: 'white' },
@ -8,24 +7,6 @@ const roomStateData = {
error: { text: 'laut API kaputt', color: '#ee3333' },
}
function GetRightImage(openState) {
if(openState === 'loading') {
return <StaticImage src='../images/warning.png' width='250' height='250' alt='...' />
}
if(openState === 'open'){
return <StaticImage src='../images/tuer_offen.png' width='250' height='250' alt='offen' />
}
if(openState === 'closed'){
return <StaticImage src='../images/tuer_zu.png' width='250' height='250' alt='geschlossen' />
}
if(openState === 'error'){
return <StaticImage src='../images/warning.png' width='250' height='250' alt='laut API kaputt' />
}
}
export default function RoomState() {
const [openState, setOpenState] = useState('loading')
@ -44,13 +25,12 @@ export default function RoomState() {
}, [])
const isSSR = typeof window === 'undefined'
const useIMG = false
return (
<a
href="https://status.ctdo.de/"
style={{ color: roomStateData[openState].color }}
>
{isSSR ? '<Benötigt JavaScript>' : useIMG ? GetRightImage(openState) : roomStateData[openState].text}
{isSSR ? '<Benötigt JavaScript>' : roomStateData[openState].text}
</a>
)
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

View File

@ -22,11 +22,6 @@ body {
a {
color: #22bb22;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {

View File

@ -5,10 +5,10 @@ import { MDXRenderer } from 'gatsby-plugin-mdx'
import { MDXProvider } from '@mdx-js/react'
import { Helmet } from 'react-helmet'
const MdLeakH1 = (props) => <h2 {...props}>{props.children}</h2>
const MdLeakH2 = (props) => <h3 {...props}>{props.children}</h3>
const MdLeakH3 = (props) => <h4 {...props}>{props.children}</h4>
const MdLeakH4 = (props) => <h5 {...props}>{props.children}</h5>
const MdLeakH1 = (props) => <h2 {...props}># {props.children}</h2>
const MdLeakH2 = (props) => <h3 {...props}>## {props.children}</h3>
const MdLeakH3 = (props) => <h4 {...props}>### {props.children}</h4>
const MdLeakH4 = (props) => <h5 {...props}>#### {props.children}</h5>
const components = {
h1: MdLeakH1,

View File

@ -8,10 +8,10 @@ import { Helmet } from 'react-helmet'
const ide =
'https://repos.ctdo.de/neri/ctdo-homepage/_edit/master/src/webpages/'
const MdLeakH1 = (props) => <h2 {...props}>{props.children}</h2>
const MdLeakH2 = (props) => <h3 {...props}>{props.children}</h3>
const MdLeakH3 = (props) => <h4 {...props}>{props.children}</h4>
const MdLeakH4 = (props) => <h5 {...props}>{props.children}</h5>
const MdLeakH1 = (props) => <h2 {...props}># {props.children}</h2>
const MdLeakH2 = (props) => <h3 {...props}>## {props.children}</h3>
const MdLeakH3 = (props) => <h4 {...props}>### {props.children}</h4>
const MdLeakH4 = (props) => <h5 {...props}>#### {props.children}</h5>
const components = {
h1: MdLeakH1,