Commit 3930e923ef205f4814e3a5af5724c7c10702bb37

Authored by Igor Kulikov
Committed by GitHub
2 parents 11872922 bdd4c30f

Merge pull request #3378 from vvlladd28/bugs/state/clear

Fixed clear state params for change dashboardId
... ... @@ -100,7 +100,7 @@ export abstract class StateControllerComponent implements IStateControllerCompon
100 100 this.rxSubscriptions.push(this.route.queryParamMap.subscribe((paramMap) => {
101 101 const dashboardId = this.route.snapshot.params.dashboardId;
102 102 if (this.dashboardId === dashboardId) {
103   - const newState = decodeURIComponent(paramMap.get('state'));
  103 + const newState = this.decodeStateParam(paramMap.get('state'));
104 104 if (this.currentState !== newState) {
105 105 this.currentState = newState;
106 106 if (this.inited) {
... ... @@ -147,10 +147,15 @@ export abstract class StateControllerComponent implements IStateControllerCompon
147 147 }
148 148
149 149 public reInit() {
150   - this.currentState = decodeURIComponent(this.route.snapshot.queryParamMap.get('state'));
  150 + this.preservedState = null;
  151 + this.currentState = this.decodeStateParam(this.route.snapshot.queryParamMap.get('state'));
151 152 this.init();
152 153 }
153 154
  155 + private decodeStateParam(stateURI: string): string{
  156 + return stateURI !== null ? decodeURIComponent(stateURI) : null;
  157 + }
  158 +
154 159 protected abstract init();
155 160
156 161 protected abstract onMobileChanged();
... ...