A custom element that can be used to wrap existing share buttons and replace them with a button that invokes the Web Share API.
For example, in supporting browsers the following HTML will show a plain <button>
saying "Share". In browsers that don't support the Web Share API, the default link to share on Twitter will be displayed.
<web-share-wrapper>
<a href="https://twitter.com/intent/tweet?text=Share+Text&url=SHARE_URL">Share on Twitter</a>
</web-share-wrapper>
The <web-share-wrapper>
is a web component that you can use to enhance your website with the Web Share API. If the API is available, the component will replace its contents with a single share button or a template that you provide.
The component only activates if the Web Share API is available, otherwise it will just show it's contents.
Currently the only browser that supports the Web Share API (Chrome on Android) also supports custom elements and templates. So this module works where it will work and will fallback to your original HTML where it doesn't.
You can install the component with bower.
bower install --save web-share-wrapper
You can also install with npm.
npm install web-share-wrapper
Once installed, you can either use the minified version by referencing it from the dist
directory.
<script src="./node_modules/web-share-wrapper/dist/web-share-wrapper.min.js"></script>
Or if you have a build step, you can require the module.
const WebShareWrapper = require('web-share-wrapper');
If you want to use the component from the unpkg CDN then you can.
You can get the latest version using the bare URL. See more options on https://unpkg.com/.
<script src="https://unpkg.com/web-share-wrapper"></script>
<web-share-wrapper>
<a href="https://twitter.com/intent/tweet?text=Share+Text&url=SHARE_URL">Share on Twitter</a>
</web-share-wrapper>
If navigator.share
is available, the contents of the <web-share-wrapper>
will be replaced with a single <button>
element, which when clicked will invoke the Web Share API.
Check out this page with more examples.
You can set attributes to control the text on the share button and the text and URL that is shared. The available attributes are:
- text: Sets the text on the share button.
- template: An id for a
<template>
element. The component will find the template, hydrate it and add it as the child of the component. This overrides thetext
attribute. - sharetitle: Sets the title to be shared.
- sharetext: Sets the text to be shared. Falls back to the text contents of the
<title>
element. - shareurl: Sets the URL to be shared. Fallsback to the
href
of the canonical link, failing thatwindow.location.href
.
<web-share-wrapper text="Share this" sharetitle="This amazing thing was shared" sharetext="You should really click on the link to learn more" shareurl="https://example.com/amazing">
<a href="https://twitter.com/intent/tweet?text=Share+Text&url=SHARE_URL">Share on Twitter</a>
</web-share-wrapper>
Check out this page with more examples.
The <web-share-wrapper>
emits one of two events in response to the result of using navigator.share
.
If the share is successful then a share-success
event is fired. The share title, text and URL are emitted in the event
's details
(though the user may have edited them in the share target).
If the share is unsuccessful then a share-failure
event is fired. The share title, text, URL and the error that was thrown are emitted in the event
's details
.
[TODO]
Bug reports and pull requests are welcome on GitHub at https://github.com/philnash/web-share-wrapper. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The code is available as open source under the terms of the MIT License.
Everyone interacting in the <web-share-wrapper>
project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.