-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStrategy.ts
43 lines (37 loc) · 854 Bytes
/
Strategy.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
interface WorkoutStrategy {
fire(): void;
stop?(): void;
}
class Running implements WorkoutStrategy {
public fire(): void {
console.log('Running')
}
}
class Basketball implements WorkoutStrategy {
public fire(): void {
console.log('Basketball')
}
}
class Swimming implements WorkoutStrategy {
public fire(): void {
console.log('Swimming')
}
}
class Person {
public strategy: WorkoutStrategy;
public name: String;
constructor(name: string, strategy: WorkoutStrategy) {
this.name = name;
this.strategy = strategy
}
workout(): void {
console.log(`${ this.name } starts:`)
this.strategy.fire();
};
}
// USAGE:
const amanda = new Person('Amanda', new Running());
amanda.workout();
// OUTPUT:
// "Amanda starts:"
// "Running"