-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create the page component for the company update post before sharing …
…the components with the blog post page
- Loading branch information
Breno
committed
Dec 2, 2024
1 parent
0e9d95b
commit 74d665d
Showing
2 changed files
with
767 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,291 @@ | ||
import { graphql } from 'gatsby'; | ||
import * as React from 'react'; | ||
import dayjs from 'dayjs'; | ||
import reltime from 'dayjs/plugin/relativeTime'; | ||
import CalendarTodayOutlined from '@mui/icons-material/CalendarTodayOutlined'; | ||
import { GatsbyImage } from 'gatsby-plugin-image'; | ||
import SwoopingLinesBackground from '../../components/BackgroundImages/LightSwoopingLinesRightDirectionBackground'; | ||
import { PopularArticles } from '../../components/BlogPopularArticles'; | ||
import { ProcessedPost } from '../../components/BlogPostProcessor'; | ||
import Breadcrumbs from '../../components/Breadcrumbs'; | ||
import Layout from '../../components/Layout'; | ||
import Seo from '../../components/seo'; | ||
import logoUrl from '../../images/estuary.png'; | ||
import ReadingTimeIcon from '../../svgs/time.svg'; | ||
import { dashboardRegisterUrl, getAuthorSeoJson } from '../../../shared'; | ||
import BlogBanner from '../../components/BlogBanner'; | ||
import ArticleSidebar from '../../components/ArticleSidebar'; | ||
import Container from '../../components/Container'; | ||
import HeroSectionDetails from '../../components/HeroSectionDetails'; | ||
import ShareArticle from '../../components/ShareArticle'; | ||
import { | ||
blogPost, | ||
blogPostHeaderWrapper, | ||
headerInfo, | ||
postInfo, | ||
dateAndReadWrapper, | ||
iconInfoWrapper, | ||
blogPostDate, | ||
heroImage, | ||
shareArticleMobile, | ||
blogPostContent, | ||
blogPostContentWrapper, | ||
mainContent, | ||
popularArticlesWrapper, | ||
blogPostBreadcrumbsWrapper, | ||
} from './styles.module.less'; | ||
|
||
dayjs.extend(reltime); | ||
|
||
const CompanyUpdatePostTemplate = ({ data: { post } }) => { | ||
const hasBeenUpdated = post?.updatedAt | ||
? post?.publishedAt !== post?.updatedAt | ||
: false; | ||
|
||
return ( | ||
<Layout> | ||
<div className={blogPostBreadcrumbsWrapper}> | ||
<Breadcrumbs | ||
breadcrumbs={[ | ||
{ | ||
title: 'Home', | ||
href: '/', | ||
}, | ||
{ | ||
title: 'Company Updates', | ||
href: '/company-updates', | ||
}, | ||
{ | ||
title: post.title, | ||
}, | ||
]} | ||
/> | ||
</div> | ||
<article | ||
className={blogPost} | ||
itemScope | ||
itemType="http://schema.org/Article" | ||
> | ||
<SwoopingLinesBackground> | ||
<Container className={blogPostHeaderWrapper}> | ||
<div className={headerInfo}> | ||
<div className={postInfo}> | ||
<div className={dateAndReadWrapper}> | ||
<div className={iconInfoWrapper}> | ||
<ReadingTimeIcon color="#47506D" /> | ||
<span className={blogPostDate}> | ||
{ | ||
post.body.data | ||
.childMarkdownRemark.fields | ||
.readingTime.text | ||
} | ||
</span> | ||
</div> | ||
<div className={iconInfoWrapper}> | ||
<CalendarTodayOutlined fontSize="small" /> | ||
<span className={blogPostDate}> | ||
<span> | ||
{hasBeenUpdated | ||
? `Published ${post.publishedAt}` | ||
: post.publishedAt} | ||
</span> | ||
{hasBeenUpdated ? ( | ||
<span> | ||
Updated {post.updatedAt} | ||
</span> | ||
) : null} | ||
</span> | ||
</div> | ||
</div> | ||
</div> | ||
<HeroSectionDetails | ||
title={post.title} | ||
description={post.description} | ||
/> | ||
</div> | ||
{post.hero ? ( | ||
<GatsbyImage | ||
alt={post.title} | ||
className={heroImage} | ||
image={ | ||
post.hero.localFile.childImageSharp | ||
.gatsbyImageData | ||
} | ||
loading="eager" | ||
/> | ||
) : null} | ||
<div className={shareArticleMobile}> | ||
<ShareArticle | ||
article={{ | ||
title: post.title, | ||
slug: post.slug, | ||
}} | ||
/> | ||
</div> | ||
</Container> | ||
</SwoopingLinesBackground> | ||
|
||
{post.body ? ( | ||
<section className={blogPostContent}> | ||
<div className={blogPostContentWrapper}> | ||
<div className={mainContent}> | ||
<ProcessedPost | ||
body={post.body.data.childHtmlRehype.html} | ||
/> | ||
<BlogBanner | ||
title={ | ||
<h3> | ||
Start streaming your data{' '} | ||
<span>for free</span> | ||
</h3> | ||
} | ||
button={{ | ||
title: 'Build a Pipeline', | ||
href: dashboardRegisterUrl, | ||
}} | ||
/> | ||
</div> | ||
<ArticleSidebar | ||
article={{ | ||
title: post.title, | ||
slug: post.slug, | ||
}} | ||
tableOfContents={ | ||
post.body.data.childHtmlRehype | ||
.tableOfContents | ||
} | ||
/> | ||
</div> | ||
</section> | ||
) : null} | ||
<section className={popularArticlesWrapper}> | ||
<h2>Popular Articles</h2> | ||
<PopularArticles /> | ||
</section> | ||
</article> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export const Head = ({ | ||
data: { | ||
post, | ||
site: { | ||
siteMetadata: { siteUrl }, | ||
}, | ||
}, | ||
}) => { | ||
const mappedAuthors = post.authors.map((author) => | ||
getAuthorSeoJson(author, siteUrl) | ||
); | ||
|
||
const postTags = post.tags | ||
.filter((tag) => tag.type === 'tag') | ||
.map((t) => t.name); | ||
|
||
const ogImage = post.hero | ||
? `${siteUrl}${post.hero.localFile.childImageSharp.metaImg.images.fallback.src}` | ||
: undefined; | ||
|
||
return ( | ||
<> | ||
<Seo | ||
title={post.title} | ||
description={post.description ?? ''} | ||
url={`${siteUrl}/${post.slug}`} | ||
image={ogImage} | ||
/> | ||
<script type="application/ld+json"> | ||
{JSON.stringify({ | ||
'@context': 'https://schema.org', | ||
'@type': 'BlogPosting', | ||
'mainEntityOfPage': { | ||
'@type': 'WebPage', | ||
'@id': `${siteUrl}/${post.slug}`, | ||
}, | ||
'headline': post.title, | ||
'description': post.description ?? '', | ||
'image': ogImage, | ||
'author': | ||
post.authors.length > 1 | ||
? mappedAuthors | ||
: mappedAuthors[0], | ||
'keywords': postTags, | ||
'publisher': { | ||
'@type': 'Organization', | ||
'name': 'Estuary', | ||
'logo': { | ||
'@type': 'ImageObject', | ||
'url': `${siteUrl}${logoUrl}`, | ||
}, | ||
}, | ||
'datePublished': post.machineReadablePublishDate, | ||
'dateModified': post.machineReadableUpdateDate, | ||
})} | ||
</script> | ||
</> | ||
); | ||
}; | ||
|
||
export default CompanyUpdatePostTemplate; | ||
|
||
export const pageQuery = graphql` | ||
query CompanyUpdatePostById($id: String!) { | ||
site { | ||
siteMetadata { | ||
siteUrl | ||
} | ||
} | ||
post: strapiCompanyUpdatePost(id: { eq: $id }) { | ||
title | ||
publishedAt(formatString: "MMMM D, YYYY") | ||
updatedAt(formatString: "MMMM D, YYYY") | ||
machineReadablePublishDate: publishedAt(formatString: "YYYY-MM-DD") | ||
machineReadableUpdateDate: updatedAt(formatString: "YYYY-MM-DD") | ||
description | ||
slug | ||
body { | ||
data { | ||
body | ||
childHtmlRehype { | ||
html | ||
tableOfContents | ||
} | ||
childMarkdownRemark { | ||
fields { | ||
readingTime { | ||
text | ||
} | ||
} | ||
} | ||
} | ||
} | ||
hero { | ||
localFile { | ||
childImageSharp { | ||
gatsbyImageData( | ||
layout: FULL_WIDTH | ||
placeholder: BLURRED | ||
# aspectRatio: 2 | ||
formats: [AUTO, WEBP, AVIF] | ||
) | ||
metaImg: gatsbyImageData(layout: FIXED, width: 500) | ||
} | ||
} | ||
} | ||
socialShareImage { | ||
localFile { | ||
childImageSharp { | ||
gatsbyImageData( | ||
layout: FULL_WIDTH | ||
placeholder: BLURRED | ||
# aspectRatio: 2 | ||
formats: [AUTO, WEBP, AVIF] | ||
) | ||
metaImg: gatsbyImageData(layout: FIXED, width: 500) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
`; |
Oops, something went wrong.