I am using firestore and react-native-gifted-chat, I am trying to get all the chat messages from firestore to the chat. However, gifted chat does not support displaying firebase timestamp. It will show invalid Date. Therefore, I m trying to convert all the date object.
async _getMessage() {
  const messColRef = db.collection('Message').doc(this.state.roomName).collection('message').orderBy('createdAt', 'desc').limit(9)
  const initialQuery = messColRef
  const documentSnapshots = await initialQuery.get()
  const documentData = documentSnapshots.docs.map(document => ({
    id: document.id, ...document.data()
  }));
  const lastVisible = documentData[documentData.length - 1]
  const finalData = _.forEach(documentData['createdAt'], (item) => {
    return item.toDate()
  });
  console.log(documentData)
}
and it is how my data look like:
{
  "_id": "f0feb0b6-c0f9-4735-a93d-4297872a4840",
    "createdAt": Timestamp {
    "nanoseconds": 382000000,
      "seconds": 1568995812,
 },
  "id": "Uw6PNNsf7aqWrxcgSDSi",
    "text": "Hi",
      "user": {
    "_id": "V8h2iSllhPXSr8sTGP0yHiaYZwx1",
      "avatar": "https://firebasestorage.googleapis.com/v0/b/exit-3684f.appspot.com/o/add- 
    user.png ? alt = media & token=395c8beb - 47a3 - 4ae6 - a0a1 - fe901e7ad42f",
    "name": "This is the username",
 },
},
{
  "_id": "cc298d96-f19a-4ec7-bdf7-3767d900a364",
    "createdAt": Timestamp {
    "nanoseconds": 373000000,
      "seconds": 1568995733,
 },
  "id": "WzbOA52Y3qukvPUIXRLB",
    "text": "hello",
      "user": {
    "_id": "V8h2iSllhPXSr8sTGP0yHiaYZwx1",
      "avatar": "https://firebasestorage.googleapis.com/v0/b/exit-3684f.appspot.com/o/add- 
    user.png ? alt = media & token=395c8beb - 47a3 - 4ae6 - a0a1 - fe901e7ad42f",
    "name": "This is the username",
    },
},
so my goal is to convert all the createdAt to js time date
 
     
    