-
Notifications
You must be signed in to change notification settings - Fork 13
/
store page price change.html
412 lines (215 loc) · 10.2 KB
/
store page price change.html
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
<!--
begin store page price change
License : < https://tinyurl.com/s872fb68 >
Version : 0.6.0
SS Versions : 7.1, 7.0
v7.1
Fluid
Engine
Compatible : Not Applicable
v7.0 Templates : Brine ( Aria, Blend, Burke, Cacao, Clay, Fairfield, Feed,
Foster, Greenwich, Hatch, Heights, Hunter, Hyde, Impact,
Jaunt, Juke, Keene, Kin, Lincoln, Maple, Margot, Marta,
Mentor, Mercer, Miller, Mojave, Moksha, Motto, Nueva, Pedro,
Pursuit, Rally, Rover, Royce, Sofia, Sonora, Stella, Thorne,
Vow, Wav, West )
Five
Montauk ( Julia, Kent, Om )
your template is not listed? then it is not currently
supported
Dependencies : twcsl < https://tinyurl.com/4kux8h24 >
Notes : the code is comprised of several tags all of which must be
present for the effect to work
the code adds a data-twc-sppc-mo attribute with value of
false on elements with class name product-price. by changing
the attribute value to true you will cause a mutation which
will cause the search replace text to run. the attribute
value will be set to false after the search replace text run
the code fails silently. poorly formed regular expressions
will stop the processing of search/replace text pairs
Copyright : 2021-2024 Thomas Creedon
Tom's Web Consulting < http://www.tomsWeb.consulting/ >
no user serviceable parts below
-->
<style>
#pdp {
--twc-sppc-visibility : hidden;
}
/* full, half, wrap */
.pdp-layout .pdp-details .afterpayString,
.pdp-layout .pdp-details .product-price,
/* simple */
.ProductItem .ProductItem-details .afterpayString,
.ProductItem .ProductItem-details .product-price
{
visibility : var( --twc-sppc-visibility );
}
</style>
<script>
( ( ) => {
const
version = '0.6.0',
s = `Store Page Price Change v${ version }
License < https://tinyurl.com/s872fb68 >
© 2021-2024 Thomas Creedon
Tom's Web Consulting < http://www.tomsWeb.consulting >`
.replace ( /^\s+/gm, '' );
console.log ( s );
} ) ( );
// initialize twc module
var twc = ( ( self ) => self ) ( twc || { } );
// initialize twc sppc sub-module
twc.sppc = ( ( self ) => self ) ( twc.sppc || { } );
// initialize twc sppc callbacks sub-module
twc.sppc.callbacks =
( ( self ) => self ) ( twc.sppc.callbacks || { } );
( ( ) => {
// bail if no mutation observer available
if ( ! ( 'MutationObserver' in window ) ) return;
const
codeKey = 'twc-sppc',
selector = 'script[ type="application/vnd.' +
`${ codeKey.replace ( '-', '.' ) }" ]`,
$scriptElement = $( selector );
if ( ! $scriptElement.length ) return; // bail if no tag
const initialize = ( ) => {
Object
.assign (
twc
.sppc,
JSON
.parse (
$scriptElement
.text ( )
.replace ( /\/\*[^]*?\*\//g, '' ) // remove * comments
.replace ( /^\s*\/\/.*/gm, '' ) // remove // comments
.replace ( /,\s*}\s*/, '}' ) // remove last item comma
.replaceAll ( '\n', '' )
)
);
let
callback = function ( ) {
changeText ( this );
};
const
attribute = 'data-twc-sppc-mo',
changeText = ( node ) => {
const walker =
document.createTreeWalker ( node, NodeFilter.SHOW_TEXT );
while ( walker.nextNode ( ) ) {
const
callback = ( i, s ) => {
const m = s.match ( /\/(.+)\/(.*)/ );
let r = options.searchReplaceText [ s ];
if ( m !== null ) { // m appears to be a regex pattern
try {
s = new RegExp ( m [ 1 ], m [ 2 ] );
} catch {
return; // bail on error
}
// continue if text no match
if ( ! s.test ( t ) ) return true;
}
const b = typeof options.callbacks [ r ] == 'function';
if ( b ) {
r = options
.callbacks
[ r ]
( node, isDetail, t, s );
if ( typeof r == 'boolean' ) return r;
}
t = t.replace ( s, r );
},
node = walker.currentNode;
let t = node.data;
$.each ( keys, callback );
node.data = t;
}
},
isDetail = twcsl
.page
.store
.detail
.is,
options = twc.sppc,
keys = Object.keys ( options.searchReplaceText ),
$productPriceElements = $( '.product-price' )
.attr ( attribute, 'false' )
.each ( callback ),
$afterpayPriceElements = $( '.afterpayString' );
if ( options.afterpay )
$afterpayPriceElements.each ( callback );
if ( ! isDetail ) return; // bail if not detail
callback = ( mutations ) => {
const callback = function ( ) {
const
hasAttribute = this
.attributeName
==
attribute,
b = ! this
.addedNodes
.length
&&
! hasAttribute;
if ( b ) return true; // bail if no element an no attribute
const target = this.target;
// previous change was forced
if ( hasAttribute ) {
const b = $( target )
.attr ( attribute )
==
'true';
if ( b )
$( target )
.attr ( attribute, 'false' );
else if ( this.oldValue == 'true' )
return true;
}
observer.disconnect ( );
changeText ( target );
pricesObserve ( );
}
$.each ( mutations, callback );
};
const
observer = new MutationObserver ( callback ),
pricesObserve = ( ) => {
let callback = function ( ) {
const config = {
attributeFilter : [ attribute ],
attributeOldValue : true,
childList : true
};
observer.observe ( this, config );
}
// listen for changes in product prices
$productPriceElements.each ( callback );
// listen for changes in afterpay prices
callback = function ( ) {
const config = {
attributeFilter : [ attribute ],
attributeOldValue : true,
childList : true,
subtree : true
};
observer.observe ( this, config );
}
if ( options.afterpay )
$afterpayPriceElements.each ( callback );
};
pricesObserve ( );
$( '#pdp' )
.css ( '--twc-sppc-visibility', 'visible' );
};
switch ( true ) {
case twcsl.ss.is71 :
$( initialize );
break;
case twcsl.ss.is70 :
Squarespace.onInitialize ( Y, initialize );
break;
}
} ) ( );
</script>
<!-- end store page price change -->