-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnimation.js
206 lines (181 loc) · 3.97 KB
/
Animation.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
const util = require('util')
/**
* Utility class for working with CDP Animation type
* @see https://chromedevtools.github.io/devtools-protocol/tot/Animation#type-Animation
* @since chrome-remote-interface-extra
*/
class Animation {
/**
* @param {AnimationManager} manager
* @param {CDPAnimation} cdpAnimation
*/
constructor (manager, cdpAnimation) {
/**
* @type {AnimationManager}
* @private
*/
this._manager = manager
/**
* @type {CDPAnimation}
* @private
*/
this._animation = cdpAnimation
/**
* @type {boolean}
* @private
*/
this._released = false
}
/**
* @return {string}
*/
id () {
return this._animation.id
}
/**
* @return {string}
*/
name () {
return this._animation.name
}
/**
* @return {boolean}
*/
pausedState () {
return this._animation.pausedState
}
/**
* @return {string}
*/
playState () {
return this._animation.playState
}
/**
* @return {number}
*/
playbackRate () {
return this._animation.playbackRate
}
/**
* @return {number}
*/
startTime () {
return this._animation.startTime
}
/**
* @return {number}
*/
currentTime () {
return this._animation.currentTime
}
/**
* @return {string}
*/
type () {
return this._animation.type
}
/**
* @return {CDPAnimationEffect}
*/
source () {
return this._animation.source
}
/**
* @return {string}
*/
cssId () {
return this._animation.cssId
}
/**
* @return {boolean}
*/
released () {
return this._released
}
/**
* Retrieves and updates this instances currentTime value
* @return {Promise<number>}
*/
async updateCurrentTime () {
this._assertNotReleased()
const ctime = await this._manager.getAnimationsCurrentTime(this.id())
this._animation.currentTime = ctime
return ctime
}
/**
* Releases the animation such that it is no longer be manipulated
* @return {Promise<void>}
*/
async release () {
this._assertNotReleased()
this._released = true
await this._manager.releaseAnimation(this.id())
}
/**
* Seeks the animation to a particular time within each animation
* @param {number} currentTime - Set the current time of each animation
* @return {Promise<void>}
*/
async seek (currentTime) {
this._assertNotReleased()
await this._manager.seekAnimation(this.id(), currentTime)
}
/**
* Pause the animation
* @return {Promise<void>}
*/
async pause () {
this._assertNotReleased()
await this._manager.pauseAnimation(this.id(), true)
this._animation.pausedState = true
}
/**
* Un-pause the animation
* @return {Promise<void>}
*/
async unpause () {
this._assertNotReleased()
await this._manager.pauseAnimation(this.id(), false)
this._animation.pausedState = false
}
/**
* Sets the timing of the animation.
* @param {number} duration - Duration of the animation
* @param {number} delay - Delay of the animation
* @return {Promise<void>}
*/
async setTiming (duration, delay) {
this._assertNotReleased()
await this._manager.setAnimationTiming(this.id(), duration, delay)
}
_assertNotReleased () {
if (this._released) {
throw new Error(`This animation, id = ${this.id()} , is already released`)
}
}
/**
* @return {string}
*/
toString () {
return util.inspect(this, { depth: null })
}
/**
* @return {CDPAnimation}
*/
toJSON () {
return this._animation
}
/** @ignore */
// eslint-disable-next-line space-before-function-paren
[util.inspect.custom](depth, options) {
if (depth < 0) {
return options.stylize('[Animation]', 'special')
}
const newOptions = Object.assign({}, options, {
depth: options.depth == null ? null : options.depth - 1
})
const inner = util.inspect(this._animation, newOptions)
return `${options.stylize('Animation', 'special')} ${inner}`
}
}
module.exports = Animation