Coder Social home page Coder Social logo

khadorkin / apollo-link-webworker Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pcreations/apollo-link-webworker

0.0 2.0 0.0 58 KB

Apollo link that lets you use graphql client-side only, with a webworker as a "server" supporting normal query and subscriptions

JavaScript 100.00%

apollo-link-webworker's Introduction

apollo-link-webworker

Apollo link that lets you use graphql client-side only, with a webworker as a "server" supporting normal query and subscriptions

Important note

This repository is just a proof of concept and not intended for production use yet. But contributions are welcomed :)

Installing

Install the package and its peer dependencies : yarn add apollo-link-webworker graphql apollo-link subscriptions-transport-ws

Getting started

Start by creating a worker.js file. Then you can import the utility functions that help you to build the worker :

worker.js

import { createWorker, handleSubscriptions } from 'apollo-link-webworker';

Creating the basic worker

createWorker takes an option object as parameter accepting the schema and the context:

worker.js

import { createWorker, handleSubscriptions } from 'apollo-link-webworker';

import schema from './schema'; // your graphql schema
import context from './context'; // your graphql context

createWorker({
  schema,
  context
});

If you only want to support classical communication (i.e : you don't mind about subscriptions) you can skip the next step.

Handling subscriptions

apollo-link-webworker lets you generate graphql subscriptions from external event source. It's very useful when you don't own the socket server (firebase realtime database for example) but still need to resolve the result via your graphql schema.

To add subscriptions, just compose the handleSubscriptions utility function inside the worker onmessage handler :

worker.js

import { createWorker, handleSubscriptions } from 'apollo-link-webworker';

import schema from './schema'; // your graphql schema
import context from './context'; // your graphql context
import pubsub from './pubsub'; // a PubSub instance from graphql-subscriptions package for example

createWorker({
  schema,
  context
});

self.onmessage = message => handleSubscriptions({
  self,
  message,
  schema,
  context,
  pubsub,
});

pubsub.js

import { PubSub } from 'graphql-subscriptions';

const pubsub = new PubSub();

export default pubsub;

Whenever you need to generate a subscription from an external event source, you just need to push to the correct pubsub channel. By convention, the channel name used is the graphql subscription operation name.

For example (with firebase) : schema.js

import pubsub from './pubsub';

const schemaString = `
  [...]

  type Subscription {
    messageAdded: Message!
  }

  [...]

`;

const resolvers = {
  [...]
  Subscription: {
    messageAdded: {
      subscribe: () => pubsub.asyncIterator('OnMessageAdded'),
    },
  }
  [...]
};

OnMessageAdded.graphql

subscription OnMessageAdded {
  messageAdded {
    id
    content
    user {
      id
      username
    }
  }
}
// Generates a subscriptions from external firebase event source
firebaseDb().ref('/messages').on('child_added', snapshot => pubsub.publish('OnMessageAdded', {
 messageAdded: snapshot.val()
}));

Generating the apollo client

Once you created your worker.js file you can instanciate a new WebWorkerLink from the factory function createWebWorkerLink :

client.js

import { ApolloClient } from 'apollo-client';
import InMemoryCache from 'apollo-cache-inmemory';
import { createWebWorkerLink } from 'apollo-link-webworker';

const GraphqlWorker = require('./worker.js');

const worker = new GraphqlWorker();

const link = createWebWorkerLink({ worker });

const dataIdFromObject = result => result.id;

const cache = new InMemoryCache({ dataIdFromObject });

const client = new ApolloClient({
  cache,
  link,
});

export default client;

Example chat application with Firebase & Authentication :

Firechat repository

apollo-link-webworker's People

Contributors

pcreations avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.