-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChainOfResponsibility.js
62 lines (52 loc) · 1.4 KB
/
ChainOfResponsibility.js
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
57
58
59
60
61
62
// Chain of responsibility is a behavioral design pattern.
// Цепочка обязанностей - поведенческий шаблон проектирования.
class Account {
pay(orderPrice) {
if (this.canPay(orderPrice)) {
console.log(`Сумма: ${orderPrice}, способ оплаты: ${this.name}`);
} else if (this.nextOption) {
console.log(`На ${this.name} недостаточно средств!`);
this.nextOption.pay(orderPrice);
} else {
console.log(`На ${this.name} Недостаточно средств!`);
console.log('ВЕЗДЕ НЕДОСТАТОЧНО СРЕДСТВ!');
}
}
canPay(amount) {
return this.balance >= amount;
}
setNext(account) {
this.nextOption = account;
}
show() {
console.log(this);
}
}
class MasterCard extends Account {
constructor(balance) {
super();
this.name = 'Master card';
this.balance = balance;
}
}
class ApplePay extends Account {
constructor(balance) {
super();
this.name = 'Apple Pay';
this.balance = balance;
}
}
class Qiwi extends Account {
constructor(balance) {
super();
this.name = 'Qiwi Wallet';
this.balance = balance;
}
}
const masterCard = new MasterCard(300);
const applePay = new ApplePay(500);
const qiwi = new Qiwi(700);
masterCard.setNext(applePay);
applePay.setNext(qiwi);
masterCard.pay(570);
masterCard.show();