ngOnInit()

in app/src/app/pages/collections/collections.component.ts [20:33]


  ngOnInit() {
    this.activatedRoute.paramMap.subscribe((d) => {
      this.server   = d.get("server");
      this.database = d.get("database");

      this.mongoDb.getCollections(this.server, this.database)
        .subscribe((collections) => {
          this.loading = false;
          if (Array.isArray(collections)) {
            this.collections = collections;
          }
        });
    });
  }