2019-06-12 16:06:06 +08:00
|
|
|
import { computed } from "mobx";
|
2019-06-05 22:49:00 +08:00
|
|
|
import { observer } from "mobx-react";
|
|
|
|
import React from "react";
|
2019-06-12 16:06:06 +08:00
|
|
|
import { AutoSizer, Index } from "react-virtualized";
|
2019-06-16 17:43:10 +08:00
|
|
|
import { huntOptimizerStore, OptimalMethod } from "../../stores/HuntOptimizerStore";
|
2019-06-12 16:06:06 +08:00
|
|
|
import { Column, DataTable } from "../dataTable";
|
2019-06-12 16:24:27 +08:00
|
|
|
import { hoursToString } from "../time";
|
2019-06-16 17:43:10 +08:00
|
|
|
import "./OptimizationResultComponent.less";
|
2019-06-07 03:40:12 +08:00
|
|
|
|
2019-06-05 22:49:00 +08:00
|
|
|
@observer
|
|
|
|
export class OptimizationResultComponent extends React.Component {
|
2019-06-16 17:43:10 +08:00
|
|
|
@computed private get columns(): Column<OptimalMethod>[] {
|
2019-06-07 03:40:12 +08:00
|
|
|
// Standard columns.
|
2019-06-16 17:43:10 +08:00
|
|
|
const result = huntOptimizerStore.result;
|
|
|
|
const optimalMethods = result ? result.optimalMethods : [];
|
2019-06-07 03:40:12 +08:00
|
|
|
let totalRuns = 0;
|
|
|
|
let totalTime = 0;
|
|
|
|
|
2019-06-16 17:43:10 +08:00
|
|
|
for (const method of optimalMethods) {
|
|
|
|
totalRuns += method.runs;
|
|
|
|
totalTime += method.totalTime;
|
2019-06-07 03:40:12 +08:00
|
|
|
}
|
|
|
|
|
2019-06-16 17:43:10 +08:00
|
|
|
const columns: Column<OptimalMethod>[] = [
|
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-13 01:53:03 +08:00
|
|
|
cellRenderer: (result) => result.difficulty,
|
2019-06-12 16:06:06 +08:00
|
|
|
footerValue: '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-13 01:53:03 +08:00
|
|
|
cellRenderer: (result) => result.methodName,
|
2019-06-07 03:40:12 +08:00
|
|
|
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-16 05:00:46 +08:00
|
|
|
cellRenderer: (result) => result.sectionIds.join(', '),
|
|
|
|
tooltip: (result) => result.sectionIds.join(', '),
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-12 16:24:27 +08:00
|
|
|
name: 'Time/Run',
|
|
|
|
width: 80,
|
2019-06-13 01:53:03 +08:00
|
|
|
cellRenderer: (result) => hoursToString(result.methodTime),
|
2019-06-07 03:40:12 +08:00
|
|
|
className: 'number',
|
2019-06-06 08:24:21 +08:00
|
|
|
},
|
|
|
|
{
|
2019-06-07 03:40:12 +08:00
|
|
|
name: 'Runs',
|
|
|
|
width: 60,
|
2019-06-13 01:53:03 +08:00
|
|
|
cellRenderer: (result) => result.runs.toFixed(1),
|
2019-06-07 03:40:12 +08:00
|
|
|
tooltip: (result) => result.runs.toString(),
|
2019-06-12 16:06:06 +08:00
|
|
|
footerValue: totalRuns.toFixed(1),
|
|
|
|
footerTooltip: totalRuns.toString(),
|
2019-06-07 03:40:12 +08:00
|
|
|
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,
|
2019-06-13 01:53:03 +08:00
|
|
|
cellRenderer: (result) => result.totalTime.toFixed(1),
|
2019-06-07 03:40:12 +08:00
|
|
|
tooltip: (result) => result.totalTime.toString(),
|
2019-06-12 16:06:06 +08:00
|
|
|
footerValue: totalTime.toFixed(1),
|
|
|
|
footerTooltip: totalTime.toString(),
|
2019-06-07 03:40:12 +08:00
|
|
|
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-16 17:43:10 +08:00
|
|
|
if (result) {
|
|
|
|
for (const item of result.wantedItems) {
|
|
|
|
let totalCount = 0;
|
2019-06-05 22:49:00 +08:00
|
|
|
|
2019-06-16 17:43:10 +08:00
|
|
|
for (const method of optimalMethods) {
|
|
|
|
totalCount += method.itemCounts.get(item) || 0;
|
|
|
|
}
|
2019-06-07 03:40:12 +08:00
|
|
|
|
2019-06-16 17:43:10 +08:00
|
|
|
columns.push({
|
|
|
|
name: item.name,
|
|
|
|
width: 80,
|
|
|
|
cellRenderer: (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',
|
|
|
|
footerValue: totalCount.toFixed(2),
|
|
|
|
footerTooltip: totalCount.toString()
|
|
|
|
});
|
|
|
|
}
|
2019-06-07 03:40:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return columns;
|
2019-06-06 08:24:21 +08:00
|
|
|
}
|
|
|
|
|
2019-06-13 01:53:03 +08:00
|
|
|
// Make sure render is called when result changes.
|
|
|
|
@computed private get updateTrigger() {
|
2019-06-16 17:43:10 +08:00
|
|
|
return huntOptimizerStore.result != null;
|
2019-06-13 01:53:03 +08:00
|
|
|
}
|
|
|
|
|
2019-06-06 08:24:21 +08:00
|
|
|
render() {
|
2019-06-13 01:53:03 +08:00
|
|
|
this.updateTrigger; // eslint-disable-line
|
2019-06-16 17:43:10 +08:00
|
|
|
const result = huntOptimizerStore.result;
|
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 }) =>
|
2019-06-12 16:06:06 +08:00
|
|
|
<DataTable
|
2019-06-06 08:24:21 +08:00
|
|
|
width={width}
|
|
|
|
height={height}
|
2019-06-16 17:43:10 +08:00
|
|
|
rowCount={result ? result.optimalMethods.length : 0}
|
2019-06-12 16:06:06 +08:00
|
|
|
columns={this.columns}
|
2019-06-07 03:40:12 +08:00
|
|
|
fixedColumnCount={3}
|
2019-06-12 16:06:06 +08:00
|
|
|
record={this.record}
|
2019-06-16 17:43:10 +08:00
|
|
|
footer={result != null}
|
2019-06-13 01:53:03 +08:00
|
|
|
updateTrigger={this.updateTrigger}
|
2019-06-06 08:24:21 +08:00
|
|
|
/>
|
|
|
|
}
|
|
|
|
</AutoSizer>
|
|
|
|
</div>
|
2019-06-05 22:49:00 +08:00
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-06-16 17:43:10 +08:00
|
|
|
private record = ({ index }: Index): OptimalMethod => {
|
|
|
|
return huntOptimizerStore.result!.optimalMethods[index];
|
2019-06-05 22:49:00 +08:00
|
|
|
}
|
|
|
|
}
|