GithubHelp home page GithubHelp logo

cuitymiko / taro-apollo Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kdong007/taro-apollo

0.0 1.0 0.0 74 KB

仿照 react-apollo 1.x版本 以及 taro-redux做的 graphql componet wrapper

License: MIT License

JavaScript 100.00%

taro-apollo's Introduction

taro-apollo

仿照 react-apollo 1.x版本 以及 taro-redux做的 graphql componet wrapper

安装

npm install taro-apollo --save
yarn add taro-apollo

使用

初始化apollo client 这里我使用的是我的wx-apollo-fetcher 你可以使用自己的或者其他fetch polyfill

import { ApolloClient } from "apollo-client";
import { InMemoryCache } from "apollo-cache-inmemory";
import { HttpLink } from "apollo-link-http";
import wxApolloFetcher from "wx-apollo-fetcher";
import { setApolloClient } from "taro-apollo";

const client = new ApolloClient({
    link: new HttpLink({
        uri: "xxx",
        fetch: wxApolloFetcher,
    }),
    cache: new InMemoryCache(),
});

setApolloClient(client);

apollo组件化

import { withQuery } from "taro-apollo";
import gql from "graphql-tag";

const query = gql`
    query xxx{
        xxxx
    }
`;

@withQuery({
    query: query,
    fetchPolicy: XXX,
    ignoreCache: true/false, // 设置 fetchPolicy = "network-only", 为了省事。。 
    variables: (props, state) => {
        return {
            // xxx
        };
    },
})
export default class MyComponent extends Taro.Component {

    render() {
        const { data, loading, error } = this.props;
        return (
            <View>
                {loading && <View>加载中</View>}
                {error && <View>出错啦</View>}
                {data && <View>xxxx</View>}
            </View>
        );
    }

}

有需要注意的是我把原有skip和variables逻辑二合一了 当query需要variables && variables结果为空时自动skip

fetchMore/refetch

render(){
    const {fetchMore, refetch} = this.props;
    // 参数和 apollo-client一样 
}

直发query/mutation

import { sendQuery, sendMutation } from "taro-apollo";

sendQuery(query, variables, ignoreCache)
    .then(data => {
        // do something
    })
    .catch(err => {
        // handle error
    });

sendMutation(mutation, variables, refetchQueries)
    .then(data => {
        // do something
    })
    .catch(err => {
        // handle error
    });

TODO

  • withMutation

一些推荐用的apollo link

taro-apollo's People

Contributors

kdong007 avatar

Watchers

James Cloos 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.