2019-06-05 22:49:00 +08:00
|
|
|
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";
|
2019-06-05 22:49:00 +08:00
|
|
|
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";
|
2019-06-05 22:49:00 +08:00
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
type Column = {
|
|
|
|
name: string,
|
|
|
|
width: number,
|
|
|
|
cellValue: (result: OptimizationResult) => string,
|
|
|
|
tooltip?: (result: OptimizationResult) => string,
|
|
|
|
total?: string,
|
|
|
|
totalTooltip?: string,
|
|
|
|
className?: string
|
|
|
|
}
|
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
@observer
|
|
|
|
export class OptimizationResultComponent extends React.Component {
|
2019-06-07 03:40:12 +08:00
|
|
|
@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
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Difficulty',
|
2019-06-06 08:24:21 +08:00
|
|
|
width: 75,
|
2019-06-07 03:40:12 +08:00
|
|
|
cellValue: (result) => result.difficulty,
|
|
|
|
total: 'Totals:',
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Method',
|
2019-06-06 08:24:21 +08:00
|
|
|
width: 200,
|
2019-06-07 03:40:12 +08:00
|
|
|
cellValue: (result) => result.methodName,
|
|
|
|
tooltip: (result) => result.methodName,
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Section ID',
|
2019-06-06 08:24:21 +08:00
|
|
|
width: 80,
|
2019-06-07 03:40:12 +08:00
|
|
|
cellValue: (result) => result.sectionId,
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Hours/Run',
|
2019-06-06 08:24:21 +08:00
|
|
|
width: 85,
|
|
|
|
cellValue: (result) => result.methodTime.toFixed(1),
|
2019-06-07 03:40:12 +08:00
|
|
|
tooltip: (result) => result.methodTime.toString(),
|
|
|
|
className: 'number',
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Runs',
|
|
|
|
width: 60,
|
2019-06-06 08:24:21 +08:00
|
|
|
cellValue: (result) => result.runs.toFixed(1),
|
2019-06-07 03:40:12 +08:00
|
|
|
tooltip: (result) => result.runs.toString(),
|
|
|
|
total: totalRuns.toFixed(1),
|
|
|
|
totalTooltip: totalRuns.toString(),
|
|
|
|
className: 'number',
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Total Hours',
|
2019-06-06 08:24:21 +08:00
|
|
|
width: 90,
|
|
|
|
cellValue: (result) => result.totalTime.toFixed(1),
|
2019-06-07 03:40:12 +08:00
|
|
|
tooltip: (result) => result.totalTime.toString(),
|
|
|
|
total: totalTime.toFixed(1),
|
|
|
|
totalTooltip: totalTime.toString(),
|
|
|
|
className: 'number',
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
// Add one column per item.
|
2019-06-05 22:49:00 +08:00
|
|
|
const items = new Set<Item>();
|
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
for (const r of results) {
|
2019-06-05 22:49:00 +08:00
|
|
|
for (const i of r.itemCounts.keys()) {
|
|
|
|
items.add(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
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.
|
2019-06-07 03:40:12 +08:00
|
|
|
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
|
|
|
|
2019-06-05 22:49:00 +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}
|
2019-06-07 03:40:12 +08:00
|
|
|
rowCount={rowCount}
|
|
|
|
fixedRowCount={1}
|
2019-06-06 08:24:21 +08:00
|
|
|
columnWidth={this.columnWidth}
|
2019-06-07 03:40:12 +08:00
|
|
|
columnCount={this.columns.length}
|
|
|
|
fixedColumnCount={3}
|
2019-06-06 08:24:21 +08:00
|
|
|
cellRenderer={this.cellRenderer}
|
2019-06-07 03:40:12 +08:00
|
|
|
classNameTopLeftGrid="ho-OptimizationResultComponent-table-header"
|
|
|
|
classNameTopRightGrid="ho-OptimizationResultComponent-table-header"
|
2019-06-06 08:24:21 +08:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
</AutoSizer>
|
|
|
|
</div>
|
2019-06-05 22:49:00 +08:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
private columnWidth = ({ index }: Index): number => {
|
|
|
|
return this.columns[index].width;
|
2019-06-06 08:24:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private cellRenderer: GridCellRenderer = ({ columnIndex, rowIndex, style }) => {
|
2019-06-07 03:40:12 +08:00
|
|
|
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'];
|
|
|
|
|
2019-06-07 03:40:12 +08:00
|
|
|
if (columnIndex === this.columns.length - 1) {
|
2019-06-06 08:24:21 +08:00
|
|
|
classes.push('last-in-row');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rowIndex === 0) {
|
2019-06-07 03:40:12 +08:00
|
|
|
// Header row
|
|
|
|
text = title = column.name;
|
2019-06-06 08:24:21 +08:00
|
|
|
} else {
|
2019-06-07 03:40:12 +08:00
|
|
|
// Method or totals row
|
|
|
|
if (column.className) {
|
|
|
|
classes.push(column.className);
|
|
|
|
}
|
2019-06-06 08:24:21 +08:00
|
|
|
|
2019-06-07 03:40:12 +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 {
|
2019-06-07 03:40:12 +08:00
|
|
|
// Method row
|
|
|
|
const result = huntOptimizerStore.results[rowIndex - 1];
|
2019-06-06 08:24:21 +08:00
|
|
|
|
2019-06-07 03:40:12 +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>
|
|
|
|
);
|
2019-06-05 22:49:00 +08:00
|
|
|
}
|
|
|
|
}
|