UNPKG

5.02 kBJavaScriptView Raw
1"use strict";
2var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3 function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4 return new (P || (P = Promise))(function (resolve, reject) {
5 function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6 function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7 function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8 step((generator = generator.apply(thisArg, _arguments || [])).next());
9 });
10};
11var __generator = (this && this.__generator) || function (thisArg, body) {
12 var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
13 return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
14 function verb(n) { return function (v) { return step([n, v]); }; }
15 function step(op) {
16 if (f) throw new TypeError("Generator is already executing.");
17 while (_) try {
18 if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
19 if (y = 0, t) op = [op[0] & 2, t.value];
20 switch (op[0]) {
21 case 0: case 1: t = op; break;
22 case 4: _.label++; return { value: op[1], done: false };
23 case 5: _.label++; y = op[1]; op = [0]; continue;
24 case 7: op = _.ops.pop(); _.trys.pop(); continue;
25 default:
26 if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
27 if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
28 if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
29 if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
30 if (t[2]) _.ops.pop();
31 _.trys.pop(); continue;
32 }
33 op = body.call(thisArg, _);
34 } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
35 if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
36 }
37};
38Object.defineProperty(exports, "__esModule", { value: true });
39exports.updateHistory = void 0;
40var MessageTransport_1 = require("@shopify/app-bridge/MessageTransport");
41var actions_1 = require("@shopify/app-bridge/actions");
42var globals_1 = require("./globals");
43// These parameters are added to the iframe url but we don't want to propagate
44// them up to the address bar as they are not provided by the application
45// Removing hmac is especially important as its presence may cause infinite
46// oauth authentication loops
47var embeddedFrameParamsToRemove = [
48 'hmac',
49 'locale',
50 'protocol',
51 'session',
52 'shop',
53 'timestamp',
54 'host',
55];
56function updateHistory(app, location) {
57 return __awaiter(this, void 0, void 0, function () {
58 var selfWindow, topWindow, renderedInTheTopWindow, renderedAsMainApp, normalizedLocation, pathname, search, hash, locationStr;
59 return __generator(this, function (_a) {
60 switch (_a.label) {
61 case 0:
62 selfWindow = globals_1.getSelfWindow();
63 topWindow = globals_1.getTopWindow();
64 renderedInTheTopWindow = selfWindow === topWindow;
65 return [4 /*yield*/, app.getState('context').then(function (context) {
66 return context === MessageTransport_1.Context.Main;
67 })];
68 case 1:
69 renderedAsMainApp = _a.sent();
70 if (renderedInTheTopWindow || !renderedAsMainApp) {
71 return [2 /*return*/];
72 }
73 normalizedLocation = getNormalizedURL(location);
74 embeddedFrameParamsToRemove.forEach(function (param) { return normalizedLocation.searchParams.delete(param); });
75 pathname = normalizedLocation.pathname, search = normalizedLocation.search, hash = normalizedLocation.hash;
76 locationStr = "" + pathname + search + hash;
77 actions_1.History.create(app).dispatch(actions_1.History.Action.REPLACE, locationStr);
78 return [2 /*return*/];
79 }
80 });
81 });
82}
83exports.updateHistory = updateHistory;
84function getNormalizedURL(location) {
85 var origin = globals_1.getOrigin();
86 if (typeof location === 'string') {
87 return new URL(location, origin);
88 }
89 var pathname = location.pathname, search = location.search, hash = location.hash;
90 return new URL("" + pathname + search + hash, origin);
91}