phantasmal-world/src/ui/hunt_optimizer/OptimizationResultComponent.tsx

148 lines
5.3 KiB
TypeScript
Raw Normal View History

import { computed } from "mobx";
import { observer } from "mobx-react";
import React from "react";
import { AutoSizer, Index } from "react-virtualized";
import { Difficulty, Episode, SectionId } from "../../domain";
2019-07-02 23:00:24 +08:00
import { hunt_optimizer_store, OptimalMethod } from "../../stores/HuntOptimizerStore";
import { BigTable, Column } from "../BigTable";
import { SectionIdIcon } from "../SectionIdIcon";
2019-07-02 23:00:24 +08:00
import { hours_to_string } from "../time";
import "./OptimizationResultComponent.less";
@observer
export class OptimizationResultComponent extends React.Component {
@computed private get columns(): Column<OptimalMethod>[] {
// Standard columns.
2019-07-02 23:00:24 +08:00
const result = hunt_optimizer_store.result;
const optimal_methods = result ? result.optimal_methods : [];
let total_runs = 0;
let total_time = 0;
2019-07-02 23:00:24 +08:00
for (const method of optimal_methods) {
total_runs += method.runs;
total_time += method.total_time;
}
const columns: Column<OptimalMethod>[] = [
2019-06-06 08:24:21 +08:00
{
name: 'Difficulty',
2019-06-06 08:24:21 +08:00
width: 75,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => Difficulty[result.difficulty],
footer_value: 'Totals:',
2019-06-06 08:24:21 +08:00
},
{
name: 'Method',
2019-06-06 08:24:21 +08:00
width: 200,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => result.method_name,
tooltip: (result) => result.method_name,
2019-06-06 08:24:21 +08:00
},
{
name: 'Ep.',
width: 34,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => Episode[result.method_episode],
},
2019-06-06 08:24:21 +08:00
{
name: 'Section ID',
2019-06-06 08:24:21 +08:00
width: 80,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => (
<div className="ho-OptimizationResultComponent-sid-col">
2019-07-02 23:00:24 +08:00
{result.section_ids.map(sid =>
<SectionIdIcon section_id={sid} key={sid} size={20} />
)}
</div>
),
2019-07-02 23:00:24 +08:00
tooltip: (result) => result.section_ids.map(sid => SectionId[sid]).join(', '),
2019-06-06 08:24:21 +08:00
},
{
2019-06-12 16:24:27 +08:00
name: 'Time/Run',
width: 80,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => hours_to_string(result.method_time),
class_name: 'number',
2019-06-06 08:24:21 +08:00
},
{
name: 'Runs',
width: 60,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => result.runs.toFixed(1),
tooltip: (result) => result.runs.toString(),
2019-07-02 23:00:24 +08:00
footer_value: total_runs.toFixed(1),
footer_tooltip: total_runs.toString(),
class_name: 'number',
2019-06-06 08:24:21 +08:00
},
{
name: 'Total Hours',
2019-06-06 08:24:21 +08:00
width: 90,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => result.total_time.toFixed(1),
tooltip: (result) => result.total_time.toString(),
footer_value: total_time.toFixed(1),
footer_tooltip: total_time.toString(),
class_name: 'number',
2019-06-06 08:24:21 +08:00
},
];
// Add one column per item.
if (result) {
2019-07-02 23:00:24 +08:00
for (const item of result.wanted_items) {
let totalCount = 0;
2019-07-02 23:00:24 +08:00
for (const method of optimal_methods) {
totalCount += method.item_counts.get(item) || 0;
}
columns.push({
name: item.name,
width: 80,
2019-07-02 23:00:24 +08:00
cell_renderer: (result) => {
const count = result.item_counts.get(item);
return count ? count.toFixed(2) : '';
},
tooltip: (result) => {
2019-07-02 23:00:24 +08:00
const count = result.item_counts.get(item);
return count ? count.toString() : '';
},
2019-07-02 23:00:24 +08:00
class_name: 'number',
footer_value: totalCount.toFixed(2),
footer_tooltip: totalCount.toString()
});
}
}
return columns;
2019-06-06 08:24:21 +08:00
}
// Make sure render is called when result changes.
2019-07-02 23:00:24 +08:00
@computed private get update_trigger() {
return hunt_optimizer_store.result;
}
2019-06-06 08:24:21 +08:00
render() {
2019-07-02 23:00:24 +08:00
this.update_trigger; // eslint-disable-line
const result = hunt_optimizer_store.result;
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 }) =>
<BigTable
2019-06-06 08:24:21 +08:00
width={width}
height={height}
2019-07-02 23:00:24 +08:00
row_count={result ? result.optimal_methods.length : 0}
columns={this.columns}
2019-07-02 23:00:24 +08:00
fixed_column_count={4}
record={this.record}
footer={result != null}
2019-07-02 23:00:24 +08:00
update_trigger={this.update_trigger}
2019-06-06 08:24:21 +08:00
/>
}
</AutoSizer>
</div>
</section>
);
}
private record = ({ index }: Index): OptimalMethod => {
2019-07-02 23:00:24 +08:00
return hunt_optimizer_store.result!.optimal_methods[index];
}
}