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
|
/* global $:false, Handlebars:false */
/* import-globals-from messages.js */
/*
PKT_SIGNUP_OVERLAY is the view itself and contains all of the methods to manipute the overlay and messaging.
It does not contain any logic for saving or communication with the extension or server.
*/
var PKT_SIGNUP_OVERLAY = function(options) {
var myself = this;
this.inited = false;
this.active = false;
this.delayedStateSaved = false;
this.wrapper = null;
this.variant = window.___PKT__SIGNUP_VARIANT;
this.tagline = window.___PKT__SIGNUP_TAGLINE || "";
this.preventCloseTimerCancel = false;
this.translations = {};
this.closeValid = true;
this.mouseInside = false;
this.autocloseTimer = null;
this.variant = "";
this.inoverflowmenu = false;
this.controlvariant;
this.pockethost = "getpocket.com";
this.loggedOutVariant = "control";
this.dictJSON = {};
this.initCloseTabEvents = function() {
function clickHelper(e, linkData) {
e.preventDefault();
thePKT_SIGNUP.sendMessage("openTabWithUrl", {
url: linkData.url,
activate: true,
source: linkData.source || "",
});
myself.closePopup();
}
$(".pkt_ext_learnmore").click(function(e) {
clickHelper(e, {
source: "learn_more",
url: $(this).attr("href"),
});
});
$(".signup-btn-firefox").click(function(e) {
clickHelper(e, {
source: "sign_up_1",
url: $(this).attr("href"),
});
});
$(".signup-btn-email").click(function(e) {
clickHelper(e, {
source: "sign_up_2",
url: $(this).attr("href"),
});
});
$(".pkt_ext_login").click(function(e) {
clickHelper(e, {
source: "log_in",
url: $(this).attr("href"),
});
});
// A generic click we don't do anything special for.
// Was used for an experiment, possibly not needed anymore.
$(".signup-btn-tryitnow").click(function(e) {
clickHelper(e, {
url: $(this).attr("href"),
});
});
};
this.closePopup = function() {
thePKT_SIGNUP.sendMessage("close");
};
this.sanitizeText = function(s) {
var sanitizeMap = {
"&": "&",
"<": "<",
">": ">",
'"': """,
"'": "'",
};
if (typeof s !== "string") {
return "";
}
return String(s).replace(/[&<>"']/g, function(str) {
return sanitizeMap[str];
});
};
this.getTranslations = function() {
this.dictJSON = window.pocketStrings;
};
};
PKT_SIGNUP_OVERLAY.prototype = {
create() {
var controlvariant = window.location.href.match(
/controlvariant=([\w|\.]*)&?/
);
if (controlvariant && controlvariant.length > 1) {
this.controlvariant = controlvariant[1];
}
var variant = window.location.href.match(/variant=([\w|\.]*)&?/);
if (variant && variant.length > 1) {
this.variant = variant[1];
}
var loggedOutVariant = window.location.href.match(
/loggedOutVariant=([\w|\.]*)&?/
);
if (loggedOutVariant && loggedOutVariant.length > 1) {
this.loggedOutVariant = loggedOutVariant[1];
}
var host = window.location.href.match(/pockethost=([\w|\.]*)&?/);
if (host && host.length > 1) {
this.pockethost = host[1];
}
var inoverflowmenu = window.location.href.match(
/inoverflowmenu=([\w|\.]*)&?/
);
if (inoverflowmenu && inoverflowmenu.length > 1) {
this.inoverflowmenu = inoverflowmenu[1] == "true";
}
var locale = window.location.href.match(/locale=([\w|\.]*)&?/);
if (locale && locale.length > 1) {
this.locale = locale[1].toLowerCase();
}
if (this.active) {
return;
}
this.active = true;
// set translations
this.getTranslations();
this.dictJSON.controlvariant = this.controlvariant == "true" ? 1 : 0;
this.dictJSON.variant = this.variant ? this.variant : "undefined";
this.dictJSON.pockethost = this.pockethost;
this.dictJSON.showlearnmore = true;
this.dictJSON.utmCampaign = "logged_out_save_test";
this.dictJSON.utmSource = "control";
// extra modifier class for collapsed state
if (this.inoverflowmenu) {
$("body").addClass("pkt_ext_signup_overflow");
}
// extra modifier class for language
if (this.locale) {
$("body").addClass("pkt_ext_signup_" + this.locale);
}
// Create actual content
if (this.variant == "overflow") {
$("body").append(Handlebars.templates.signup_shell(this.dictJSON));
} else {
// Logged Out Display Variants for MV Testing
let variants = {
control: "signupstoryboard_shell",
variant_a: "variant_a",
variant_b: "variant_b",
variant_c: "variant_c",
button_variant: "signupstoryboard_shell",
button_control: "signupstoryboard_shell",
};
let loggedOutVariantTemplate = variants[this.loggedOutVariant];
if (
this.loggedOutVariant === "button_variant" ||
this.loggedOutVariant === "button_control"
) {
this.dictJSON.buttonVariant = true;
this.dictJSON.utmCampaign = "logged_out_button_test";
this.dictJSON.utmSource = "button_control";
if (this.loggedOutVariant === "button_variant") {
this.dictJSON.oneButton = true;
this.dictJSON.utmSource = "button_variant";
}
}
if (loggedOutVariantTemplate !== `signupstoryboard_shell`) {
$("body").addClass(`
los_variant los_${loggedOutVariantTemplate}
`);
}
$("body").append(
Handlebars.templates[loggedOutVariantTemplate || variants.control](
this.dictJSON
)
);
}
// tell background we're ready
thePKT_SIGNUP.sendMessage("show");
// close events
this.initCloseTabEvents();
},
};
// Layer between Bookmarklet and Extensions
var PKT_SIGNUP = function() {};
PKT_SIGNUP.prototype = {
init() {
if (this.inited) {
return;
}
this.panelId = pktPanelMessaging.panelIdFromURL(window.location.href);
this.overlay = new PKT_SIGNUP_OVERLAY();
this.inited = true;
},
addMessageListener(messageId, callback) {
pktPanelMessaging.addMessageListener(this.panelId, messageId, callback);
},
sendMessage(messageId, payload, callback) {
pktPanelMessaging.sendMessage(this.panelId, messageId, payload, callback);
},
create() {
this.overlay.create();
// tell back end we're ready
thePKT_SIGNUP.sendMessage("show");
},
};
$(function() {
if (!window.thePKT_SIGNUP) {
var thePKT_SIGNUP = new PKT_SIGNUP();
/* global thePKT_SIGNUP */
window.thePKT_SIGNUP = thePKT_SIGNUP;
thePKT_SIGNUP.init();
}
var pocketHost = thePKT_SIGNUP.overlay.pockethost;
// send an async message to get string data
thePKT_SIGNUP.sendMessage(
"initL10N",
{
tos: [
"https://" + pocketHost + "/tos?s=ffi&t=tos&tv=panel_tryit",
"https://" +
pocketHost +
"/privacy?s=ffi&t=privacypolicy&tv=panel_tryit",
],
},
function(resp) {
window.pocketStrings = resp.strings;
// Set the writing system direction
document.documentElement.setAttribute("dir", resp.dir);
window.thePKT_SIGNUP.create();
}
);
});
|