phantasmal-world/src/ui/hunt-optimizer/OptimizationResultComponent.tsx

197 lines
6.5 KiB
TypeScript
Raw Normal View History

import { observer } from "mobx-react";
import React from "react";
2019-06-06 08:24:21 +08:00
import { AutoSizer, GridCellRenderer, MultiGrid, Index } from "react-virtualized";
import { Item } from "../../domain";
import { huntOptimizerStore, OptimizationResult } from "../../stores/HuntOptimizerStore";
2019-06-06 08:24:21 +08:00
import "./OptimizationResultComponent.less";
import { computed } from "mobx";
type Column = {
name: string,
width: number,
cellValue: (result: OptimizationResult) => string,
tooltip?: (result: OptimizationResult) => string,
total?: string,
totalTooltip?: string,
className?: string
}
@observer
export class OptimizationResultComponent extends React.Component {
@computed private get columns(): Column[] {
// Standard columns.
const results = huntOptimizerStore.results;
let totalRuns = 0;
let totalTime = 0;
for (const result of results) {
totalRuns += result.runs;
totalTime += result.totalTime;
}
const columns: Column[] = [
2019-06-06 08:24:21 +08:00
{
name: 'Difficulty',
2019-06-06 08:24:21 +08:00
width: 75,
cellValue: (result) => result.difficulty,
total: 'Totals:',
2019-06-06 08:24:21 +08:00
},
{
name: 'Method',
2019-06-06 08:24:21 +08:00
width: 200,
cellValue: (result) => result.methodName,
tooltip: (result) => result.methodName,
2019-06-06 08:24:21 +08:00
},
{
name: 'Section ID',
2019-06-06 08:24:21 +08:00
width: 80,
cellValue: (result) => result.sectionId,
2019-06-06 08:24:21 +08:00
},
{
name: 'Hours/Run',
2019-06-06 08:24:21 +08:00
width: 85,
cellValue: (result) => result.methodTime.toFixed(1),
tooltip: (result) => result.methodTime.toString(),
className: 'number',
2019-06-06 08:24:21 +08:00
},
{
name: 'Runs',
width: 60,
2019-06-06 08:24:21 +08:00
cellValue: (result) => result.runs.toFixed(1),
tooltip: (result) => result.runs.toString(),
total: totalRuns.toFixed(1),
totalTooltip: totalRuns.toString(),
className: 'number',
2019-06-06 08:24:21 +08:00
},
{
name: 'Total Hours',
2019-06-06 08:24:21 +08:00
width: 90,
cellValue: (result) => result.totalTime.toFixed(1),
tooltip: (result) => result.totalTime.toString(),
total: totalTime.toFixed(1),
totalTooltip: totalTime.toString(),
className: 'number',
2019-06-06 08:24:21 +08:00
},
];
// Add one column per item.
const items = new Set<Item>();
for (const r of results) {
for (const i of r.itemCounts.keys()) {
items.add(i);
}
}
for (const item of items) {
const totalCount = results.reduce(
(acc, r) => acc + (r.itemCounts.get(item) || 0),
0
);
columns.push({
name: item.name,
width: 80,
cellValue: (result) => {
const count = result.itemCounts.get(item);
return count ? count.toFixed(2) : '';
},
tooltip: (result) => {
const count = result.itemCounts.get(item);
return count ? count.toString() : '';
},
className: 'number',
total: totalCount.toFixed(2),
totalTooltip: totalCount.toString()
});
}
return columns;
2019-06-06 08:24:21 +08:00
}
render() {
// Make sure render is called when result changes.
huntOptimizerStore.results.slice(0, 0);
// Always add a row for the header. Add a row for the totals only if we have results.
const rowCount = huntOptimizerStore.results.length
? 2 + huntOptimizerStore.results.length
: 1;
2019-06-06 08:24:21 +08:00
return (
2019-06-06 08:24:21 +08:00
<section className="ho-OptimizationResultComponent">
<h3>Optimization Result</h3>
<div className="ho-OptimizationResultComponent-table">
<AutoSizer>
{({ width, height }) =>
<MultiGrid
width={width}
height={height}
2019-06-06 18:47:19 +08:00
rowHeight={26}
rowCount={rowCount}
fixedRowCount={1}
2019-06-06 08:24:21 +08:00
columnWidth={this.columnWidth}
columnCount={this.columns.length}
fixedColumnCount={3}
2019-06-06 08:24:21 +08:00
cellRenderer={this.cellRenderer}
classNameTopLeftGrid="ho-OptimizationResultComponent-table-header"
classNameTopRightGrid="ho-OptimizationResultComponent-table-header"
2019-06-06 08:24:21 +08:00
/>
}
</AutoSizer>
</div>
</section>
);
}
private columnWidth = ({ index }: Index): number => {
return this.columns[index].width;
2019-06-06 08:24:21 +08:00
}
private cellRenderer: GridCellRenderer = ({ columnIndex, rowIndex, style }) => {
const column = this.columns[columnIndex];
2019-06-06 08:24:21 +08:00
let text: string;
let title: string | undefined;
const classes = ['ho-OptimizationResultComponent-cell'];
if (columnIndex === this.columns.length - 1) {
2019-06-06 08:24:21 +08:00
classes.push('last-in-row');
}
if (rowIndex === 0) {
// Header row
text = title = column.name;
2019-06-06 08:24:21 +08:00
} else {
// Method or totals row
if (column.className) {
classes.push(column.className);
}
2019-06-06 08:24:21 +08:00
if (rowIndex === 1 + huntOptimizerStore.results.length) {
// Totals row
text = column.total == null ? '' : column.total;
title = column.totalTooltip == null ? '' : column.totalTooltip;
2019-06-06 08:24:21 +08:00
} else {
// Method row
const result = huntOptimizerStore.results[rowIndex - 1];
2019-06-06 08:24:21 +08:00
text = column.cellValue(result);
if (column.tooltip) {
title = column.tooltip(result);
2019-06-06 08:24:21 +08:00
}
}
}
return (
<div
className={classes.join(' ')}
key={`${columnIndex}, ${rowIndex}`}
style={style}
title={title}
>
<span>{text}</span>
</div>
);
}
}