Giter VIP home page Giter VIP logo

Comments (2)

dalenguyen avatar dalenguyen commented on May 31, 2024 3

Hi @evallgar, an object of data under array is not supported yet. I will figure a solution to solve this. You can check the code and make some changes to support this case if you want to contribute.

from firestore-backup-restore.

Parranoh avatar Parranoh commented on May 31, 2024

If you put this in helper.ts

const applyConversion = (data: any, conversion: Function, key: Array<string>) => {
  if (!key || key.length === 0) return;

  if (Array.isArray(data)) {
    data.forEach(d => applyConversion(d, conversion, key));
    return;
  }

  if (!data.hasOwnProperty(key[0])) return;

  if (key.length === 1) {
    const theKey: string = key[0];
    const checkResult = conversion(data[theKey]);
    if (checkResult) data[theKey] = checkResult;
  } else if (isObject(data)) {
    applyConversion(data[key[0]], conversion, key.splice(1));
  }
}

//gives the properties of data, specified by keys, to conversion; keeps old value of conversion returns null, else replaces value with return value of conversion
export const convertProperty = (data: any, conversion: Function, keys: Array<string>) => {
  keys.forEach((key: string) => {
    applyConversion(data, conversion, key.split('.'));
  });
}

and replace the relevant part (line 132) in import.ts with

// Update date value
if (options.dates && options.dates.length > 0) {
  convertProperty(data, makeTime, options.dates)
}

(similarly for refs and and geos), that should do the trick. I've tested it only with one set of data though.

In the above example you'd use 'notifcations.date' to get the desired result; the layer of the array in the JSON tree basically gets skipped.

from firestore-backup-restore.

Related Issues (20)

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.