mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Dropped isomorphic-fetch in examples in favor of isomorphic-unfetch. (#3230)
This commit is contained in:
parent
31ba48ada2
commit
b41d177609
|
@ -7,7 +7,7 @@
|
||||||
"start": "next start"
|
"start": "next start"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0"
|
"react-dom": "^16.0.0"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
|
|
||||||
export default class MyPage extends React.Component {
|
export default class MyPage extends React.Component {
|
||||||
static async getInitialProps () {
|
static async getInitialProps () {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
|
|
||||||
export default class MyPage extends React.Component {
|
export default class MyPage extends React.Component {
|
||||||
static async getInitialProps () {
|
static async getInitialProps () {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ApolloClient, createNetworkInterface } from 'react-apollo'
|
import { ApolloClient, createNetworkInterface } from 'react-apollo'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
let apolloClient = null
|
let apolloClient = null
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"graphql": "^0.9.3",
|
"graphql": "^0.9.3",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"prop-types": "^15.5.8",
|
"prop-types": "^15.5.8",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ApolloClient, createNetworkInterface } from 'react-apollo'
|
import { ApolloClient, createNetworkInterface } from 'react-apollo'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
let apolloClient = null
|
let apolloClient = null
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"cookie": "^0.3.1",
|
"cookie": "^0.3.1",
|
||||||
"graphql": "^0.9.3",
|
"graphql": "^0.9.3",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"prop-types": "^15.5.10",
|
"prop-types": "^15.5.10",
|
||||||
"react": "^15.5.4",
|
"react": "^15.5.4",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { ApolloClient } from 'apollo-client'
|
import { ApolloClient } from 'apollo-client'
|
||||||
import { HttpLink } from 'apollo-link-http'
|
import { HttpLink } from 'apollo-link-http'
|
||||||
import { InMemoryCache } from 'apollo-cache-inmemory'
|
import { InMemoryCache } from 'apollo-cache-inmemory'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
let apolloClient = null
|
let apolloClient = null
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"graphql": "^0.11.7",
|
"graphql": "^0.11.7",
|
||||||
"graphql-anywhere": "^3.1.0",
|
"graphql-anywhere": "^3.1.0",
|
||||||
"graphql-tag": "^2.5.0",
|
"graphql-tag": "^2.5.0",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"prop-types": "^15.5.8",
|
"prop-types": "^15.5.8",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"express-session": "^1.15.2",
|
"express-session": "^1.15.2",
|
||||||
"firebase": "^3.7.5",
|
"firebase": "^3.7.5",
|
||||||
"firebase-admin": "^4.2.0",
|
"firebase-admin": "^4.2.0",
|
||||||
"isomorphic-fetch": "2.2.1",
|
"isomorphic-unfetch": "2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0",
|
"react-dom": "^16.0.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import React, { Component } from 'react'
|
import React, { Component } from 'react'
|
||||||
import firebase from 'firebase'
|
import firebase from 'firebase'
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
import clientCredentials from '../credentials/client'
|
import clientCredentials from '../credentials/client'
|
||||||
|
|
||||||
export default class Index extends Component {
|
export default class Index extends Component {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* global fetch */
|
/* global fetch */
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
|
|
||||||
const API_BASE_URL = 'https://api.github.com'
|
const API_BASE_URL = 'https://api.github.com'
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"freactal": "^1.1.1",
|
"freactal": "^1.1.1",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0"
|
"react-dom": "^16.0.0"
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"i18next": "^7.1.3",
|
"i18next": "^7.1.3",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0",
|
"react-dom": "^16.0.0",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* global fetch */
|
/* global fetch */
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch translation file(s).
|
* Fetch translation file(s).
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"es6-promise": "4.1.1",
|
"es6-promise": "4.1.1",
|
||||||
"isomorphic-fetch": "2.2.1",
|
"isomorphic-unfetch": "2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"next-redux-saga": "1.0.1",
|
"next-redux-saga": "1.0.1",
|
||||||
"next-redux-wrapper": "1.2.0",
|
"next-redux-wrapper": "1.2.0",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
import {delay} from 'redux-saga'
|
import {delay} from 'redux-saga'
|
||||||
import {all, call, put, take, takeLatest} from 'redux-saga/effects'
|
import {all, call, put, take, takeLatest} from 'redux-saga/effects'
|
||||||
import es6promise from 'es6-promise'
|
import es6promise from 'es6-promise'
|
||||||
import 'isomorphic-fetch'
|
import 'isomorphic-unfetch'
|
||||||
|
|
||||||
import {actionTypes, failure, loadDataSuccess, tickClock} from './actions'
|
import {actionTypes, failure, loadDataSuccess, tickClock} from './actions'
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { Environment, Network, RecordSource, Store } from 'relay-runtime'
|
import { Environment, Network, RecordSource, Store } from 'relay-runtime'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
let relayEnvironment = null
|
let relayEnvironment = null
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dotenv": "^4.0.0",
|
"dotenv": "^4.0.0",
|
||||||
"dotenv-webpack": "^1.5.4",
|
"dotenv-webpack": "^1.5.4",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "^3.0.3",
|
"next": "^3.0.3",
|
||||||
"react": "^15.6.1",
|
"react": "^15.6.1",
|
||||||
"react-dom": "^15.6.1",
|
"react-dom": "^15.6.1",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "^4.15.2",
|
"express": "^4.15.2",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "latest",
|
"next": "latest",
|
||||||
"react": "^16.0.0",
|
"react": "^16.0.0",
|
||||||
"react-dom": "^16.0.0",
|
"react-dom": "^16.0.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { Component } from 'react'
|
import { Component } from 'react'
|
||||||
import io from 'socket.io-client'
|
import io from 'socket.io-client'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
class HomePage extends Component {
|
class HomePage extends Component {
|
||||||
// fetch old messages data from the server
|
// fetch old messages data from the server
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const fetch = require('isomorphic-fetch')
|
const fetch = require('isomorphic-unfetch')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
async exportPathMap () {
|
async exportPathMap () {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"main": "server.js",
|
"main": "server.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"express": "^4.15.3",
|
"express": "^4.15.3",
|
||||||
"isomorphic-fetch": "^2.2.1",
|
"isomorphic-unfetch": "^2.0.0",
|
||||||
"next": "beta",
|
"next": "beta",
|
||||||
"react": "^15.5.4",
|
"react": "^15.5.4",
|
||||||
"react-dom": "^15.5.4",
|
"react-dom": "^15.5.4",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { Component } from 'react'
|
import { Component } from 'react'
|
||||||
import Head from 'next/head'
|
import Head from 'next/head'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
import Post from '../components/post'
|
import Post from '../components/post'
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { Component } from 'react'
|
import { Component } from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import Head from 'next/head'
|
import Head from 'next/head'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
export default class extends Component {
|
export default class extends Component {
|
||||||
static async getInitialProps ({ query }) {
|
static async getInitialProps ({ query }) {
|
||||||
|
|
|
@ -893,7 +893,7 @@ If you want to render the built-in error page you can by using `next/error`:
|
||||||
```jsx
|
```jsx
|
||||||
import React from 'react'
|
import React from 'react'
|
||||||
import Error from 'next/error'
|
import Error from 'next/error'
|
||||||
import fetch from 'isomorphic-fetch'
|
import fetch from 'isomorphic-unfetch'
|
||||||
|
|
||||||
export default class Page extends React.Component {
|
export default class Page extends React.Component {
|
||||||
static async getInitialProps() {
|
static async getInitialProps() {
|
||||||
|
|
Loading…
Reference in a new issue