Property ‘indexOf’ does not exist on type 'FirebaseListObservable





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







4















I am trying to iterate and find the index of items in a Firebase backend and swipe right and left through these:



 export class articleSwiperComponent implements OnInit {

articles: FirebaseListObservable<any>;

public orientation: Orientation;
public selectedArticle: article;

private changeDetectorRef: ChangeDetectorRef;
constructor(private af: AngularFire, changeDetectorRef: ChangeDetectorRef) {
this.articles = af.database.list('/articles');

this.changeDetectorRef = changeDetectorRef;
this.orientation = "none";

this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];


}


I have methods to swipe through the the database articles which will randomly bring forward an article upon first navigating to this page.



   public showNextArticle() : void {

this.orientation = "next";
this.changeDetectorRef.detectChanges();

var index = this.articles.indexOf( this.selectedArticle );

this.selectedArticle = this.articles[ index + 1 ]
? this.articles[ index + 1 ]
: this.articles[ 0 ]
;

}
public showPrevarticle() : void {

this.orientation = "prev";

this.changeDetectorRef.detectChanges();

// Find the currently selected index.
var index = this.articles.indexOf( this.selectedArticle );
this.selectedArticle = this.articles[ index - 1 ]
? this.articles[ index - 1 ]
: this.articles[ this.articles.length - 1 ]
;

}
}


However I am getting Property ‘indexOf’ does not exist on type 'FirebaseListObservable<any> Property 'length' does not exist on type 'FirebaseListObservable<any> errors. What is the equivalent of these properties in Firebase?










share|improve this question































    4















    I am trying to iterate and find the index of items in a Firebase backend and swipe right and left through these:



     export class articleSwiperComponent implements OnInit {

    articles: FirebaseListObservable<any>;

    public orientation: Orientation;
    public selectedArticle: article;

    private changeDetectorRef: ChangeDetectorRef;
    constructor(private af: AngularFire, changeDetectorRef: ChangeDetectorRef) {
    this.articles = af.database.list('/articles');

    this.changeDetectorRef = changeDetectorRef;
    this.orientation = "none";

    this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];


    }


    I have methods to swipe through the the database articles which will randomly bring forward an article upon first navigating to this page.



       public showNextArticle() : void {

    this.orientation = "next";
    this.changeDetectorRef.detectChanges();

    var index = this.articles.indexOf( this.selectedArticle );

    this.selectedArticle = this.articles[ index + 1 ]
    ? this.articles[ index + 1 ]
    : this.articles[ 0 ]
    ;

    }
    public showPrevarticle() : void {

    this.orientation = "prev";

    this.changeDetectorRef.detectChanges();

    // Find the currently selected index.
    var index = this.articles.indexOf( this.selectedArticle );
    this.selectedArticle = this.articles[ index - 1 ]
    ? this.articles[ index - 1 ]
    : this.articles[ this.articles.length - 1 ]
    ;

    }
    }


    However I am getting Property ‘indexOf’ does not exist on type 'FirebaseListObservable<any> Property 'length' does not exist on type 'FirebaseListObservable<any> errors. What is the equivalent of these properties in Firebase?










    share|improve this question



























      4












      4








      4








      I am trying to iterate and find the index of items in a Firebase backend and swipe right and left through these:



       export class articleSwiperComponent implements OnInit {

      articles: FirebaseListObservable<any>;

      public orientation: Orientation;
      public selectedArticle: article;

      private changeDetectorRef: ChangeDetectorRef;
      constructor(private af: AngularFire, changeDetectorRef: ChangeDetectorRef) {
      this.articles = af.database.list('/articles');

      this.changeDetectorRef = changeDetectorRef;
      this.orientation = "none";

      this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];


      }


      I have methods to swipe through the the database articles which will randomly bring forward an article upon first navigating to this page.



         public showNextArticle() : void {

      this.orientation = "next";
      this.changeDetectorRef.detectChanges();

      var index = this.articles.indexOf( this.selectedArticle );

      this.selectedArticle = this.articles[ index + 1 ]
      ? this.articles[ index + 1 ]
      : this.articles[ 0 ]
      ;

      }
      public showPrevarticle() : void {

      this.orientation = "prev";

      this.changeDetectorRef.detectChanges();

      // Find the currently selected index.
      var index = this.articles.indexOf( this.selectedArticle );
      this.selectedArticle = this.articles[ index - 1 ]
      ? this.articles[ index - 1 ]
      : this.articles[ this.articles.length - 1 ]
      ;

      }
      }


      However I am getting Property ‘indexOf’ does not exist on type 'FirebaseListObservable<any> Property 'length' does not exist on type 'FirebaseListObservable<any> errors. What is the equivalent of these properties in Firebase?










      share|improve this question
















      I am trying to iterate and find the index of items in a Firebase backend and swipe right and left through these:



       export class articleSwiperComponent implements OnInit {

      articles: FirebaseListObservable<any>;

      public orientation: Orientation;
      public selectedArticle: article;

      private changeDetectorRef: ChangeDetectorRef;
      constructor(private af: AngularFire, changeDetectorRef: ChangeDetectorRef) {
      this.articles = af.database.list('/articles');

      this.changeDetectorRef = changeDetectorRef;
      this.orientation = "none";

      this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];


      }


      I have methods to swipe through the the database articles which will randomly bring forward an article upon first navigating to this page.



         public showNextArticle() : void {

      this.orientation = "next";
      this.changeDetectorRef.detectChanges();

      var index = this.articles.indexOf( this.selectedArticle );

      this.selectedArticle = this.articles[ index + 1 ]
      ? this.articles[ index + 1 ]
      : this.articles[ 0 ]
      ;

      }
      public showPrevarticle() : void {

      this.orientation = "prev";

      this.changeDetectorRef.detectChanges();

      // Find the currently selected index.
      var index = this.articles.indexOf( this.selectedArticle );
      this.selectedArticle = this.articles[ index - 1 ]
      ? this.articles[ index - 1 ]
      : this.articles[ this.articles.length - 1 ]
      ;

      }
      }


      However I am getting Property ‘indexOf’ does not exist on type 'FirebaseListObservable<any> Property 'length' does not exist on type 'FirebaseListObservable<any> errors. What is the equivalent of these properties in Firebase?







      firebase observable angularfire2






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 29 '17 at 11:56









      cartant

      38.2k788119




      38.2k788119










      asked Mar 29 '17 at 10:51









      HGBHGB

      86232152




      86232152
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I believe your problem is that you're not really working with an array, you're working with an AngularFire Observable (which is effectively an RXJS Observable). This means you would need to subscribe to the observable in order to get the real value of the array, as the observable is used to emit new values of the array as the data changes. See below...



          export class articleSwiperComponent implements OnInit, OnDestroy {
          public articles: any = ;
          public orientation: Orientation = 'none';
          public selectedArticle: article;
          private _articlesSubscription: Subscription;

          constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

          ngOnInit() {
          // Listen to database
          this._articlesSubscription = this.af.database.list('/articles').snapshotChanges().subscribe((snapshot) => {
          // Assign articles to local variable as they come in
          this.articles = snapshot.map((d) => {
          return { $key: d.key, ... d.payload };
          });

          // Only assign selected article if none assigned
          if (!this.selectedArticle) {
          this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
          }
          });
          }

          ngOnDestroy() {
          // Destroy listener to database
          this._articlesSubscription.unsubscribe();
          }
          }


          If you're not interested in listening to changes to the firebase database you could do this instead:



          export class articleSwiperComponent implements OnInit, OnDestroy {
          public articles: any = ;
          public orientation: Orientation = 'none';
          public selectedArticle: article;

          constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

          ngOnInit() {
          // Listen to first emission from database
          this.af.database.list('/articles').snapshotChanges().pipe(first()).subscribe((articles) => {
          // Assign articles to local variable
          this.articles = snapshot.map((d) => {
          return { $key: d.key, ... d.payload };
          });
          this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
          });
          }
          }


          No matter which option you choose, your showNextArticle() should work as you now have an array object to work from.






          share|improve this answer


























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43091451%2fproperty-indexof-does-not-exist-on-type-firebaselistobservableany%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I believe your problem is that you're not really working with an array, you're working with an AngularFire Observable (which is effectively an RXJS Observable). This means you would need to subscribe to the observable in order to get the real value of the array, as the observable is used to emit new values of the array as the data changes. See below...



            export class articleSwiperComponent implements OnInit, OnDestroy {
            public articles: any = ;
            public orientation: Orientation = 'none';
            public selectedArticle: article;
            private _articlesSubscription: Subscription;

            constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

            ngOnInit() {
            // Listen to database
            this._articlesSubscription = this.af.database.list('/articles').snapshotChanges().subscribe((snapshot) => {
            // Assign articles to local variable as they come in
            this.articles = snapshot.map((d) => {
            return { $key: d.key, ... d.payload };
            });

            // Only assign selected article if none assigned
            if (!this.selectedArticle) {
            this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
            }
            });
            }

            ngOnDestroy() {
            // Destroy listener to database
            this._articlesSubscription.unsubscribe();
            }
            }


            If you're not interested in listening to changes to the firebase database you could do this instead:



            export class articleSwiperComponent implements OnInit, OnDestroy {
            public articles: any = ;
            public orientation: Orientation = 'none';
            public selectedArticle: article;

            constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

            ngOnInit() {
            // Listen to first emission from database
            this.af.database.list('/articles').snapshotChanges().pipe(first()).subscribe((articles) => {
            // Assign articles to local variable
            this.articles = snapshot.map((d) => {
            return { $key: d.key, ... d.payload };
            });
            this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
            });
            }
            }


            No matter which option you choose, your showNextArticle() should work as you now have an array object to work from.






            share|improve this answer






























              0














              I believe your problem is that you're not really working with an array, you're working with an AngularFire Observable (which is effectively an RXJS Observable). This means you would need to subscribe to the observable in order to get the real value of the array, as the observable is used to emit new values of the array as the data changes. See below...



              export class articleSwiperComponent implements OnInit, OnDestroy {
              public articles: any = ;
              public orientation: Orientation = 'none';
              public selectedArticle: article;
              private _articlesSubscription: Subscription;

              constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

              ngOnInit() {
              // Listen to database
              this._articlesSubscription = this.af.database.list('/articles').snapshotChanges().subscribe((snapshot) => {
              // Assign articles to local variable as they come in
              this.articles = snapshot.map((d) => {
              return { $key: d.key, ... d.payload };
              });

              // Only assign selected article if none assigned
              if (!this.selectedArticle) {
              this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
              }
              });
              }

              ngOnDestroy() {
              // Destroy listener to database
              this._articlesSubscription.unsubscribe();
              }
              }


              If you're not interested in listening to changes to the firebase database you could do this instead:



              export class articleSwiperComponent implements OnInit, OnDestroy {
              public articles: any = ;
              public orientation: Orientation = 'none';
              public selectedArticle: article;

              constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

              ngOnInit() {
              // Listen to first emission from database
              this.af.database.list('/articles').snapshotChanges().pipe(first()).subscribe((articles) => {
              // Assign articles to local variable
              this.articles = snapshot.map((d) => {
              return { $key: d.key, ... d.payload };
              });
              this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
              });
              }
              }


              No matter which option you choose, your showNextArticle() should work as you now have an array object to work from.






              share|improve this answer




























                0












                0








                0







                I believe your problem is that you're not really working with an array, you're working with an AngularFire Observable (which is effectively an RXJS Observable). This means you would need to subscribe to the observable in order to get the real value of the array, as the observable is used to emit new values of the array as the data changes. See below...



                export class articleSwiperComponent implements OnInit, OnDestroy {
                public articles: any = ;
                public orientation: Orientation = 'none';
                public selectedArticle: article;
                private _articlesSubscription: Subscription;

                constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

                ngOnInit() {
                // Listen to database
                this._articlesSubscription = this.af.database.list('/articles').snapshotChanges().subscribe((snapshot) => {
                // Assign articles to local variable as they come in
                this.articles = snapshot.map((d) => {
                return { $key: d.key, ... d.payload };
                });

                // Only assign selected article if none assigned
                if (!this.selectedArticle) {
                this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
                }
                });
                }

                ngOnDestroy() {
                // Destroy listener to database
                this._articlesSubscription.unsubscribe();
                }
                }


                If you're not interested in listening to changes to the firebase database you could do this instead:



                export class articleSwiperComponent implements OnInit, OnDestroy {
                public articles: any = ;
                public orientation: Orientation = 'none';
                public selectedArticle: article;

                constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

                ngOnInit() {
                // Listen to first emission from database
                this.af.database.list('/articles').snapshotChanges().pipe(first()).subscribe((articles) => {
                // Assign articles to local variable
                this.articles = snapshot.map((d) => {
                return { $key: d.key, ... d.payload };
                });
                this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
                });
                }
                }


                No matter which option you choose, your showNextArticle() should work as you now have an array object to work from.






                share|improve this answer















                I believe your problem is that you're not really working with an array, you're working with an AngularFire Observable (which is effectively an RXJS Observable). This means you would need to subscribe to the observable in order to get the real value of the array, as the observable is used to emit new values of the array as the data changes. See below...



                export class articleSwiperComponent implements OnInit, OnDestroy {
                public articles: any = ;
                public orientation: Orientation = 'none';
                public selectedArticle: article;
                private _articlesSubscription: Subscription;

                constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

                ngOnInit() {
                // Listen to database
                this._articlesSubscription = this.af.database.list('/articles').snapshotChanges().subscribe((snapshot) => {
                // Assign articles to local variable as they come in
                this.articles = snapshot.map((d) => {
                return { $key: d.key, ... d.payload };
                });

                // Only assign selected article if none assigned
                if (!this.selectedArticle) {
                this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
                }
                });
                }

                ngOnDestroy() {
                // Destroy listener to database
                this._articlesSubscription.unsubscribe();
                }
                }


                If you're not interested in listening to changes to the firebase database you could do this instead:



                export class articleSwiperComponent implements OnInit, OnDestroy {
                public articles: any = ;
                public orientation: Orientation = 'none';
                public selectedArticle: article;

                constructor(private af: AngularFire, private changeDetectorRef: ChangeDetectorRef) {}

                ngOnInit() {
                // Listen to first emission from database
                this.af.database.list('/articles').snapshotChanges().pipe(first()).subscribe((articles) => {
                // Assign articles to local variable
                this.articles = snapshot.map((d) => {
                return { $key: d.key, ... d.payload };
                });
                this.selectedArticle = this.articles[ Math.floor( Math.random() * this.articles.length ) ];
                });
                }
                }


                No matter which option you choose, your showNextArticle() should work as you now have an array object to work from.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jan 4 at 18:34

























                answered Jan 4 at 18:22









                MichaelSolatiMichaelSolati

                1,9591820




                1,9591820
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f43091451%2fproperty-indexof-does-not-exist-on-type-firebaselistobservableany%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Monofisismo

                    Angular Downloading a file using contenturl with Basic Authentication

                    Olmecas