Я сейчас пытаюсь отреагировать на создание документа внутри пожарного магазина.
Функция createRequest
создает do c в firestore, это вызывает функцию firebase, которая снова создает документ (такой же идентификатор, как ранее созданный do c) внутри firestore, но в другой коллекции - как мне ждать, пока будет создан этот точный документ?
async createRequest(name: string, company: string, email: string, phone: string, message: string, products: any[]) {
await this.requests.add({name, company, email, phone, message, products});
}
this.rs.createRequest(this.name, this.company, this.email, this.phone, this.message, this.products).then(() => {
// Wait for creation of document inside of collection ('mail') with same id
});