-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.ts
45 lines (31 loc) · 966 Bytes
/
App.ts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { RigFactory, SmallRigFactory, StandardRigFactory} from "./Factories"
import { Case } from "./Cases"
import { Monitor } from "./Monitors"
export default class AbstractFactoryExample {
factory: RigFactory
case: Case
monitor: Monitor
constructor(){
this.factory = this.configure("small")
this.case = this.factory.createCase()
this.monitor = this.factory.createMonitor()
this.run()
this.factory = this.configure("standard")
this.case = this.factory.createCase()
this.monitor = this.factory.createMonitor()
this.run()
}
private configure(size: string): RigFactory {
switch(size){
case "small":
return new SmallRigFactory()
case "standard":
default:
return new StandardRigFactory()
}
}
private run() {
this.case.info()
this.monitor.info()
}
}