Text in table cells can now be aligned. Table now works in firefox.

This commit is contained in:
Daan Vanden Bosch 2019-09-07 20:43:53 +02:00
parent a28a8ce624
commit d7490b0d3c
4 changed files with 17 additions and 9 deletions

View File

@ -1,4 +1,5 @@
.core_Table { .core_Table {
position: relative;
display: block; display: block;
box-sizing: border-box; box-sizing: border-box;
overflow: auto; overflow: auto;
@ -11,10 +12,16 @@
align-items: stretch; align-items: stretch;
} }
.core_Table thead {
position: sticky;
display: inline-block;
top: 0;
z-index: 2;
}
.core_Table thead tr { .core_Table thead tr {
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 2;
} }
.core_Table th, .core_Table th,

View File

@ -12,6 +12,7 @@ export type Column<T> = {
title: string; title: string;
sticky?: boolean; sticky?: boolean;
width?: number; width?: number;
text_align?: string;
create_cell(value: T, disposer: Disposer): HTMLTableCellElement; create_cell(value: T, disposer: Disposer): HTMLTableCellElement;
}; };
@ -43,14 +44,14 @@ export class Table<T> extends Widget<HTMLTableElement> {
text: column.title, text: column.title,
}); });
if (column.width != undefined) th.style.width = `${column.width}px`;
if (column.sticky) { if (column.sticky) {
th.style.position = "sticky"; th.style.position = "sticky";
th.style.left = `${left}px`; th.style.left = `${left}px`;
left += column.width || 0; left += column.width || 0;
} }
if (column.width != undefined) th.style.width = `${column.width}px`;
return th; return th;
}), }),
); );
@ -97,14 +98,16 @@ export class Table<T> extends Widget<HTMLTableElement> {
...this.columns.map(column => { ...this.columns.map(column => {
const cell = column.create_cell(value, disposer); const cell = column.create_cell(value, disposer);
if (column.width != undefined) cell.style.width = `${column.width}px`;
if (column.sticky) { if (column.sticky) {
cell.style.position = "sticky"; cell.style.position = "sticky";
cell.style.left = `${left}px`; cell.style.left = `${left}px`;
left += column.width || 0; left += column.width || 0;
} }
if (column.width != undefined) cell.style.width = `${column.width}px`;
if (column.text_align) cell.style.textAlign = column.text_align;
return cell; return cell;
}), }),
); );

View File

@ -65,6 +65,7 @@ export class MethodsForEpisodeView extends ResizableWidget {
return { return {
title: npc_data(enemy_type).simple_name, title: npc_data(enemy_type).simple_name,
width: 80, width: 80,
text_align: "right",
create_cell(method: HuntMethodModel): HTMLTableDataCellElement { create_cell(method: HuntMethodModel): HTMLTableDataCellElement {
const count = method.enemy_counts.get(enemy_type); const count = method.enemy_counts.get(enemy_type);
return el.td({ text: count == undefined ? "" : count.toString() }); return el.td({ text: count == undefined ? "" : count.toString() });

View File

@ -4,12 +4,9 @@ import { WantedItemsView } from "./WantedItemsView";
import "./OptimizerView.css"; import "./OptimizerView.css";
export class OptimizerView extends ResizableWidget { export class OptimizerView extends ResizableWidget {
private readonly wanted_items_view: WantedItemsView;
constructor() { constructor() {
super(el.div({ class: "hunt_optimizer_OptimizerView" })); super(el.div({ class: "hunt_optimizer_OptimizerView" }));
this.wanted_items_view = this.disposable(new WantedItemsView()); this.element.append(this.disposable(new WantedItemsView()).element);
this.element.append(this.wanted_items_view.element);
} }
} }