blob: cd832d2c2fe1a36199ad040b1f0cf7d7ccfa1528 (
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
58
59
60
61
62
63
64
65
|
/* 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 { html, when } from "chrome://global/content/vendor/lit.all.mjs";
import { ViewPage } from "./viewpage.mjs";
import { isSearchEnabled } from "./helpers.mjs";
class RecentBrowsingInView extends ViewPage {
constructor() {
super();
this.pageType = "recentbrowsing";
}
static queries = {
searchTextbox: "fxview-search-textbox",
};
static properties = {
...ViewPage.properties,
};
viewVisibleCallback() {
for (let child of this.children) {
let childView = child.firstElementChild;
childView.paused = false;
childView.viewVisibleCallback();
}
}
viewHiddenCallback() {
for (let child of this.children) {
let childView = child.firstElementChild;
childView.paused = true;
childView.viewHiddenCallback();
}
}
render() {
return html`
<link
rel="stylesheet"
href="chrome://browser/content/firefoxview/firefoxview.css"
/>
<div class="sticky-container bottom-fade">
<h2 class="page-header" data-l10n-id="firefoxview-overview-header"></h2>
${when(
isSearchEnabled(),
() => html`<div class="search-container">
<fxview-search-textbox
data-l10n-id="firefoxview-search-text-box-recentbrowsing"
data-l10n-attrs="placeholder"
.size=${this.searchTextboxSize}
pageName="recentbrowsing"
></fxview-search-textbox>
</div>`
)}
</div>
<div class="cards-container">
<slot></slot>
</div>
`;
}
}
customElements.define("view-recentbrowsing", RecentBrowsingInView);
|