Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

204
Vistas
Angular + Angularfire realtime update doent work on mobile device

How can I debug a problem like this. When I'm using application on desktop everything works fine and updates on database change, bug if I am using application on mobile for change I need to refresh manually. The application is one for both devices and there is no exception.

This. is the exact method that I use for subscribe in my component to receive the data.

  public getOrderDetails$(id: string): Observable<OrderItem | undefined> {
    if (!id || this.context.state.isServer) return of(undefined)
    this.isLoading = true;

    try {
      return this.db.collection<OrderItem>('orders').doc(id)
        .valueChanges({ idField: 'id' })
        .pipe(
          tap((order) => {
            if (!order) return
            if (!this.currentOrder) {
              this.currentOrder = order;
            }
            if (order.status !== this.currentOrder.status) {
              this.notification.pushNotification('The order has been updated.');
              this.currentOrder = order;
            }
            this.isLoading = false;
          }),
        );
    } catch (error) {
      console.error(error);
      this.isLoading = false;
      return of(undefined)
    }
  }
about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda