apollo-map-props

2.0.1 • Public • Published

apollo-map-props

We created three Higher Order Component (HOC) that wraps the Apollo Query and Mutation and Context component

Installation

install this package by running npm install apollo-map-props --save

Configuration

The default fetchPolicy for withQuery is cache-and-network. Add below code to index.js for changing default fetchPolicy or adding other configs.

import { withQuery } from 'apollo-map-props';
withQuery.setConfig({ fetchPolicy: 'network-only' })

Usage

withQuery

A HOC that encapsulate the Query apollo component and explicitly define two functions that will handle the query props and the result mapping to the Wrapped component.

Args

  • mapProps - takes the incoming props and maps it onto the Query. This is where you'll put on query, variables, skip, fetchPolicy, and anything else like that.
  • mapResultToProps - takes the result and props then maps them to the props the View component will expect.

Example

import { withQuery } from 'apollo-map-props';
import query from 'apollo/queries/locationsQuery';
 
const mapProps = ({ locationId }) => ({
  query,
  variables: { locationId },
  skip: !locationId
});
 
const mapResultToProps = ({ data, loading }, _props) => ({
  locations: _.get(data, 'locationsAll'),
  isFetchingLocations: loading
});
 
const View = withQuery(mapProps, mapResultToProps)(ConversationPageView);

withMutation

A HOC that encapsulate the Mutation apollo component and explicitly define two functions that will handle the mutation props and the result mapping to the Wrapped component.

Args

  • mapProps - takes the incoming props and maps it onto the Mutation. Generally you'll just be passing the mutation, and passing the rest manually to the mutate function, but you can pass anything Mutation takes.
  • mapResultToProps - takes the mutate, result, and props then maps it to the props the View component will expect.

Example

import { withMutation } from 'apollo-map-props';
import mutation from 'apollo/mutations/markAsReadMutation';
 
const mapProps = ({ conversationId }) => ({
  mutation,
  variables: { id: conversationId },
  optimisticResponse: {
    __typename: 'Mutation',
    conversationUpdate: { __typename: 'Conversation', id: conversationId, read: true }
  }
});
 
const mapResultToProps = (mutate, _result, _props) => ({ markAsRead: mutate });
 
const View = withMutation(mapProps, mapResultToProps)(ConversationView);

More complicated example

import mutation from 'apollo/mutations/createMessageMutation';
 
const mapProps = () => ({ mutation });
 
function mapResultToProps(mutate, { client }, props) {
  const createMessage = attrs => {
    const optimisticResponse = createMessageOptimisticResponse({
      ...attrs,
      userId: props.currentUser.id,
      attachments: []
    });
 
    // Update the conversation in the cache so it has the new message
    updateConversationCache(client, props, (conversation, items) => {
      const message = optimisticResponse.message;
      conversation.lastItem = message;
      const conversationItems = [...items, message];
      return { conversation, conversationItems };
    });
 
    mutate({ variables: attrs, optimisticResponse })
      .then(props.refetchConversations)
      .catch(result => {
        // Remove the new message from the cached conversation since it failed
        updateConversationCache(client, props, (conversation, items) => {
          const message = optimisticResponse.message;
          const conversationItems = _.reject(items, { id: message.id });
          conversation.lastItem = _.last(conversationItems);
          return { conversation, conversationItems };
        });
      });
  };
  return { createMessage };
}
 
const View = withCreateMessageMutation(mapProps, mapResultToProps)(ConversationView);

Readme

Keywords

none

Package Sidebar

Install

npm i apollo-map-props

Weekly Downloads

6,039

Version

2.0.1

License

MIT

Unpacked Size

16.2 kB

Total Files

15

Last publish

Collaborators

  • marcel.otoboni
  • chrisanne.hymas
  • pete.macumber
  • gabriel.mesquita
  • esambo
  • shannon.murray
  • brad.schwartz
  • darshanapathak
  • ep-podium
  • ruby.a
  • sarah.blatter
  • joey_engel_podium
  • andrew.yocca
  • fernanda.verzbickas
  • melissa.capps
  • paul.jones.podium
  • rafael.veiga
  • mark.mciver
  • justin.paul
  • greyk
  • christopher.durham
  • lee.woodside
  • nick.boyadjian
  • jhonathan.viudes
  • rajchetti
  • jacob.robers
  • bdubs
  • podium-villarama
  • podiumgdm
  • landonperkins
  • apramod
  • felipetuliopc
  • aarongraham-podium
  • joseph.kuziel
  • randy.van
  • justinbenfit
  • michikogo.podium
  • andrhe.victor.podium
  • stanley.freire
  • kalvin.hom
  • thiago.scolari
  • pranavherur
  • dallinf
  • kalin-nelson
  • zaclark
  • ramon.ramos
  • blake.provo
  • drew.bowman.podium
  • andrestv
  • josiahdahlpodium
  • corey.lowe
  • jake.harris.podium
  • nharikap
  • raphael.telatim
  • vivek.hanasoge
  • garret.goehner
  • rozbonilla
  • evelynsharp
  • sgtpepper43
  • chapman8
  • podium-devteam
  • brettbeatty
  • taylor.wu
  • stephen.thomas
  • jspens
  • brentjr
  • gavin.eccles
  • jbench
  • nick.eggertz
  • andrewjensen
  • ryanvw
  • aweagel
  • jasonalmaturner
  • jordan.farnworth
  • t.murphy
  • korndog
  • ryan.bryce
  • leland.rasmussen
  • wilson.parrish
  • chanstolworthy
  • alexrclark21
  • markeperk
  • emmahoggan
  • thaws200
  • alexwalz
  • rory.harness
  • shawntonio
  • walkward
  • dhl1337
  • clifton-mcintosh
  • veronica.silva
  • nick_h
  • michaelhackman
  • jason.butterfield.podium
  • harold.podium
  • sebrassfield-podium
  • hiago.souza.podium
  • nicolecedano
  • austinwright_
  • jakehjung
  • abigailnaea
  • guilherme.perroni
  • rebeccahickson
  • tommy-c
  • andrei.hetsevich