Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@kentico/gatsby-kontent-components
Advanced tools
Source plugin providing Kontent data from REST Delivery API
The package containing React components useful when processing Kontent data to the site.
To see the progress of the Gatsby v4 supported packages - check out this pull request.
npm install @kentico/gatsby-kontent-components gatsby-plugin-image
Also, add gatsby-plugin-image
to plugins
array in gatsby-config.js
.
Components exports their typescript definitions so that you know what data format you need to provide via props and what data format expect from function prop callback arguments.
Images from Kontent can be displayed using the ImageElement
component. This wraps the GatsbyImage
component from gatsby-plugin-image, so ensure that you also install that plugin. This component will give the best experience for your users, as it includes responsive srcset, blur-up, lazy loading and many other performance optimizations. Automatic format optimization is always enabled. In many cases it can improve Lighthouse scores by 10-20 points.
The component takes all the GatsbyImage
props, as well as the following properties. All are optional except image
:
image
: the image
object. This should include url
, width
and height
.
layout
: see the gatsby-plugin-image
docs
width
/height
: see the gatsby-plugin-image
docs
aspectRatio
: see the gatsby-plugin-image
docs
backgroundColor
: displayed as a placeholder while the image loads
options: ImageOptions
: an object containing options passed to the Kontent Image Transformation API. Supported options: fit
, quality
, lossless
.
interface ImageOptions {
fit?: 'crop' | 'clip' | 'scale';
quality?: number;
lossless?: boolean;
}
Properties of the image object (e.g. width
and height
) are reflected in Kontent's image API query.
Props of the ImageElement
component (e.g. width
and height
) are reflected in the rendered DOM.
If the optional props of ImageElement
are omitted, the properties of the image object are applied.
You can find a showcase in the author.js on the development site.
import React from 'react'
import { ImageElement } from "@kentico/gatsby-kontent-components"
import { graphql } from "gatsby";
export default Page = ({ data }) => {
const avatar = data.author.elements.avatar_image.value[0];
return (
<ImageElement
image={avatar}
width={800}
height={200}
backgroundColor="#bbbbbb"
alt={avatar.description}
/>
);
}
export const query = graphql`
{
author: kontentItemAuthor {
elements {
avatar_image {
value {
url
description
}
}
}
}
}
`
Rich text elements from Kontent could be resolved to React components using "html-react-parser" as described in this article.
This package should make the usage easier. Basically by loading the rich text data and use these components to provide this data and resolution functions.
Complete showcase could be found in rich-text.js in the development site.
import { RichTextElement, ImageElement } from "@kentico/gatsby-kontent-components"
// ...
<RichTextElement
value={richTextElement.value}
images={richTextElement.images}
links={richTextElement.links}
linkedItems={richTextElement.modular_content}
resolveImage={image => {
return (
<ImageElement
image={image}
alt={image.description ? image.description : image.name}
width={200}
/>
)
}}
resolveLink={(link, domNode) => {
const parentItemType = contextData.type // It is possible to use external data for resolution
return (
<Link to={`/${link.type}/partner/${parentItemType}/${link.url_slug}`}>
{domNode.children[0].data}
</Link>
)
}}
resolveLinkedItem={linkedItem => {
return <pre>{JSON.stringify(linkedItem, undefined, 2)}</pre>
}}
resolveDomNode={(domNode, domToReact) => {
if (domNode.name === "table") {
// For options - check https://www.npmjs.com/package/html-react-parser#options
return (
<div className="table-responsive">
{domToReact([domNode])}
</div>
);
}
}}
/>
If you don't need to resolve anything, you could just provide value
property.
If you want to resolve images pass images
and resolveImage
properties.
images
have to contain at least image_id
propertyresolveImage
has one parameter image
usually containing one record from images
arrayimage
object must follow data contract defined in Image element component section. Moreover, for correct resolution, the additional image_id
identifier of the image is mandatory, as well.If you want to resolve links to other content items pass links
and resolveLink
properties.
All other links (web URL, email, asset link) are not resolved. If you could use this functionality, please submit a feature request.
links
have to contain at least link_id
propertyresolveLink
has two parameter link
basically containing one record from links
array and domNode
dome link element that could be used for i.e. getting the inner text of the current link domNode.children[0].data
.If you want to resolve images pass linkedItems
and resolveLinkedItem
properties.
linkedItems
have to contain at least system.codename
propertyresolveLinkedItem
has one parameter linkedItem
basically containing one record from linkedItems
arrayThe general resolution method resolveDomNode
is called for every DOM node, except for ones that are resolved specifically (described above). In the example above, all table elements will be wrapped with the div
element. You could also return just a JSX if you want to replace the domNode
completely.
If you want to resolve elements via resolveDomNode
, you get the following parameters:
domNode
- DOM node from html-react-parser
domToReact
- method from html-react-parser
to be able to extend the actual domNode
as on the exampleFAQs
Source plugin providing Kontent data from REST Delivery API
The npm package @kentico/gatsby-kontent-components receives a total of 9 weekly downloads. As such, @kentico/gatsby-kontent-components popularity was classified as not popular.
We found that @kentico/gatsby-kontent-components demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.