gatsby-plugin-pinterest
Gatsby plugin to add Pinterest's add-on script. 📍
Table of Contents
Installation
This module is distributed via npm which is bundled with node and
should be installed as one of your project's dependencies
:
npm install gatsby-plugin-pinterest
or
yarn add gatsby-plugin-pinterest
This library has a peerDependencies
listing for gatsby
.
Usage
Use the options
to configure the script with
available attributes.
Note: not all attributes are supported in the plugin yet.
See issues for more details.
Show Save Button on hover
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-pinterest`,
options: {
saveButton: {
round: false,
tall: true,
},
},
},
],
};
Manually show Save Button
module.exports = {
plugins: [
{
resolve: `gatsby-plugin-pinterest`,
},
],
};
Then in your code:
const pinType = "buttonPin";
const url = "https://mysite.com/sourdough-dinner-rolls";
const description = `&description="this is my favorite recipe for sourdough dinner rolls"`;
const mediaUrl = pinType === "buttonPin" ? `&media=https://mysite.com/images/dinner-rolls.png` : "";
const to = `https://www.pinterest.com/pin/create/button/?url=${url}${description}${mediaUrl}`;
return <a href={to} target="_blank" rel="noreferrer" data-pin-do={pinType} />;
Manually add source settings like url
, description
, and mediaUrl
since
gatsby-image doesn't support custom image attributes.
Inspiration
Just like gatsby-plugin-twitter
and
gatsby-plugin-instagram-embed
are doing for
the Twitter and Instagram embed scripts, this plugin
adds the Pinterest embed script to your gatsby
site.