(view: SolidViewDataType)
| 184 | } |
| 185 | |
| 186 | public addView(view: SolidViewDataType): void { |
| 187 | if (isNil(this.currentPage)) { |
| 188 | return; |
| 189 | } |
| 190 | this.currentPage.views.push(view); |
| 191 | this.viewMap.set(view.id, view); |
| 192 | this.views.push(view); |
| 193 | } |
| 194 | |
| 195 | public addViews(views: SolidViewDataType[]): void { |
| 196 | if (isNil(this.currentPage)) { |