-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspreadshirt.js
459 lines (355 loc) · 13.5 KB
/
spreadshirt.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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/*!
MIT License
Copyright (c) 2013 sprd.net AG - Tony Findeisen
https://github.com/spreadshirt/apps/blob/gh-pages/LICENSE
*/
(function (window, document) {
var spreadshirt = window.spreadshirt = window.spreadshirt || {},
applications = {
tablomat: Tablomat,
productomat: Productomat,
shop: Shop
},
supportedLanguages = {
NA: ["en", "fr"],
EU: ["de", "dk", "pl", "fi", "en", "fr", "es", "nl", "it", "no", "se"]
},
stringifyMessage = isIE();
stringifyMessage = stringifyMessage && stringifyMessage <= 9;
function isIE () {
var myNav = navigator.userAgent.toLowerCase();
return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
}
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function (searchElement /*, fromIndex */) {
'use strict';
if (this == null) {
throw new TypeError();
}
var n, k, t = Object(this),
len = t.length >>> 0;
if (len === 0) {
return -1;
}
n = 0;
if (arguments.length > 1) {
n = Number(arguments[1]);
if (n != n) { // shortcut for verifying if it's NaN
n = 0;
} else if (n != 0 && n != Infinity && n != -Infinity) {
n = (n > 0 || -1) * Math.floor(Math.abs(n));
}
}
if (n >= len) {
return -1;
}
for (k = n >= 0 ? n : Math.max(len - Math.abs(n), 0); k < len; k++) {
if (k in t && t[k] === searchElement) {
return k;
}
}
return -1;
};
}
/***
* creates a new instance of the requested application
*
* @param {String} type - the name of the application to create
* @param {Object} [options] - a configuration object
* @param {Function} [callback] - callback function(err, instance)
* @returns {*}
*/
spreadshirt.create = function (type, options, callback) {
options = options || {};
callback = callback || function () {
};
var app = applications[type];
if (!app) {
return callback(new Error("Application from type '" + type + "' not found"));
}
// bootstrap the application
new app(options, callback);
};
/***
* extend the first object with all keys from the following objects
*
* @param [result]
* @returns {Object}
*/
function extend(result) {
var args = Array.prototype.slice.call(arguments);
if (args.length > 1) {
for (var i = 1; i < args.length; i++) {
var obj = args[i];
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
result[key] = obj[key];
}
}
}
}
return result;
}
function Channel(window, targetWindow, origin) {
origin = origin || "*";
var messageId = 0,
callbackCache = {};
if (window.addEventListener) {
window.addEventListener("message", receiveMessage, false);
} else {
window.attachEvent("onmessage", receiveMessage);
}
function receiveMessage(event) {
var data = stringifyMessage ? JSON.parse(event.data) : event.data,
messageId = data.messageId,
callback = callbackCache[messageId];
if (!callback) {
// we haven't requested this message
return;
}
if (event.source !== targetWindow.contentWindow) {
// message came from a different window
return;
}
delete callbackCache[messageId];
callback && callback(data.error, data.data);
}
return {
call: function (method, data, callback) {
var id = ++messageId;
callbackCache[id] = callback;
var message = {
messageId: id,
method: method,
data: data
};
if (stringifyMessage) {
message = JSON.stringify(message);
}
targetWindow.contentWindow.postMessage(message, origin);
}
}
}
function Application(options) {
}
function RappidApplication(url, options, name, cb) {
var callbackCalled = false,
callback = function (err, data) {
if (callbackCalled) {
return;
}
callbackCalled = true;
cb && cb(err, data);
},
proxy = {},
platform,
iFrame,
initializationTimer,
initialized = false,
bootStrapCalled = false,
channel,
shopId;
options = extend({
platform: "EU",
target: document.body || document.getElementsByTagName("body")[0],
width: "100%",
height: "700px"
}, options);
platform = options.platform === "NA" ? "NA" : "EU";
options.shopId = options.shopId || (platform === "EU" ? 205909 : 93439);
// overwrites
options = extend(options, {
mode: (options.mode === "partner" ? "partner" : "external"),
contextId: options.shopId,
context: "shop"
});
shopId = options.shopId;
delete options.shopId;
// as we cannot pass functions via post message, we need to wrap those
for (var key in options) {
if (options.hasOwnProperty(key) && options[key] instanceof Function) {
proxy[key + "Proxy"] = options[key];
// let the client know that it should build a proxy for it
options[key] = key + "Proxy";
}
}
if (window.location.protocol === "file:" && /^\/{2}/.test(url)) {
url = "http:" + url;
}
url = url.replace(/^file/i, "http");
if (shopId) {
url += "?shopId=" + shopId;
}
if (window.addEventListener) {
window.addEventListener("message", receiveMessage, false);
} else {
window.attachEvent("onmessage", receiveMessage);
}
iFrame = document.createElement("iframe");
iFrame.id = name;
iFrame.onload = function () {
if (!initialized) {
initializationTimer = setTimeout(function () {
// initialization took to long
callback(new Error("Initialisation took too long"));
}, 1000);
} else {
bootStrap();
}
};
iFrame.setAttribute("width", options.width);
iFrame.setAttribute("height", options.height);
iFrame.setAttribute("style", "border: 0");
iFrame.src = url;
options.target.appendChild(iFrame);
delete options.target;
function bootStrap() {
if (bootStrapCalled) {
return;
}
bootStrapCalled = true;
channel = channel || new Channel(window, iFrame);
channel.call("bootStrap", options, function (err, data) {
var control;
if (!err && data) {
control = {};
for (var i = 0; i < data.length; i++) {
(function (method) {
// last parameter is callback
control[method] = function () {
var params = Array.prototype.slice.call(arguments),
callback = params.pop();
if (Object.prototype.toString.call(callback) !== "[object Function]") {
// seems not to be the callback
params.push(callback);
callback = null;
}
try {
channel.call("invokeExternalMethod", {
method: method,
params: params
}, function(err, data) {
data = data || [];
data.unshift(err);
callback && callback.apply(this, data);
});
} catch (e) {
callback && callback(e);
}
}
})(data[i]);
}
}
callback(err, control);
});
}
function receiveMessage(event) {
if (event.source !== iFrame.contentWindow) {
return;
}
var message = event.data;
if (message === "initialized") {
initialized = true;
initializationTimer && clearTimeout(initializationTimer);
bootStrap();
} else {
var proxyMethod = message.method,
method = proxy[proxyMethod];
if (method) {
var params = message.data;
params.push(function(err) {
var args = Array.prototype.slice.call(arguments) || [];
args.shift();
var value = {
messageId: message.messageId,
error: err,
data: args
};
if (stringifyMessage) {
value = JSON.stringify(value);
}
return event.source.postMessage(value, "*");
});
// TODO: distinguish between async and sync methods
// call method async
method.apply(this, params);
} else {
}
}
}
}
function Tablomat(options, callback) {
var url,
platform = options.platform === "NA" ? "NA" : "EU",
country = platform === "EU" ? "DE" : "US",
language = window.navigator.language || "en";
language = language.split("-")[0];
if (supportedLanguages[platform].indexOf(language) === -1) {
// fallback
language = "en";
}
if (platform === "NA" && language === "en") {
language = "us";
}
url = "//www.spreadshirt." + (platform === "EU" ? "net" : "com") + "/" + language + "/" + country + "/Tablomat/Index/external";
if (options.url) {
url = options.url;
}
RappidApplication.prototype.constructor.call(this, url, options, "tablomat", callback);
}
function Productomat(options, callback) {
var url,
platform = options.platform === "NA" ? "NA" : "EU",
country = platform === "EU" ? "DE" : "US",
language = window.navigator.language || "en";
language = language.split("-")[0];
if (supportedLanguages[platform].indexOf(language) === -1) {
// fallback
language = "en";
}
if (platform === "NA" && language === "en") {
language = "us";
}
url = "//www.spreadshirt." + (platform === "EU" ? "net" : "com") + "/" + language + "/" + country + "/Productomat/Index";
if (options.url) {
url = options.url;
}
RappidApplication.prototype.constructor.call(this, url, options, "productomat", callback);
}
function Shop(options, callback) {
var url,
platform = options.platform === "NA" ? "NA" : "EU",
country = platform === "EU" ? "DE" : "US",
language = window.navigator.language || "en";
language = language.split("-")[0];
if (supportedLanguages[platform].indexOf(language) === -1) {
// fallback
language = "en";
}
if (platform === "NA" && language === "en") {
language = "us";
}
url = "//www.spreadshirt." + (platform === "EU" ? "net" : "com") + "/" + language + "/" + country + "/Shop5/Index/external";
if (options.url) {
url = options.url;
}
options.country = options.country || country;
options.language = options.language || language;
RappidApplication.prototype.constructor.call(this, url, options, "shop", callback);
}
Tablomat.prototype = new Application();
Tablomat.prototype.constructor = Tablomat;
var spreadshirtLoaded = window.spreadshirtLoaded;
if (spreadshirtLoaded && spreadshirtLoaded instanceof Function) {
spreadshirtLoaded = [spreadshirtLoaded];
}
if (spreadshirtLoaded instanceof Array) {
for (var i = 0; i < spreadshirtLoaded.length; i++) {
try {
// invoke lazy load callbacks
spreadshirtLoaded[i](spreadshirt);
} catch (e) {
}
}
}
})(window, document);