-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.ts
37 lines (27 loc) · 863 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
import { Television } from "./Television"
import { Remote } from "./Remote"
import { VolumeUpCommand, VolumeDownCommand, ChannelUpCommand, ChannelDownCommand } from "./Commands"
export default class CommandExample {
tv: Television
remote: Remote
constructor(){
this.tv = new Television()
this.remote = this.configure()
this.run()
}
configure(): Remote {
let command1 = new VolumeUpCommand(this.tv)
let command2 = new VolumeDownCommand(this.tv)
let command3 = new ChannelUpCommand(this.tv)
let command4 = new ChannelDownCommand(this.tv)
let remote = new Remote()
remote.add(command1)
remote.add(command2)
remote.add(command3)
remote.add(command4)
return remote
}
run(): void {
this.remote.pushButtons()
}
}