blob: 8c7f7623ba63f00ea1e86f7a1a24f257b71f51b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { computed, observable, action } from "mobx";
import { NodeStore } from "./NodeStore";
export class NodeCollectionStore extends NodeStore {
@observable
public Scale: number = 1;
@observable
public Nodes: NodeStore[] = new Array<NodeStore>();
@computed
public get Transform(): string {
return "translate(" + this.X + "px," + this.Y + "px) scale(" + this.Scale + "," + this.Scale + ")";
}
@action
public AddNodes(stores: NodeStore[]): void {
stores.forEach(store => this.Nodes.push(store));
}
}
|