Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blips

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blips

State management for the GraphQL heads

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
decreased by-75.76%
Maintainers
1
Weekly downloads
 
Created
Source

Blips

State container for your JavaScript apps

The basics

Blips exposes a simple, GraphQL-like API for managing your application state, which is contained inside a single store.

The store can be changed only through mutations, you can read from it through queries and can also listen for changes with subscriptions.

The why?

I developed Blips because I wanted to use GraphQL with every project, regardless of what the API server looks like. So if my aplication is consuming a simple API (whatever kind), I can still have a store that manages the application state and write queries/mutations that would resolve with making requests to that API. E.g.:

Disclaimer: The following snippet is pulled out of context so it might not make sense to everybody.

const resolvers = {
  Mutation: {
    createTodo: async (_, args, context) =>
      await fetch('api/v1/todos', {
        method: 'post',
        body: JSON.stringify(args)
      }).then(res => res.json())
  }
}

const createTodoMutation = `
  mutation createTodoMutation($label: String!) {
    createTodo(label: $label) {
      id
      label
      completed
    }
  }
`

// wth is store ?!!?!!111
store.mutate(createTodoMutation, { variables: { label: 'Buy milk' } })
  .then(res => {
    // do something with res
  })

The code

Disclaimer: The code folder structure in the following example does not represent a requirement or guideline. It's just how I use it.

// types.js

export default `
  type Todo {
    id: String!
    label: String!
    completed: Boolean
  }

  type Query {
    allTodos: [Todo]!
  }

  type Mutations {
    createTodo: Todo!
    updateTodo: Todo!
  }

  type Subscription {
    allTodos: [Todo]!
  }
`

// resolvers.js

export default (pubsub, withFilter) => ({
  Todo: {
    // transform _id to id
    id: ({ id, _id }, args, context) => _id || id,
  },

  Query: {
    allTodos: allTodos: (_, args, {store}) => store.get('todos')
  },

  Mutation: {
    createTodo: (_, { label, completed = false }, { store }) => {
      const id = uuid()
      const newTodo = {
        _id: id,
        label,
        completed
      }

      const newTodos = store.post(newTodo)('todos')
      pubsub.publish('todoCreated')

      return newTodo
    },
    updateTodo: (_, {id, label, completed}, {store}) => {
      const newTodo = store.patch(id, {
        label,
        completed
      })('todos')
      pubsub.publish('todoUpdated', { id })

      return newTodo
    }
  }

  Subscription: {
    allTodos: {
      subscribe: () => pubsub.asyncIterator(['todoCreated', 'todoUpdated'])
    },
    todo: {
      subscribe: withFilter(
        () => pubsub.asyncIterator('todoUpdated'),
        (args, variables) => {
          return args.id === variables.id
        }
      )
    },
  }
})
// operations.js

export const allTodosSubscription = `
  subscription allTodosSubscription {
    allTodos {
      id
      label
      completed
    }
  }
`

export const createTodoMutation = `
  mutation createTodoMutation(label: String!, completed: Boolean) {
    createTodo(label: $label, completed: $completed) {
      id
      label
      completed
    }
  }
`

export const updateTodoMutation = `
  mutation updateTodoMutation(id: String!, label: String, completed: Boolean) {
    updateTodo(id: $id, label: $label, completed: $completed) {
      id
      label
      completed
    }
  }
`
// index.js

import { createStore } from 'blips'
import typeDefs from './types'
import resolvers from './resolvers'
import { allTodosSubscription } from './operations'


const initialState = {
  todos: {
    '3c4a086e-2151-4b54-acb2-13044ea553c1': {
      _id: '3c4a086e-2151-4b54-acb2-13044ea553c1',
      label: 'Buy milk',
      completed: false
    },
    '4ecca858-67f8-491e-94cc-48b262061819': {
      _id: '4ecca858-67f8-491e-94cc-48b262061819',
      label: 'Learn Blips',
      completed: true
    }
  }
}

const store = createStore({typeDefs, resolvers}, initialState)


const allTodosObservable = await store.subscribe(allTodosSubscription)
const sub = allTodosObservable.subscribe(todos => console.log(todos))

// dispose mechanism works as expected
sub.unsubscribe()

Keywords

FAQs

Package last updated on 04 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc