blob: 60b78a77c0ea46c46f30e906715b2146dfbd4e28 (
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
|
/* 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 } from "chrome://global/content/vendor/lit.all.mjs";
import { ViewPage } from "./viewpage.mjs";
// eslint-disable-next-line import/no-unassigned-import
import "chrome://browser/content/firefoxview/card-container.mjs";
class HistoryInView extends ViewPage {
constructor() {
super();
}
connectedCallback() {
super.connectedCallback();
}
disconnectedCallback() {}
render() {
if (!this.selectedTab && !this.overview) {
return null;
}
let numRows = this.overview ? 5 : 10;
const itemTemplates = [];
for (let i = 1; i <= numRows; i++) {
itemTemplates.push(html` <p>History Row ${i}</p> `);
}
return html`
<card-container
.viewAllPage=${this.overview ? "history" : null}
?preserveCollapseState=${this.overview ? true : null}
>
<h2 slot="header" data-l10n-id="firefoxview-history-header"></h2>
<ul slot="main">
${itemTemplates}
</ul>
</card-container>
`;
}
}
customElements.define("view-history", HistoryInView);
|