blob: f1a7f0d14239298048831df3c34a452c90f79fa5 (
plain)
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
|
/* 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/. */
"use strict";
const { actionCreators: ac, actionTypes: at } = ChromeUtils.importESModule(
"resource://activity-stream/common/Actions.sys.mjs"
);
/**
* NewTabInit - A placeholder for now. This will send a copy of the state to all
* newly opened tabs.
*/
class NewTabInit {
constructor() {
this._repliedEarlyTabs = new Map();
}
reply(target) {
// Skip this reply if we already replied to an early tab
if (this._repliedEarlyTabs.get(target)) {
return;
}
const action = {
type: at.NEW_TAB_INITIAL_STATE,
data: this.store.getState(),
};
this.store.dispatch(ac.AlsoToOneContent(action, target));
// Remember that this early tab has already gotten a rehydration response in
// case it thought we lost its initial REQUEST and asked again
if (this._repliedEarlyTabs.has(target)) {
this._repliedEarlyTabs.set(target, true);
}
}
onAction(action) {
switch (action.type) {
case at.NEW_TAB_STATE_REQUEST:
this.reply(action.meta.fromTarget);
break;
case at.NEW_TAB_INIT:
// Initialize data for early tabs that might REQUEST twice
if (action.data.simulated) {
this._repliedEarlyTabs.set(action.data.portID, false);
}
break;
case at.NEW_TAB_UNLOAD:
// Clean up for any tab (no-op if not an early tab)
this._repliedEarlyTabs.delete(action.meta.fromTarget);
break;
}
}
}
const EXPORTED_SYMBOLS = ["NewTabInit"];
|