-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
131 lines (122 loc) · 4.49 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
const StateMachine = require("javascript-state-machine");
const delegates = require("delegates");
const lodash = require("lodash");
module.exports = {
name: "molecluer-state-machine",
created() {
this.stateMachine = StateMachine({
init: this.settings.initialState,
transitions: this.settings.stateTransitions,
});
delegates(this, "stateMachine")
.method("is")
.method("can")
.method("cannot")
.method("transitions")
.method("allTransitions")
.method("allStates")
.access("state");
this.stateMachine.observe("onBeforeTransition", ({
transition, event, from, to,
}) => {
if (this.onBeforeTransition) {
this.onBeforeTransition({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onBeforeTransition`, {
transition, event, from, to,
});
});
this.stateMachine.observe("onAfterTransition", ({
transition, event, from, to,
}) => {
if (this.onAfterTransition) {
this.onAfterTransition({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onAfterTransition`, {
transition, event, from, to,
});
});
this.stateMachine.observe("onEnterState", ({
transition, event, from, to,
}) => {
if (this.onEnterState) {
this.onEnterState({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onEnterState`, {
transition, event, from, to,
});
});
this.stateMachine.observe("onLeaveState", ({
transition, event, from, to,
}) => {
if (this.onLeaveState) {
this.onLeaveState({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onLeaveState`, {
transition, event, from, to,
});
});
this.stateMachine.allStates().forEach((t) => {
this.stateMachine.observe(`onEnter${lodash.capitalize(t)}`, ({
transition, event, from, to,
}) => {
if (this[`onEnter${lodash.capitalize(t)}`]) {
this[`onEnter${lodash.capitalize(t)}`]({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onEnter${lodash.capitalize(t)}`, {
transition, event, from, to,
});
});
this.stateMachine.observe(`onLeave${lodash.capitalize(t)}`, ({
transition, event, from, to,
}) => {
if (this[`onLeave${lodash.capitalize(t)}`]) {
this[`onLeave${lodash.capitalize(t)}`]({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onLeave${lodash.capitalize(t)}`, {
transition, event, from, to,
});
});
});
this.stateMachine.allTransitions().forEach((t) => {
delegates(this, "stateMachine")
.method(t);
this.stateMachine.observe(`onBefore${lodash.capitalize(t)}`, ({
transition, event, from, to,
}) => {
if (this[`onBefore${lodash.capitalize(t)}`]) {
this[`onBefore${lodash.capitalize(t)}`]({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onBefore${lodash.capitalize(t)}`, {
transition, event, from, to,
});
});
this.stateMachine.observe(`onAfter${lodash.capitalize(t)}`, ({
transition, event, from, to,
}) => {
if (this[`onAfter${lodash.capitalize(t)}`]) {
this[`onAfter${lodash.capitalize(t)}`]({
transition, event, from, to,
});
}
this.broker.emit(`${this.name}.onAfter${lodash.capitalize(t)}`, {
transition, event, from, to,
});
});
});
},
};