Revision control

Copy as Markdown

Other Tools

import {
TreeDataAdapter,
TreeDataRow,
// eslint-disable-next-line import/no-unassigned-import
class AutoTreeView extends TreeDataAdapter {
data = [
{
colour: "red",
continent: "north america",
sin: "pride",
wonder: "pyramid of giza",
dwarf: "arzt",
},
{
colour: "orange",
continent: "south america",
sin: "greed",
wonder: "colossus of rhodes",
dwarf: "mürrisch",
},
{
colour: "yellow",
continent: "antarctica",
sin: "wrath",
wonder: "lighthouse of alexandria",
dwarf: "schläfrig",
},
{
colour: "green",
continent: "australia",
sin: "envy",
wonder: "mausoleum of halicarnassus",
dwarf: "schüchtern",
},
{
colour: "blue",
continent: "asia",
sin: "lust",
wonder: "temple of artemis",
dwarf: "glücklich",
},
{
colour: "indigo",
continent: "europe",
sin: "gluttony",
wonder: "statue of zeus",
dwarf: "niesen",
},
{
colour: "violet",
continent: "africa",
sin: "sloth",
wonder: "gardens of babylon",
dwarf: "dumm",
},
];
constructor() {
super();
for (let i = 0; i < this.data.length; i++) {
this._rowMap.push(
new TreeDataRow(
this.data[i],
undefined,
this.data[i].continent == "antarctica" ? "uninhabited" : ""
)
);
}
}
}
L10nRegistry.getInstance().registerSources([
L10nFileSource.createMock("mock", "app", ["en-US"], "/localization/", [
{
path: "/localization/mock.ftl",
// Those weird column header names are a work-around for a bug that
// means columns can only be dragged from the text of the header.
// We need to have some text in the centre of the header cell.
// See bug 1908314.
source: `
colour-header = ColourColourColourColourColourColour
.title = Sort by Colour
colour-menuitem =
.label = Colour
colour-cell =
.aria-label = Colour
.title = The sky is { $title }
continent-header = ContinentContinentContinent
.title = Sort by Continent
continent-menuitem =
.label = Continent
continent-cell =
.aria-label = Continent
.title = { $title }
sin-header = Sin
.title = Sort by Sin
sin-menuitem =
.label = Sin
wonder-header = Wonder
.title = Sort by Wonder
wonder-menuitem =
.label = Wonder
dwarf-header = Dwarf
.title = Sort by Dwarf
dwarf-menuitem =
.label = Dwarf
`,
},
]),
]);
document.l10n.addResourceIds(["mock.ftl"]);
const tree = document.querySelector("auto-tree-view");
tree.setAttribute("rows", "auto-tree-view-table-row");
tree.defaultColumns = [
{
id: "colour",
l10n: {
header: "colour-header",
menuitem: "colour-menuitem",
cell: "colour-cell",
},
width: 150,
picker: false,
},
{
id: "continent",
l10n: {
header: "continent-header",
menuitem: "continent-menuitem",
cell: "continent-cell",
},
},
{
id: "sin",
l10n: { header: "sin-header", menuitem: "sin-menuitem" },
hidden: true,
},
{
id: "wonder",
l10n: { header: "wonder-header", menuitem: "wonder-menuitem" },
hidden: true,
},
{
id: "dwarf",
l10n: { header: "dwarf-header", menuitem: "dwarf-menuitem" },
hidden: true,
},
];
tree.view = new AutoTreeView();