1. 01 10月, 2018 6 次提交
  2. 29 9月, 2018 13 次提交
  3. 28 9月, 2018 8 次提交
  4. 27 9月, 2018 6 次提交
  5. 26 9月, 2018 5 次提交
    • R
      with-typescript example updates (#5267) · 397daece
      Resi Respati 提交于
      * [with-typescript] Updated `@zeit/next-typescript` and typescript typings
      
      * [with-typescript] Updated tsconfig to match new recommended config
      
      * [with-typescript] upgraded dependencies, implement type-checking
      
      * [with-typescript] add _document example, fixed tsconfig
      
      * [with-typescript] updated README
      
      * [with-typescript] updated example contents
      
      * [with-typescript] adopt the Layout component from Flow example
      397daece
    • H
      Fix swallowed unhandled rejections on the server (#5273) · 28a2bb36
      Henrik Wenz 提交于
      An upstream bug in webpack-dev-middleware caused unhandled rejections to be swallowed.
      28a2bb36
    • T
      Use getBrowserBodyText for HMR test (#5290) · 6e4f0d8e
      Tim Neutkens 提交于
      6e4f0d8e
    • M
      withApollo example - move from old HOC APIs to new function-as-child APIs (#5241) · 7961946c
      Matthew Francis Brunetti 提交于
      Since version 2.1, react-apollo is exposing some new components that use the function-as-child (or render-prop) pattern to let you connect apollo-client magic with your components. See the blog article: [New in React Apollo 2.1](https://www.apollographql.com/docs/react/react-apollo-migration.html)
      
      If I'm not mistaken, it's generally agreed that this pattern is (where it works) superior to the HOC pattern, for reasons that are best explained here: https://cdb.reacttraining.com/use-a-render-prop-50de598f11ce 
      
      So I updated the with-apollo example to use the new API, and IMO this code is much simpler and natural to read and understand, especially if you are not already familiar with Apollo's HOC APIs.
      
      I broke up my changes into separate commits, for easier review. Commits with "Refactor" in the message accomplish the goal of switching to the new APIs while minimizing line-by-line differences (select "Hide whitespace changes" under "Diff settings"). Commits with "Clean up" in the message follow up the refactoring with trivial things like reorganizing code sections, renaming variables, etc.
      
      For the components doing mutations, I chose not to use the `Mutation` component, since that doesn't really make sense to me; a mutation is something that happens at a point in time, so it's not meaningful to represent a mutation in the markup, which exists for a period of time. All that component does is expose a `mutate` function for a single specified mutation, and `result` data for a single firing of the mutation (which we don't need anyways; apollo handles updating the local data with the result). To me it seems simpler and more flexible to just get the apollo client via `ApolloConsumer` and call `.mutate()` on it. 
      
      In case anyone is interested, here's what my version of `PostUpvoter` using the `Mutation` component looked like:
      
       <details>
      
      ```jsx
      import React from 'react'
      import { Mutation } from 'react-apollo'
      import { gql } from 'apollo-boost'
      
      export default function PostUpvoter ({ votes, id }) {
        return (
          <Mutation mutation={upvotePost}>
            {mutate => (
              <button onClick={() => upvote(id, votes + 1, mutate)}>
                {votes}
                <style jsx>{`
                  button {
                    background-color: transparent;
                    border: 1px solid #e4e4e4;
                    color: #000;
                  }
                  button:active {
                    background-color: transparent;
                  }
                  button:before {
                    align-self: center;
                    border-color: transparent transparent #000000 transparent;
                    border-style: solid;
                    border-width: 0 4px 6px 4px;
                    content: '';
                    height: 0;
                    margin-right: 5px;
                    width: 0;
                  }
                `}</style>
              </button>
            )}
          </Mutation>
        )
      }
      
      const upvotePost = gql`
        mutation updatePost($id: ID!, $votes: Int) {
          updatePost(id: $id, votes: $votes) {
            id
            __typename
            votes
          }
        }
      `
      function upvote (id, votes, mutate) {
        mutate({
          variables: { id, votes },
          optimisticResponse: {
            __typename: 'Mutation',
            updatePost: {
              __typename: 'Post',
              id,
              votes
            }
          }
        })
      }
      ```
      
      </details>
      
      ###
      
      I'm happy with where things are at here, but I'm more than happy to address any comments, concerns, ideas for improvent!
      
      Thanks!
      7961946c
    • T
      Even more reliable error-recovery tests (#5284) · db216e00
      Tim Neutkens 提交于
      db216e00
  6. 25 9月, 2018 2 次提交