I'm trying to get the timestamp of a document that I created in firestore, but what I get is this:
myService.ts
getDomiciliarios() {
this.domiciliarios = this.afs.collection('domiciliarios').snapshotChanges().map(actions => {
return actions.map(a => {
const data = a.payload.doc.data() as Domiciliario;
const id = a.payload.doc.id;
const date = firebase.firestore.FieldValue.serverTimestamp();
return { id, ...data, date };
});
});
return this.domiciliarios;
}
myComponent.ts
ngOnInit() {
const domiciliarios = this.fs.getDomiciliarios()
.subscribe(data => this.dataSource.data = data, date => date);
}
myComponent.html
<ng-container matColumnDef="fecha">
<mat-header-cell *matHeaderCellDef mat-sort-header> Fecha </mat-header-cell>
<mat-cell *matCellDef="let domiciliario"> {{ domiciliario.date }} </mat-cell>
</ng-container>
How can I print that timestamp, should I have previously created it?
IF you want the date value of
firebase.firestore.FieldValue.serverTimestamp()
you can use.toDate()
. See FireStore Timesteamp. In your case it will bedomiciliario.date.toDate()
in your template.Thanks to @Renaud who put emphasis on where I was implementing the timestamp, it should be when creating a record in Firestore. In my case I am working with a formGroup, then the code would look something like this:
This alternative also works but remember that it is the current time of the client's computer (user's browser).
I think you are using
FieldValue.serverTimestamp()
the wrong way: as the documentation states,firebase.firestore.FieldValue
methods return "values that can be used when writing document fields with set() or update()". (See https://firebase.google.com/docs/reference/js/firebase.firestore.FieldValue)You are using the
serverTimestamp()
method while reading the data.You should use it when you create the records in the database, as you mention at the end of your question.
EDIT: Do as follow:
You can then query like
The code above is pure JavaScript and you may adapt it to angular and type script but the philosophy is the same.
If you want the current Date as a timestamp you can use the following
For Firebase Functions
For local projects