From 78959903ef77b57eaeaa3cc21ae8d992c490a958 Mon Sep 17 00:00:00 2001
From: Xiao Gui <xgui3783@gmail.com>
Date: Thu, 20 Sep 2018 08:18:26 +0200
Subject: [PATCH] adding TODOs add distinct until changed for userlandmark...
 they currently gets destroyed and recreated every debounced viewer state
 change

---
 src/ui/nehubaContainer/nehubaContainer.component.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/ui/nehubaContainer/nehubaContainer.component.ts b/src/ui/nehubaContainer/nehubaContainer.component.ts
index ee7632e0e..38cfdf21e 100644
--- a/src/ui/nehubaContainer/nehubaContainer.component.ts
+++ b/src/ui/nehubaContainer/nehubaContainer.component.ts
@@ -121,6 +121,7 @@ export class NehubaContainer implements OnInit, OnDestroy{
     )
 
     this.userLandmarks$ = this.store.pipe(
+      /* TODO: distinct until changed */
       select('viewerState'),
       // filter(state => isDefined(state) && isDefined(state.userLandmarks)),
       map(state => isDefined(state) && isDefined(state.userLandmarks)
@@ -293,7 +294,9 @@ export class NehubaContainer implements OnInit, OnDestroy{
     )
 
     this.subscriptions.push(
-      this.userLandmarks$.subscribe(landmarks => {
+      this.userLandmarks$.pipe(
+        // distinctUntilChanged((old,new) => )
+      ).subscribe(landmarks => {
         this.userLandmarks = landmarks
         if(this.nehubaViewer){
           this.nehubaViewer.removeUserLandmarks()
-- 
GitLab