8
8
// output values, step information.
9
9
// See documetation for more details.
10
10
11
- var intermediateHtmlStepUi = require ( './intermediateHtmlStepUi.js' ) ;
12
- var urlHash = require ( './urlHash.js' ) ;
13
- var _ = require ( 'lodash' ) ;
14
- var mapHtmlTypes = require ( './mapHtmltypes' ) ;
11
+ var intermediateHtmlStepUi = require ( './intermediateHtmlStepUi.js' ) ,
12
+ urlHash = require ( './urlHash.js' ) ,
13
+ _ = require ( 'lodash' ) ,
14
+ mapHtmlTypes = require ( './mapHtmltypes' ) ,
15
+ scopeQuery = require ( './scopeQuery' ) ,
16
+ $stepAll ,
17
+ $step ;
15
18
16
19
function DefaultHtmlStepUi ( _sequencer , options ) {
17
-
20
+
18
21
options = options || { } ;
19
22
var stepsEl = options . stepsEl || document . querySelector ( '#steps' ) ;
20
23
var selectStepSel = options . selectStepSel = options . selectStepSel || '#selectStep' ;
21
24
22
25
function onSetup ( step , stepOptions ) {
26
+
23
27
if ( step . options && step . options . description )
24
28
step . description = step . options . description ;
25
29
@@ -67,8 +71,12 @@ function DefaultHtmlStepUi(_sequencer, options) {
67
71
var parser = new DOMParser ( ) ;
68
72
step . ui = parser . parseFromString ( step . ui , 'text/html' ) ;
69
73
step . ui = step . ui . querySelector ( 'div.container-fluid' ) ;
70
- step . linkElements = step . ui . querySelectorAll ( 'a' ) ;
71
- step . imgElement = step . ui . querySelector ( 'a img.img-thumbnail' ) ;
74
+
75
+ $step = scopeQuery . scopeSelector ( step . ui ) ;
76
+ $stepAll = scopeQuery . scopeSelectorAll ( step . ui ) ;
77
+
78
+ step . linkElements = $stepAll ( 'a' ) ;
79
+ step . imgElement = $step ( 'a img.img-thumbnail' ) [ 0 ] ;
72
80
73
81
if ( _sequencer . modulesInfo ( ) . hasOwnProperty ( step . name ) ) {
74
82
var inputs = _sequencer . modulesInfo ( step . name ) . inputs ;
@@ -144,12 +152,12 @@ function DefaultHtmlStepUi(_sequencer, options) {
144
152
html +
145
153
'\
146
154
</div>' ;
147
- step . ui . querySelector ( 'div.details' ) . appendChild ( div ) ;
155
+ $ step( 'div.details' ) . append ( div ) ;
148
156
}
149
- $ ( step . ui . querySelector ( 'div.panel-footer' ) ) . append (
157
+ $step ( 'div.panel-footer' ) . append (
150
158
'<div class="cal collapse in"><button type="submit" class="btn btn-sm btn-default btn-save" disabled = "true" >Apply</button> <small style="padding-top:2px;">Press apply to see changes</small></div>'
151
159
) ;
152
- $ ( step . ui . querySelector ( 'div.panel-footer' ) ) . prepend (
160
+ $step ( 'div.panel-footer' ) . prepend (
153
161
'<button class="pull-right btn btn-default btn-sm insert-step" >\
154
162
<span class="insert-text"><i class="fa fa-plus"></i> Insert Step</span><span class="no-insert-text" style="display:none">Close</span></button>\
155
163
<button class="pull-right btn btn-default btn-sm download-btn" style="margin-right:2px" >\
@@ -159,13 +167,13 @@ function DefaultHtmlStepUi(_sequencer, options) {
159
167
}
160
168
161
169
if ( step . name != 'load-image' ) {
162
- step . ui
163
- . querySelector ( 'div.trash-container' )
170
+ $step ( 'div.trash-container' )
164
171
. prepend (
165
172
parser . parseFromString ( tools , 'text/html' ) . querySelector ( 'div' )
166
173
) ;
167
- $ ( step . ui . querySelectorAll ( '.remove' ) ) . on ( 'click' , function ( ) { notify ( 'Step Removed' , 'remove-notification' ) ; } ) ;
168
- $ ( step . ui . querySelectorAll ( '.insert-step' ) ) . on ( 'click' , function ( ) { util . insertStep ( step . ID ) ; } ) ;
174
+
175
+ $stepAll ( '.remove' ) . on ( 'click' , function ( ) { notify ( 'Step Removed' , 'remove-notification' ) ; } ) ;
176
+ $stepAll ( '.insert-step' ) . on ( 'click' , function ( ) { util . insertStep ( step . ID ) ; } ) ;
169
177
// Insert the step's UI in the right place
170
178
if ( stepOptions . index == _sequencer . steps . length ) {
171
179
stepsEl . appendChild ( step . ui ) ;
@@ -179,19 +187,19 @@ function DefaultHtmlStepUi(_sequencer, options) {
179
187
else {
180
188
$ ( '#load-image' ) . append ( step . ui ) ;
181
189
}
182
- $ ( step . ui . querySelector ( '.toggle' ) ) . on ( 'click' , ( ) => {
183
- $ ( step . ui . querySelector ( '.toggleIcon' ) ) . toggleClass ( 'rotated' ) ;
184
- $ ( step . ui . querySelectorAll ( '.cal' ) ) . collapse ( 'toggle' ) ;
190
+ $step ( '.toggle' ) . on ( 'click' , ( ) => {
191
+ $step ( '.toggleIcon' ) . toggleClass ( 'rotated' ) ;
192
+ $stepAll ( '.cal' ) . collapse ( 'toggle' ) ;
185
193
} ) ;
186
194
187
195
$ ( step . imgElement ) . on ( 'mousemove' , _ . debounce ( ( ) => imageHover ( step ) , 150 ) ) ;
188
196
$ ( step . imgElement ) . on ( 'click' , ( e ) => { e . preventDefault ( ) ; } ) ;
189
- $ ( step . ui . querySelectorAll ( '#color-picker' ) ) . colorpicker ( ) ;
197
+ $stepAll ( '#color-picker' ) . colorpicker ( ) ;
190
198
191
199
function saveOptions ( e ) {
192
200
e . preventDefault ( ) ;
193
201
if ( optionsChanged ) {
194
- $ ( step . ui . querySelector ( 'div.details' ) )
202
+ $step ( 'div.details' )
195
203
. find ( 'input,select' )
196
204
. each ( function ( i , input ) {
197
205
$ ( input )
@@ -204,7 +212,7 @@ function DefaultHtmlStepUi(_sequencer, options) {
204
212
// modify the url hash
205
213
urlHash . setUrlHashParameter ( 'steps' , _sequencer . toString ( ) ) ;
206
214
// disable the save button
207
- $ ( step . ui . querySelector ( '.btn-save' ) ) . prop ( 'disabled' , true ) ;
215
+ $step ( '.btn-save' ) . prop ( 'disabled' , true ) ;
208
216
optionsChanged = false ;
209
217
changedInputs = 0 ;
210
218
}
@@ -215,15 +223,15 @@ function DefaultHtmlStepUi(_sequencer, options) {
215
223
changedInputs += hasChangedBefore ? inputChanged ? 0 : - 1 : inputChanged ? 1 : 0 ;
216
224
optionsChanged = changedInputs > 0 ;
217
225
218
- $ ( step . ui . querySelector ( '.btn-save' ) ) . prop ( 'disabled' , ! optionsChanged ) ;
226
+ $step ( '.btn-save' ) . prop ( 'disabled' , ! optionsChanged ) ;
219
227
return inputChanged ;
220
228
}
221
229
222
230
var
223
231
changedInputs = 0 ,
224
232
optionsChanged = false ;
225
- $ ( step . ui . querySelector ( '.input-form' ) ) . on ( 'submit' , saveOptions ) ;
226
- $ ( step . ui . querySelectorAll ( '.target' ) ) . each ( function ( i , input ) {
233
+ $step ( '.input-form' ) . on ( 'submit' , saveOptions ) ;
234
+ $stepAll ( '.target' ) . each ( function ( i , input ) {
227
235
$ ( input )
228
236
. data ( 'initValue' , $ ( input ) . val ( ) )
229
237
. data ( 'hasChangedBefore' , false )
@@ -248,19 +256,19 @@ function DefaultHtmlStepUi(_sequencer, options) {
248
256
}
249
257
250
258
251
- function onDraw ( step ) {
252
- $ ( step . ui . querySelector ( '.load' ) ) . show ( ) ;
253
- $ ( step . ui . querySelector ( 'img' ) ) . hide ( ) ;
254
- $ ( step . ui . querySelectorAll ( '.load-spin' ) ) . show ( ) ;
259
+ function onDraw ( ) {
260
+ $step ( '.load' ) . show ( ) ;
261
+ $step ( 'img' ) . hide ( ) ;
262
+ $stepAll ( '.load-spin' ) . show ( ) ;
255
263
}
256
264
257
265
function onComplete ( step ) {
258
- $ ( step . ui . querySelector ( 'img' ) ) . show ( ) ;
259
- $ ( step . ui . querySelectorAll ( '.load-spin' ) ) . hide ( ) ;
260
- $ ( step . ui . querySelector ( '.load' ) ) . hide ( ) ;
266
+ $step ( 'img' ) . show ( ) ;
267
+ $stepAll ( '.load-spin' ) . hide ( ) ;
268
+ $step ( '.load' ) . hide ( ) ;
261
269
262
270
step . imgElement . src = ( step . name == 'load-image' ) ? step . output . src : step . output ;
263
- var imgthumbnail = step . ui . querySelector ( '.img-thumbnail' ) ;
271
+ var imgthumbnail = $ step( '.img-thumbnail' ) ;
264
272
for ( let index = 0 ; index < step . linkElements . length ; index ++ ) {
265
273
if ( step . linkElements [ index ] . contains ( imgthumbnail ) )
266
274
step . linkElements [ index ] . href = step . imgElement . src ;
@@ -271,7 +279,7 @@ function DefaultHtmlStepUi(_sequencer, options) {
271
279
return output . split ( '/' ) [ 1 ] . split ( ';' ) [ 0 ] ;
272
280
}
273
281
274
- $ ( step . ui . querySelectorAll ( '.download-btn' ) ) . on ( 'click' , ( ) => {
282
+ $stepAll ( '.download-btn' ) . on ( 'click' , ( ) => {
275
283
276
284
for ( let index = 0 ; index < step . linkElements . length ; index ++ ) {
277
285
@@ -294,18 +302,18 @@ function DefaultHtmlStepUi(_sequencer, options) {
294
302
for ( var i in inputs ) {
295
303
if ( step . options [ i ] !== undefined ) {
296
304
if ( inputs [ i ] . type . toLowerCase ( ) === 'input' )
297
- $ ( step . ui . querySelector ( 'div[name="' + i + '"] input' ) )
305
+ $step ( 'div[name="' + i + '"] input' )
298
306
. val ( step . options [ i ] )
299
307
. data ( 'initValue' , step . options [ i ] ) ;
300
308
if ( inputs [ i ] . type . toLowerCase ( ) === 'select' )
301
- $ ( step . ui . querySelector ( 'div[name="' + i + '"] select' ) )
309
+ $step ( 'div[name="' + i + '"] select' )
302
310
. val ( step . options [ i ] )
303
311
. data ( 'initValue' , step . options [ i ] ) ;
304
312
}
305
313
}
306
314
for ( var i in outputs ) {
307
315
if ( step [ i ] !== undefined )
308
- $ ( step . ui . querySelector ( 'div[name="' + i + '"] input' ) )
316
+ $step ( 'div[name="' + i + '"] input' )
309
317
. val ( step [ i ] ) ;
310
318
}
311
319
}
0 commit comments