Git Product home page Git Product logo

Comments (1)

kopax avatar kopax commented on August 22, 2024

I solved it as follow:

/**
 * @public
 * @description
 * Unfortunately, fetch doen't support progress. But we can use xhr which support progress.
 *
 * I think this way using two ways which are fetch and futch in networking is not pretty.
 * So I overwrite fetch.
 *
 * ```javascript
 * import futch from './src/api';
 * const originalFetch = fetch
 * global.fetch = (url, opts) => {
 *   console.log(opts.onProgress)
 *   if (opts.onProgress && typeof opts.onProgress === 'function') {
 *     return futch(url, opts, opts.onProgress)
 *   } return originalFetch(url, opts)
 * }
 * export default class photoUploadTest extends Component {
 *  ...
 * }
 * ```
 *
 * If you add this in your top file like `index.ios.js`, you can use fetch with progress.
 *
 * ```javascript
 * fetch(url + '/array', {
 * method: 'post',
 * body: data,
 * onProgress: (e) => {
 *     const progress = e.loaded / e.total;
 *     console.log(progress);
 *     this.setState({
 *       progress,
 *     });
 *   }
 * }).then((res) => console.log(res), (e) => console.log(e))
 * ```
 *
 * To overwrite fetch:
 *
 * ```javascript
 * import futch from './src/api';
 * const originalFetch = fetch
 * global.fetch = (url, opts) => {
 *   console.log(opts.onProgress)
 *   if (opts.onProgress && typeof opts.onProgress === 'function') {
 *     return futch(url, opts, opts.onProgress);
 *   }
 *   return originalFetch(url, opts);
 * }
 * ```
 *
 * @param {string} url - the url to futch to
 * @param {object} options - futch options (like fetch options)
 * @param {function} onProgress - the function to be called on progress event
 * @returns {Promise<unknown>} - the pending request
 * @example
 * import futch from './futch';
 *
 * const data = new FormData();
 * data.append('name', 'testName');
 * data.append('photo', {
 *   uri: source.uri,
 *   type: 'image/jpeg',
 *   name: 'testPhotoName'
 * });
 *
 *
 * futch(url, {
 *   method: 'post',
 *   body: data
 * }, (progressEvent) => {
 *   const progress = progressEvent.loaded / progressEvent.total;
 *   console.log(progress);
 * }).then((res) => console.log(res), (err) => console.log(err))
 */
const futch = (url, options = {}, onProgress) => new Promise((res, rej) => {
  if (!options.headers) {
    options.headers = {};
  }
  const xhr = new XMLHttpRequest();
  xhr.withCredentials = true;
  xhr.open(options.method || 'GET', url);
  if (options.headers instanceof Headers) {
    for (const pair of options.headers.entries()) {
      xhr.setRequestHeader(pair[0], pair[1]);
    }
  } else {
    Object.keys(options.headers).forEach((key) => {
      xhr.setRequestHeader(key, options.headers[key]);
    });
  }

  xhr.onload = (e) => res(e.target);
  xhr.onerror = rej;
  if (xhr.upload && onProgress) {
    xhr.upload.onprogress = onProgress;
  }
  xhr.send(options.body);
});

export default futch;

from react-native-tips.

Related Issues (8)

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.