-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCommand.ts
79 lines (65 loc) · 1.71 KB
/
Command.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
class User {
constructor( public userId: number) {}
}
class CommandHistory {
public commands: Command[] = [];
push(command: Command) {
this.commands.push(command)
}
remove(command: Command) {
this.commands = this.commands.filter(c => c.commandId !== command.commandId)
}
}
abstract class Command {
public commandId: number;
abstract execute(): void;
constructor(public history: CommandHistory) {
this.commandId = Math.random()
}
}
class AddUserCommand extends Command {
constructor(
private user: User,
private receiver: UserService,
history: CommandHistory
) {
super(history);
}
execute(): void {
this.receiver.saveUser(this.user)
this.history.push(this)
}
undo() {
this.receiver.deleteUser(this.user.userId)
this.history.remove(this)
}
}
class UserService {
saveUser(user: User) {
console.log(`Сохраняя пользователя с ID ${user.userId}`)
}
deleteUser(userId: number) {
console.log(`Удаляем пользователя с ID ${userId}`)
}
}
class Controller {
receiver: UserService;
history: CommandHistory = new CommandHistory()
addReceiver(receiver: UserService) {
this.receiver = receiver
}
run() {
const addUserCommand = new AddUserCommand(
new User(1),
this.receiver,
this.history
)
addUserCommand.execute();
console.log(addUserCommand.history);
addUserCommand.undo();
console.log(addUserCommand.history);
}
}
const controller =new Controller();
controller.addReceiver(new UserService());
controller.run()