Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
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
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!