2019-09-07 23:49:21 +08:00
|
|
|
import { Widget, WidgetOptions } from "./Widget";
|
|
|
|
import { el } from "./dom";
|
|
|
|
import {
|
|
|
|
ListChangeType,
|
|
|
|
ListProperty,
|
|
|
|
ListPropertyChangeEvent,
|
|
|
|
} from "../observable/property/list/ListProperty";
|
|
|
|
import { Disposer } from "../observable/Disposer";
|
|
|
|
import "./Table.css";
|
2019-09-11 21:51:56 +08:00
|
|
|
import Logger = require("js-logger");
|
|
|
|
|
|
|
|
const logger = Logger.get("core/gui/Table");
|
2019-09-07 23:49:21 +08:00
|
|
|
|
|
|
|
export type Column<T> = {
|
|
|
|
title: string;
|
2019-09-14 17:59:50 +08:00
|
|
|
fixed?: boolean;
|
2019-09-10 00:37:20 +08:00
|
|
|
width: number;
|
2019-09-11 21:51:56 +08:00
|
|
|
input?: boolean;
|
2019-09-08 02:43:53 +08:00
|
|
|
text_align?: string;
|
2019-09-11 21:51:56 +08:00
|
|
|
tooltip?: (value: T) => string;
|
|
|
|
render_cell(value: T, disposer: Disposer): string | HTMLElement;
|
2019-09-14 17:59:50 +08:00
|
|
|
footer?: {
|
|
|
|
render_cell(): string;
|
|
|
|
tooltip?(): string;
|
|
|
|
};
|
2019-09-07 23:49:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
export type TableOptions<T> = WidgetOptions & {
|
|
|
|
values: ListProperty<T>;
|
|
|
|
columns: Column<T>[];
|
|
|
|
};
|
|
|
|
|
|
|
|
export class Table<T> extends Widget<HTMLTableElement> {
|
|
|
|
private readonly table_disposer = this.disposable(new Disposer());
|
|
|
|
private readonly tbody_element = el.tbody();
|
2019-09-14 17:59:50 +08:00
|
|
|
private readonly footer_row_element?: HTMLTableRowElement;
|
2019-09-07 23:49:21 +08:00
|
|
|
private readonly values: ListProperty<T>;
|
|
|
|
private readonly columns: Column<T>[];
|
|
|
|
|
|
|
|
constructor(options: TableOptions<T>) {
|
|
|
|
super(el.table({ class: "core_Table" }), options);
|
|
|
|
|
|
|
|
this.values = options.values;
|
|
|
|
this.columns = options.columns;
|
|
|
|
|
|
|
|
const thead_element = el.thead();
|
|
|
|
const header_tr_element = el.tr();
|
|
|
|
|
|
|
|
let left = 0;
|
2019-09-14 17:59:50 +08:00
|
|
|
let has_footer = false;
|
2019-09-07 23:49:21 +08:00
|
|
|
|
|
|
|
header_tr_element.append(
|
|
|
|
...this.columns.map(column => {
|
2019-09-11 21:51:56 +08:00
|
|
|
const th = el.th({}, el.span({ text: column.title }));
|
2019-09-07 23:49:21 +08:00
|
|
|
|
2019-09-14 17:59:50 +08:00
|
|
|
if (column.fixed) {
|
2019-09-07 23:49:21 +08:00
|
|
|
th.style.position = "sticky";
|
|
|
|
th.style.left = `${left}px`;
|
2019-09-10 00:37:20 +08:00
|
|
|
left += column.width;
|
2019-09-07 23:49:21 +08:00
|
|
|
}
|
|
|
|
|
2019-09-10 00:37:20 +08:00
|
|
|
th.style.width = `${column.width}px`;
|
2019-09-08 02:43:53 +08:00
|
|
|
|
2019-09-14 17:59:50 +08:00
|
|
|
if (column.footer) {
|
|
|
|
has_footer = true;
|
|
|
|
}
|
|
|
|
|
2019-09-07 23:49:21 +08:00
|
|
|
return th;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
thead_element.append(header_tr_element);
|
|
|
|
this.tbody_element = el.tbody();
|
|
|
|
this.element.append(thead_element, this.tbody_element);
|
|
|
|
|
2019-09-14 17:59:50 +08:00
|
|
|
if (has_footer) {
|
|
|
|
this.footer_row_element = el.tr();
|
|
|
|
this.element.append(el.tfoot({}, this.footer_row_element));
|
|
|
|
this.create_footer();
|
|
|
|
}
|
|
|
|
|
2019-09-07 23:49:21 +08:00
|
|
|
this.disposables(this.values.observe_list(this.update_table));
|
2019-09-11 21:51:56 +08:00
|
|
|
|
|
|
|
this.splice_rows(0, this.values.length.val, this.values.val);
|
2019-09-07 23:49:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private update_table = (change: ListPropertyChangeEvent<T>): void => {
|
|
|
|
if (change.type === ListChangeType.ListChange) {
|
|
|
|
this.splice_rows(change.index, change.removed.length, change.inserted);
|
2019-09-14 17:59:50 +08:00
|
|
|
this.update_footer();
|
2019-09-07 23:49:21 +08:00
|
|
|
} else if (change.type === ListChangeType.ValueChange) {
|
|
|
|
// TODO: update rows
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private splice_rows = (index: number, amount: number, inserted: T[]) => {
|
|
|
|
for (let i = 0; i < amount; i++) {
|
|
|
|
this.tbody_element.children[index].remove();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.table_disposer.dispose_at(index, amount);
|
|
|
|
|
|
|
|
const rows = inserted.map((value, i) => this.create_row(index + i, value));
|
|
|
|
|
|
|
|
if (index >= this.tbody_element.childElementCount) {
|
|
|
|
this.tbody_element.append(...rows);
|
|
|
|
} else {
|
|
|
|
for (let i = 0; i < amount; i++) {
|
2019-09-10 00:37:20 +08:00
|
|
|
this.tbody_element.children[index + i].insertAdjacentElement(
|
|
|
|
"beforebegin",
|
|
|
|
rows[i],
|
|
|
|
);
|
2019-09-07 23:49:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
private create_row = (index: number, value: T): HTMLTableRowElement => {
|
|
|
|
const disposer = this.table_disposer.add(new Disposer());
|
|
|
|
let left = 0;
|
|
|
|
|
|
|
|
return el.tr(
|
|
|
|
{},
|
2019-09-11 21:51:56 +08:00
|
|
|
...this.columns.map((column, i) => {
|
2019-09-14 17:59:50 +08:00
|
|
|
const cell = column.fixed ? el.th() : el.td();
|
2019-09-07 23:49:21 +08:00
|
|
|
|
2019-09-11 21:51:56 +08:00
|
|
|
try {
|
|
|
|
const content = column.render_cell(value, disposer);
|
2019-09-07 23:49:21 +08:00
|
|
|
|
2019-09-11 21:51:56 +08:00
|
|
|
cell.append(content);
|
2019-09-08 02:43:53 +08:00
|
|
|
|
2019-09-11 21:51:56 +08:00
|
|
|
if (column.input) cell.classList.add("input");
|
|
|
|
|
2019-09-14 17:59:50 +08:00
|
|
|
if (column.fixed) {
|
|
|
|
cell.classList.add("fixed");
|
2019-09-11 21:51:56 +08:00
|
|
|
cell.style.left = `${left}px`;
|
|
|
|
left += column.width || 0;
|
|
|
|
}
|
|
|
|
|
2019-09-14 17:59:50 +08:00
|
|
|
cell.style.width = `${column.width}px`;
|
2019-09-11 21:51:56 +08:00
|
|
|
|
|
|
|
if (column.text_align) cell.style.textAlign = column.text_align;
|
|
|
|
|
|
|
|
if (column.tooltip) cell.title = column.tooltip(value);
|
|
|
|
} catch (e) {
|
|
|
|
logger.warn(`Error while rendering cell for index ${index}, column ${i}.`, e);
|
|
|
|
}
|
2019-09-08 02:43:53 +08:00
|
|
|
|
2019-09-07 23:49:21 +08:00
|
|
|
return cell;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
};
|
2019-09-14 17:59:50 +08:00
|
|
|
|
|
|
|
private create_footer(): void {
|
|
|
|
const footer_cells: HTMLTableHeaderCellElement[] = [];
|
|
|
|
let left = 0;
|
|
|
|
|
|
|
|
for (let i = 0; i < this.columns.length; i++) {
|
|
|
|
const column = this.columns[i];
|
|
|
|
const cell = el.th();
|
|
|
|
|
|
|
|
cell.style.width = `${column.width}px`;
|
|
|
|
|
|
|
|
if (column.fixed) {
|
|
|
|
cell.classList.add("fixed");
|
|
|
|
cell.style.left = `${left}px`;
|
|
|
|
left += column.width || 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (column.footer) {
|
|
|
|
cell.textContent = column.footer.render_cell();
|
|
|
|
cell.title = column.footer.tooltip ? column.footer.tooltip() : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (column.text_align) cell.style.textAlign = column.text_align;
|
|
|
|
|
|
|
|
footer_cells.push(cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.footer_row_element!.append(...footer_cells);
|
|
|
|
}
|
|
|
|
|
|
|
|
private update_footer(): void {
|
|
|
|
if (!this.footer_row_element) return;
|
|
|
|
|
|
|
|
const col_count = this.columns.length;
|
|
|
|
|
|
|
|
for (let i = 0; i < col_count; i++) {
|
|
|
|
const column = this.columns[i];
|
|
|
|
|
|
|
|
if (column.footer) {
|
|
|
|
const cell = this.footer_row_element.children[i] as HTMLTableHeaderCellElement;
|
|
|
|
cell.textContent = column.footer.render_cell();
|
|
|
|
cell.title = column.footer.tooltip ? column.footer.tooltip() : "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-07 23:49:21 +08:00
|
|
|
}
|