blob: e9c4a7d354f7fdd3e896e87ced3fa06c6f7ab115 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import {Component} from "@angular/core";
import {Select, Store} from "@ngxs/store";
import {Subscription} from "rxjs/Subscription";
import {GraphState} from "../../../pages/composition/common/store/graph.state";
import {OnSidebarOpenOrCloseAction} from "../../../pages/composition/common/store/graph.actions";
@Component({
selector: 'panel-wrapper-component',
templateUrl: './panel-wrapper.component.html',
styleUrls: ['./panel-wrapper.component.less']
})
export class PanelWrapperComponent {
@Select(GraphState.withSidebar) withSidebar$: boolean;
tabs: Array<any>;
subscription: Subscription;
constructor(public store: Store) {
}
private toggleSidebarDisplay = () => {
// this.withSidebar = !this.withSidebar;
this.store.dispatch(new OnSidebarOpenOrCloseAction());
}
}
|