Package Exports
- @apollo-elements/mixins
- @apollo-elements/mixins/apollo-element-mixin
- @apollo-elements/mixins/apollo-element-mixin.js
- @apollo-elements/mixins/apollo-mutation-mixin
- @apollo-elements/mixins/apollo-mutation-mixin.js
- @apollo-elements/mixins/apollo-query-mixin
- @apollo-elements/mixins/apollo-query-mixin.js
- @apollo-elements/mixins/apollo-subscription-mixin
- @apollo-elements/mixins/apollo-subscription-mixin.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@apollo-elements/mixins) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@apollo-elements/mixins
🍹 Moon mixins for cosmic components 👩🚀
A set of class mixin functions that add Apollo GraphQL goodness to your web component classes.
📓 Contents
🔧 Installation
Apollo element mixins are distributed through npm, the node package manager. To install a copy of the latest version in your project's node_modules directory, install npm on your system then run the following command in your project's root directory:
npm install --save @apollo-elements/mixins🍸 Mixins
ApolloElementMixin
This is the basic class which all others inherit from. You usually shouldn't need to use this directly.
ApolloQueryMixin
Connects a web component to apollo client and associates it with a specific GraphQL query. When the query's data updates, so will the element's data property.
ApolloMutationMixin
Connects a web component to apollo client and associates it with a specific GraphQL mutation. When the mutation resolves, so will the element's data property.
ApolloSubscriptionMixin
Connects a web component to apollo client and associates it with a specific GraphQL subscription. When the subscription gets new data, the element's data property will update.
ApolloClientMixin
Optional mixin which connects an element to a specific ApolloClient instance.
import { client } from './specific-apollo-client';
class SpecificClientElement extends ApolloClientMixin(client, ApolloQueryMixin(HTMLElement)) {
// ...
}👩🚀 Usage
Here's an example that uses HTMLElement
import { ApolloQueryMixin } from '@apollo-elements/mixins/apollo-query-mixin.js';
class HelloQuery extends ApolloQueryMixin(HTMLElement) {
constructor() {
super();
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>/* ... */</style>
<p hidden>
<span id="greeting"></span>
<span id="name"></span>
</p>
`;
}
get data() {
return this.__data;
}
set data(data) {
this.__data = data;
this.render();
}
render() {
if (!this.data) return;
this.shadowRoot.getElementById('greeting').textContent =
this.data?.helloWorld.greeting ?? 'Hello';
this.shadowRoot.getElementById('name').textContent =
this.data?.helloWorld.name ?? 'Friend';
this.shadowRoot.querySelector('p').hidden = false;
}
}
customElements.define('hello-query', HelloQuery);<hello-query>
<script type="application/graphql">
query HelloQuery {
helloWorld {
name
greeting
}
}
</script>
</hello-query>Aren't Mixins Considered Harmful?
Different kind of mixin. These are JS class mixins.
👷♂️ Maintainers
apollo-elements is a community project maintained by Benny Powers.