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
|
/* vim: set ts=2 sw=2 sts=2 et tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { JsonSchema } from "resource://gre/modules/JsonSchema.sys.mjs";
const lazy = {};
ChromeUtils.defineESModuleGetters(lazy, {
CFRPageActions: "resource:///modules/asrouter/CFRPageActions.sys.mjs",
FeatureCalloutBroker:
"resource:///modules/asrouter/FeatureCalloutBroker.sys.mjs",
InfoBar: "resource:///modules/asrouter/InfoBar.sys.mjs",
SpecialMessageActions:
"resource://messaging-system/lib/SpecialMessageActions.sys.mjs",
Spotlight: "resource:///modules/asrouter/Spotlight.sys.mjs",
});
function dispatchCFRAction({ type, data }, browser) {
if (type === "USER_ACTION") {
lazy.SpecialMessageActions.handleAction(data, browser);
}
}
export class AboutMessagePreviewParent extends JSWindowActorParent {
showInfoBar(message, browser) {
lazy.InfoBar.showInfoBarMessage(browser, message, dispatchCFRAction);
}
showSpotlight(message, browser) {
lazy.Spotlight.showSpotlightDialog(browser, message, () => {});
}
showCFR(message, browser) {
lazy.CFRPageActions.forceRecommendation(
browser,
message,
dispatchCFRAction
);
}
showFeatureCallout(message, browser) {
switch (message.trigger.id) {
case "featureCalloutCheck":
// For messagePreview, force the trigger to be something we can show
message.trigger.id = "nthTabClosed";
lazy.FeatureCalloutBroker.showFeatureCallout(browser, message);
break;
default:
lazy.FeatureCalloutBroker.showFeatureCallout(browser, message);
}
}
async showMessage(data) {
let message;
try {
message = JSON.parse(data);
} catch (e) {
console.error("Could not parse message", e);
return;
}
const schema = await fetch(
"chrome://browser/content/asrouter/schemas/MessagingExperiment.schema.json",
{ credentials: "omit" }
).then(rsp => rsp.json());
const result = JsonSchema.validate(message, schema);
if (!result.valid) {
console.error(
`Invalid message: ${JSON.stringify(result.errors, undefined, 2)}`
);
}
const browser =
this.browsingContext.topChromeWindow.gBrowser.selectedBrowser;
switch (message.template) {
case "infobar":
this.showInfoBar(message, browser);
return;
case "spotlight":
this.showSpotlight(message, browser);
return;
case "cfr_doorhanger":
this.showCFR(message, browser);
return;
case "feature_callout":
this.showFeatureCallout(message, browser);
return;
default:
console.error(`Unsupported message template ${message.template}`);
}
}
receiveMessage(message) {
const { name, data } = message;
switch (name) {
case "MessagePreview:SHOW_MESSAGE":
this.showMessage(data);
break;
default:
console.log(`Unexpected event ${name} was not handled.`);
}
}
}
|