mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
refactor
This commit is contained in:
parent
ef28bf15a7
commit
996058032e
2
.codeclimate.yml
Normal file
2
.codeclimate.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
exclude_patterns:
|
||||||
|
- src/lib/vcf/
|
@ -7,34 +7,33 @@ import { ReactComponent as Index } from '../../images/index.svg'
|
|||||||
import '../atoms/Icons.scss'
|
import '../atoms/Icons.scss'
|
||||||
import './ProjectNav.scss'
|
import './ProjectNav.scss'
|
||||||
|
|
||||||
|
const ProjectNavLink = ({ previous, next }) => {
|
||||||
|
const slug = previous ? previous.slug : next.slug
|
||||||
|
const title = previous ? previous.title : next.title
|
||||||
|
const img = previous ? previous.img : next.img
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="project__nav__item">
|
||||||
|
<Link className="project__nav__link prev" to={slug}>
|
||||||
|
<Img
|
||||||
|
className="project__nav__image"
|
||||||
|
sizes={img.childImageSharp.sizes}
|
||||||
|
alt={title}
|
||||||
|
/>
|
||||||
|
<h1 className="project__nav__title">{title}</h1>
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
const ProjectNav = ({ previous, next }) => (
|
const ProjectNav = ({ previous, next }) => (
|
||||||
<nav className="project__nav full-width">
|
<nav className="project__nav full-width">
|
||||||
{previous && (
|
{previous && <ProjectNavLink previous={previous} />}
|
||||||
<div className="project__nav__item">
|
|
||||||
<Link className="project__nav__link prev" to={previous.slug}>
|
|
||||||
<Img
|
|
||||||
className="project__nav__image"
|
|
||||||
sizes={previous.img.childImageSharp.sizes}
|
|
||||||
alt={previous.title}
|
|
||||||
/>
|
|
||||||
<h1 className="project__nav__title">{previous.title}</h1>
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
<Link className="project__nav__index" title="Back to projects" to={'/'}>
|
<Link className="project__nav__index" title="Back to projects" to={'/'}>
|
||||||
<Index className="icon" />
|
<Index className="icon" />
|
||||||
</Link>
|
</Link>
|
||||||
{next ? (
|
{next ? (
|
||||||
<div className="project__nav__item">
|
<ProjectNavLink next={next} />
|
||||||
<Link className="project__nav__link next" to={next.slug}>
|
|
||||||
<Img
|
|
||||||
className="project__nav__image"
|
|
||||||
sizes={next.img.childImageSharp.sizes}
|
|
||||||
alt={next.title}
|
|
||||||
/>
|
|
||||||
<h1 className="project__nav__title">{next.title}</h1>
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
) : (
|
) : (
|
||||||
<div className="project__nav__item project__nav__item--end">
|
<div className="project__nav__item project__nav__item--end">
|
||||||
<div className="project__nav__end">
|
<div className="project__nav__end">
|
||||||
@ -46,6 +45,11 @@ const ProjectNav = ({ previous, next }) => (
|
|||||||
</nav>
|
</nav>
|
||||||
)
|
)
|
||||||
|
|
||||||
|
ProjectNavLink.propTypes = {
|
||||||
|
previous: PropTypes.object,
|
||||||
|
next: PropTypes.object
|
||||||
|
}
|
||||||
|
|
||||||
ProjectNav.propTypes = {
|
ProjectNav.propTypes = {
|
||||||
previous: PropTypes.object,
|
previous: PropTypes.object,
|
||||||
next: PropTypes.object
|
next: PropTypes.object
|
||||||
|
@ -1,10 +1,25 @@
|
|||||||
import React, { PureComponent, Fragment } from 'react'
|
import React, { PureComponent, Fragment } from 'react'
|
||||||
|
import PropTypes from 'prop-types'
|
||||||
import Helmet from 'react-helmet'
|
import Helmet from 'react-helmet'
|
||||||
import { FadeIn } from '../atoms/Animations'
|
import { FadeIn } from '../atoms/Animations'
|
||||||
import { ReactComponent as Day } from '../../images/day.svg'
|
import { ReactComponent as Day } from '../../images/day.svg'
|
||||||
import { ReactComponent as Night } from '../../images/night.svg'
|
import { ReactComponent as Night } from '../../images/night.svg'
|
||||||
import './ThemeSwitch.scss'
|
import './ThemeSwitch.scss'
|
||||||
|
|
||||||
|
const ThemeToggle = props => {
|
||||||
|
return (
|
||||||
|
<span
|
||||||
|
id="toggle"
|
||||||
|
className="checkbox__faux-container"
|
||||||
|
aria-live="assertive"
|
||||||
|
>
|
||||||
|
<Day className={props.dark ? 'icon' : 'icon active'} />
|
||||||
|
<span className="checkbox__faux" />
|
||||||
|
<Night className={props.dark ? 'icon active' : 'icon'} />
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
class ThemeSwitch extends PureComponent {
|
class ThemeSwitch extends PureComponent {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
@ -44,15 +59,7 @@ class ThemeSwitch extends PureComponent {
|
|||||||
aria-describedby="toggle"
|
aria-describedby="toggle"
|
||||||
checked={this.state.dark}
|
checked={this.state.dark}
|
||||||
/>
|
/>
|
||||||
<span
|
<ThemeToggle dark={this.state.dark} />
|
||||||
id="toggle"
|
|
||||||
className="checkbox__faux-container"
|
|
||||||
aria-live="assertive"
|
|
||||||
>
|
|
||||||
<Day className={this.state.dark ? 'icon' : 'icon active'} />
|
|
||||||
<span className="checkbox__faux" />
|
|
||||||
<Night className={this.state.dark ? 'icon active' : 'icon'} />
|
|
||||||
</span>
|
|
||||||
</label>
|
</label>
|
||||||
</aside>
|
</aside>
|
||||||
</FadeIn>
|
</FadeIn>
|
||||||
@ -61,4 +68,8 @@ class ThemeSwitch extends PureComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ThemeToggle.propTypes = {
|
||||||
|
dark: PropTypes.bool
|
||||||
|
}
|
||||||
|
|
||||||
export default ThemeSwitch
|
export default ThemeSwitch
|
||||||
|
@ -22,6 +22,14 @@ const ProjectMeta = props => {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ProjectImages = props => (
|
||||||
|
<FullWidth>
|
||||||
|
{props.projectImages.map(({ node }) => (
|
||||||
|
<ProjectImage key={node.id} sizes={node.sizes} alt={props.title} />
|
||||||
|
))}
|
||||||
|
</FullWidth>
|
||||||
|
)
|
||||||
|
|
||||||
class Project extends Component {
|
class Project extends Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
super(props)
|
super(props)
|
||||||
@ -43,9 +51,7 @@ class Project extends Component {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Fragment>
|
<Fragment>
|
||||||
<Helmet>
|
<Helmet title={title} />
|
||||||
<title>{title}</title>
|
|
||||||
</Helmet>
|
|
||||||
|
|
||||||
<SEO project={project} meta={meta} />
|
<SEO project={project} meta={meta} />
|
||||||
|
|
||||||
@ -56,13 +62,7 @@ class Project extends Component {
|
|||||||
source={this.state.descriptionWithLineBreaks}
|
source={this.state.descriptionWithLineBreaks}
|
||||||
className="project__description"
|
className="project__description"
|
||||||
/>
|
/>
|
||||||
|
<ProjectImages projectImages={projectImages} title={title} />
|
||||||
<FullWidth>
|
|
||||||
{projectImages.map(({ node }) => (
|
|
||||||
<ProjectImage key={node.id} sizes={node.sizes} alt={title} />
|
|
||||||
))}
|
|
||||||
</FullWidth>
|
|
||||||
|
|
||||||
<ProjectMeta links={links} techstack={techstack} />
|
<ProjectMeta links={links} techstack={techstack} />
|
||||||
</Content>
|
</Content>
|
||||||
</article>
|
</article>
|
||||||
@ -78,6 +78,11 @@ ProjectMeta.propTypes = {
|
|||||||
techstack: PropTypes.array
|
techstack: PropTypes.array
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ProjectImages.propTypes = {
|
||||||
|
projectImages: PropTypes.array,
|
||||||
|
title: PropTypes.string
|
||||||
|
}
|
||||||
|
|
||||||
Project.propTypes = {
|
Project.propTypes = {
|
||||||
data: PropTypes.object.isRequired,
|
data: PropTypes.object.isRequired,
|
||||||
pathContext: PropTypes.object.isRequired
|
pathContext: PropTypes.object.isRequired
|
||||||
|
Loading…
Reference in New Issue
Block a user