A web component for adding a share button to any web page.
npm install --save @parsonic/share-button
The share button can be used with your favourite bundler or directly
from a CDN. A minified build is provided as min.js
with a source map.
Add a script tag with the minified build and use the button in your page.
<script
defer
src="https://cdn.jsdelivr.net/npm/@parsonic/[email protected]/min.js"
></script>
<share-button data-button-label="Share this page"></share-button>
Import the ShareButton
component at the root of your application
and register it.
import ShareButton from '@parsonic/share-button/ShareButton.js'
ShareButton.register()
// Use <share-button></share-button> in your page or components
Import the ShareButton
component from the CDN and register it before using.
<script type="module">
import ShareButton from 'https://cdn.jsdelivr.net/npm/@parsonic/[email protected]/ShareButton.js'
ShareButton.register()
</script>
<share-button></share-button>
If you prefer to give the share button an alternative tag name you can pass this to the register method.
// To use as <my-share-button></my-share-button>
ShareButton.register('my-share-button')
The share button uses the navigator.share
feature if the browser
supports it. If the share feature is not available the component will not be
defined and will either show the fallback content or no button at all.
For control over the share data you can provide the share button with data attributes. Below is an example using Nunjucks template syntax.
<share-button
data-url="{{ post.url }}"
data-title="{{ post.title }}"
data-text="{{ post.description }}"
></share-button>
If the data attributes aren't provided the component will attempt to find the share data values from meta tags on the page using the Open Graph protocol.
<meta property="og:url" content="{{ post.url }}" />
<meta property="og:title" content="{{ post.title }}" />
<meta property="og:description" content="{{ post.description }}" />
Failing to find either the data attributes or the Open Graph meta tags the
button will default to using the page URL (window.location.href
), the
document title (document.title
) and no text content.
You can customise the button by providing your own label, styling it or replacing it with your own button.
Provide a label for the button with the data-button-label
attribute.
<share-button data-button-label="Share this page"></share-button>
Style the button using the button
part selector.
share-button::part(button) {
/* button styles */
}
Provide your own button in the button
slot.
<share-button>
<button slot="button">My cool button<button>
</share-button>
When the share button is clicked a custom event with the
name share
is dispatched. This event has the share data as the payload,
bubbles and is cancelable. The event name can be customised by setting
the data-share-event-name
attribute.
// Example metric capture
document.addEventListener('share', (ev) => {
const { url, title } = ev.detail
metrics.track('share', { url, title })
})
// Cancel the share action for some reason
document.addEventListener('share', (ev) => {
if (preventSharing(ev.detail.url)) {
ev.preventDefault()
}
})
Once the share action completes a custom event with the
result is dispatched. If the share action was successful the result
attribute will be set to 'success'
otherwise it will be 'error'
.
When the result is an error the error object will
be in the event payload. The event bubbles but is not cancelable. The
event name can be customised by setting the data-result-event-name
attribute.
document.addEventListener('shareResult', (ev) => {
const { result } = ev.detail
if (result === 'success') {
metrics.track('articleShare', ev.detail.data)
} else {
metrics.track('shareFailed', ev.detail.error.message)
}
})
Fallback content can be provided for situations where the native share function isn't available or the component script isn't loaded. Please see this blog post for thorough explanation of using fallback content.
<share-button>
<button popovertarget="fallback">Share</button>
<div popover id="fallback">
<h2>Share this post</h2>
<div>
<label>Page URL</label>
<input value="{{ post.url }}" readonly />
</div>
</div>
</share-button>