-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMediator.js
47 lines (36 loc) · 1.23 KB
/
Mediator.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
// Mediator is a behavioral design pattern.
// Посредник - поведенческий шаблон проектирования.
class ChocolateDealer {
constructor() {
this.customers = [];
}
orderChocolate(customer, chocolateType, filling) {
const customerName = customer.getName();
this.addToCustomersList(customerName);
console.log(`ПОКУПАТЕЛЬ: ${customerName}, ШОКОЛАД: ${chocolateType} ${filling}`);
}
addToCustomersList(customerName) {
this.customers.push(customerName);
}
getToCustomersList() {
return this.customers;
}
}
class Customer {
constructor(customerName, dealerMediator) {
this.customerName = customerName;
this.dealerMediator = dealerMediator;
}
getName() {
return this.customerName;
}
makeOrder(chocolateType, filling) {
this.dealerMediator.orderChocolate(this, chocolateType, filling);
}
}
const mediator = new ChocolateDealer();
const max = new Customer('Макс', mediator);
const sergey = new Customer('Сергей', mediator);
max.makeOrder('молочный', 'с орехами');
sergey.makeOrder('горький', 'без орехов');
console.log('Список покупателей: ', mediator.getToCustomersList());