-
Notifications
You must be signed in to change notification settings - Fork 0
/
factory.ts
56 lines (48 loc) · 1.39 KB
/
factory.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
46
47
48
49
50
51
52
53
54
55
56
interface Campaign {
name: string;
type: string;
maxParticipants: number;
}
interface Factory {
createCampaign(name: string, type: string): Campaign;
}
class CashbackCampaign implements Factory {
type = 'cashback';
maxParticipants = 100;
createCampaign(name: string): Campaign {
return {
name,
type: this.type,
maxParticipants: this.maxParticipants
};
}
}
class DiscountCampaign implements Factory {
type = 'discount';
maxParticipants = 200;
createCampaign(name: string): Campaign {
return {
name,
type: this.type,
maxParticipants: this.maxParticipants
};
}
}
class CampaignFactory implements Factory {
createCampaign(name: string, type: string): Campaign {
switch (type) {
case 'cashback':
return new CashbackCampaign().createCampaign(name);
case 'discount':
return new DiscountCampaign().createCampaign(name);
default:
throw new Error('Campaign type not found.');
}
}
}
(function main() {
const factory = new CampaignFactory();
console.log(factory.createCampaign('Cashback Campaign', 'cashback'));
console.log(factory.createCampaign('Discount Campaign', 'discount'));
console.log(factory.createCampaign('Invalid Campaign', 'invalid'));
})();