mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
project nav refactor
This commit is contained in:
parent
fbd0f39d71
commit
04f51eb0d7
@ -23,6 +23,7 @@
|
||||
grid-column: main;
|
||||
}
|
||||
|
||||
/* Projects Grid */
|
||||
.grid {
|
||||
display: grid;
|
||||
gap: calc(var(--spacer) * 2);
|
||||
@ -31,6 +32,7 @@
|
||||
|
||||
@media (min-width: 55rem) {
|
||||
.grid {
|
||||
gap: calc(var(--spacer) * 3);
|
||||
grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
|
||||
}
|
||||
}
|
||||
|
@ -33,3 +33,9 @@ export const projectImageTeaser = graphql`
|
||||
gatsbyImageData(layout: CONSTRAINED, width: 740, quality: 85)
|
||||
}
|
||||
`
|
||||
|
||||
export const projectImageNav = graphql`
|
||||
fragment ProjectImageNav on ImageSharp {
|
||||
gatsbyImageData(layout: CONSTRAINED, width: 500, quality: 85)
|
||||
}
|
||||
`
|
||||
|
@ -1,9 +1,8 @@
|
||||
import React, { PureComponent } from 'react'
|
||||
import React, { useEffect } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import { Link, graphql, StaticQuery } from 'gatsby'
|
||||
import shortid from 'shortid'
|
||||
import { Link, graphql, useStaticQuery } from 'gatsby'
|
||||
import ProjectImage from '../atoms/ProjectImage'
|
||||
import { item, link, title, projectNav } from './ProjectNav.module.css'
|
||||
import { item, projectNav } from './ProjectNav.module.css'
|
||||
|
||||
const query = graphql`
|
||||
query {
|
||||
@ -14,7 +13,7 @@ const query = graphql`
|
||||
slug
|
||||
img {
|
||||
childImageSharp {
|
||||
gatsbyImageData(layout: CONSTRAINED, width: 500, quality: 85)
|
||||
...ProjectImageNav
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -24,15 +23,12 @@ const query = graphql`
|
||||
`
|
||||
|
||||
const Project = ({ node, refCurrentItem }) => (
|
||||
<div className={item} ref={refCurrentItem}>
|
||||
<Link className={link} to={node.slug}>
|
||||
<ProjectImage
|
||||
image={node.img.childImageSharp.gatsbyImageData}
|
||||
alt={node.title}
|
||||
/>
|
||||
<h1 className={title}>{node.title}</h1>
|
||||
</Link>
|
||||
</div>
|
||||
<Link className={item} to={node.slug} title={node.title} ref={refCurrentItem}>
|
||||
<ProjectImage
|
||||
image={node.img.childImageSharp.gatsbyImageData}
|
||||
alt={node.title}
|
||||
/>
|
||||
</Link>
|
||||
)
|
||||
|
||||
Project.propTypes = {
|
||||
@ -40,67 +36,50 @@ Project.propTypes = {
|
||||
refCurrentItem: PropTypes.any
|
||||
}
|
||||
|
||||
export default class ProjectNav extends PureComponent {
|
||||
static propTypes = {
|
||||
currentSlug: PropTypes.string.isRequired
|
||||
}
|
||||
export default function ProjectNav({ currentSlug }) {
|
||||
const data = useStaticQuery(query)
|
||||
const projects = data.allProjectsYaml.edges
|
||||
|
||||
state = {
|
||||
scrollLeftPosition: 0
|
||||
}
|
||||
// Always keep the scroll position centered
|
||||
// to currently viewed project on mount.
|
||||
const scrollContainer = React.createRef()
|
||||
const currentItem = React.createRef()
|
||||
|
||||
scrollContainer = React.createRef()
|
||||
currentItem = React.createRef()
|
||||
|
||||
componentDidMount() {
|
||||
this.scrollToCurrent()
|
||||
}
|
||||
|
||||
componentDidUpdate() {
|
||||
this.scrollToCurrent()
|
||||
}
|
||||
|
||||
scrollToCurrent = () => {
|
||||
const scrollContainer = this.scrollContainer.current
|
||||
const activeItem = this.currentItem.current
|
||||
const scrollRect = scrollContainer.getBoundingClientRect()
|
||||
function scrollToCurrent() {
|
||||
const activeItem = currentItem.current
|
||||
const scrollRect = scrollContainer.current.getBoundingClientRect()
|
||||
const activeRect = activeItem && activeItem.getBoundingClientRect()
|
||||
const scrollLeftPosition =
|
||||
const newScrollLeftPosition =
|
||||
activeRect &&
|
||||
activeRect.left -
|
||||
scrollRect.left -
|
||||
scrollRect.width / 2 +
|
||||
activeRect.width / 2
|
||||
|
||||
scrollContainer.scrollLeft += this.state.scrollLeftPosition
|
||||
this.setState({ scrollLeftPosition })
|
||||
scrollContainer.current.scrollLeft += newScrollLeftPosition
|
||||
}
|
||||
|
||||
render() {
|
||||
const { currentSlug } = this.props
|
||||
return (
|
||||
<StaticQuery
|
||||
query={query}
|
||||
render={(data) => {
|
||||
const projects = data.allProjectsYaml.edges
|
||||
useEffect(() => {
|
||||
scrollToCurrent()
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<nav className={projectNav} ref={this.scrollContainer}>
|
||||
{projects.map(({ node }) => {
|
||||
const isCurrent = node.slug === currentSlug
|
||||
return (
|
||||
<nav className={projectNav} ref={scrollContainer}>
|
||||
{projects.map(({ node }) => {
|
||||
const isCurrent = node.slug === currentSlug
|
||||
|
||||
return (
|
||||
<Project
|
||||
key={shortid.generate()}
|
||||
node={node}
|
||||
refCurrentItem={isCurrent ? this.currentItem : null}
|
||||
/>
|
||||
)
|
||||
})}
|
||||
</nav>
|
||||
)
|
||||
}}
|
||||
/>
|
||||
)
|
||||
}
|
||||
return (
|
||||
<Project
|
||||
key={node.slug}
|
||||
node={node}
|
||||
refCurrentItem={isCurrent ? currentItem : null}
|
||||
/>
|
||||
)
|
||||
})}
|
||||
</nav>
|
||||
)
|
||||
}
|
||||
|
||||
ProjectNav.propTypes = {
|
||||
currentSlug: PropTypes.string.isRequired
|
||||
}
|
||||
|
@ -4,6 +4,7 @@
|
||||
overflow-y: hidden;
|
||||
overflow-x: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
padding-bottom: var(--spacer);
|
||||
}
|
||||
|
||||
.projectNav::-webkit-scrollbar,
|
||||
@ -17,7 +18,7 @@
|
||||
}
|
||||
|
||||
.projectNav::-webkit-scrollbar-thumb {
|
||||
background: var(--brand-grey-dimmed);
|
||||
background: var(--text-color);
|
||||
}
|
||||
|
||||
.projectNav::-webkit-scrollbar-track {
|
||||
@ -41,12 +42,3 @@
|
||||
margin-left: calc(var(--spacer) * 2);
|
||||
}
|
||||
}
|
||||
|
||||
.title {
|
||||
visibility: hidden;
|
||||
font-size: 0;
|
||||
}
|
||||
|
||||
.link {
|
||||
display: block;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user