Added totals row to hunt optimizer results table.

This commit is contained in:
Daan Vanden Bosch 2019-06-06 21:40:12 +02:00
parent 308352ed27
commit ee42d6bf5b
3 changed files with 109 additions and 69 deletions

View File

@ -30,19 +30,19 @@ export class OptimizationResult {
} }
// TODO: Prefer methods that don't split pan arms over methods that do. // TODO: Prefer methods that don't split pan arms over methods that do.
// TODO: Row of totals. // For some reason this doesn't actually seem to be a problem, should probably investigate.
// TODO: save state in url for easy sharing. // TODO: save state in url for easy sharing (supporting custom methods will be hard though).
// TODO: group similar methods (e.g. same difficulty, same quest and similar ID). // TODO: group similar methods (e.g. same difficulty, same quest and similar ID).
// This way people can choose their preferred section ID. // This way people can choose their preferred section ID.
// TODO: order of items in results table should match order in wanted table. // TODO: order of items in results table should match order in wanted table.
// TODO: boxes. // TODO: boxes.
class HuntOptimizerStore { class HuntOptimizerStore {
@observable readonly wantedItems: Array<WantedItem> = []; @observable readonly wantedItems: Array<WantedItem> = [];
@observable readonly result: IObservableArray<OptimizationResult> = observable.array(); @observable readonly results: IObservableArray<OptimizationResult> = observable.array();
optimize = async () => { optimize = async () => {
if (!this.wantedItems.length) { if (!this.wantedItems.length) {
this.result.splice(0); this.results.splice(0);
return; return;
} }
@ -182,7 +182,7 @@ class HuntOptimizerStore {
}); });
runInAction(() => { runInAction(() => {
this.result.splice(0); this.results.splice(0);
if (!result.feasible) { if (!result.feasible) {
return; return;
@ -207,7 +207,7 @@ class HuntOptimizerStore {
} }
} }
this.result.push(new OptimizationResult( this.results.push(new OptimizationResult(
difficulty, difficulty,
sectionId, sectionId,
method.name + (splitPanArms ? ' (Split Pan Arms)' : ''), method.name + (splitPanArms ? ' (Split Pan Arms)' : ''),

View File

@ -32,7 +32,7 @@
} }
} }
.ho-OptimizationResultComponent-table-top-right { .ho-OptimizationResultComponent-table-header {
background-color: lighten(@component-background, 12%); background-color: lighten(@component-background, 12%);
font-weight: bold; font-weight: bold;
} }

View File

@ -6,64 +6,116 @@ import { huntOptimizerStore, OptimizationResult } from "../../stores/HuntOptimiz
import "./OptimizationResultComponent.less"; import "./OptimizationResultComponent.less";
import { computed } from "mobx"; 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 @observer
export class OptimizationResultComponent extends React.Component { export class OptimizationResultComponent extends React.Component {
private standardColumns: Array<{ @computed private get columns(): Column[] {
title: string, // Standard columns.
width: number, const results = huntOptimizerStore.results;
cellValue: (result: OptimizationResult) => string, let totalRuns = 0;
className?: string let totalTime = 0;
}> = [
for (const result of results) {
totalRuns += result.runs;
totalTime += result.totalTime;
}
const columns: Column[] = [
{ {
title: 'Difficulty', name: 'Difficulty',
width: 75, width: 75,
cellValue: (result) => result.difficulty cellValue: (result) => result.difficulty,
total: 'Totals:',
}, },
{ {
title: 'Method', name: 'Method',
width: 200, width: 200,
cellValue: (result) => result.methodName cellValue: (result) => result.methodName,
tooltip: (result) => result.methodName,
}, },
{ {
title: 'Section ID', name: 'Section ID',
width: 80, width: 80,
cellValue: (result) => result.sectionId cellValue: (result) => result.sectionId,
}, },
{ {
title: 'Hours/Run', name: 'Hours/Run',
width: 85, width: 85,
cellValue: (result) => result.methodTime.toFixed(1), cellValue: (result) => result.methodTime.toFixed(1),
className: 'number' tooltip: (result) => result.methodTime.toString(),
className: 'number',
}, },
{ {
title: 'Runs', name: 'Runs',
width: 50, width: 60,
cellValue: (result) => result.runs.toFixed(1), cellValue: (result) => result.runs.toFixed(1),
className: 'number' tooltip: (result) => result.runs.toString(),
total: totalRuns.toFixed(1),
totalTooltip: totalRuns.toString(),
className: 'number',
}, },
{ {
title: 'Total Hours', name: 'Total Hours',
width: 90, width: 90,
cellValue: (result) => result.totalTime.toFixed(1), cellValue: (result) => result.totalTime.toFixed(1),
className: 'number' tooltip: (result) => result.totalTime.toString(),
total: totalTime.toFixed(1),
totalTooltip: totalTime.toString(),
className: 'number',
}, },
]; ];
@computed private get items(): Item[] { // Add one column per item.
const items = new Set<Item>(); const items = new Set<Item>();
for (const r of huntOptimizerStore.result) { for (const r of results) {
for (const i of r.itemCounts.keys()) { for (const i of r.itemCounts.keys()) {
items.add(i); items.add(i);
} }
} }
return [...items]; 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;
} }
render() { render() {
// Make sure render is called when result changes. // Make sure render is called when result changes.
huntOptimizerStore.result.slice(0, 0); 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;
return ( return (
<section className="ho-OptimizationResultComponent"> <section className="ho-OptimizationResultComponent">
@ -72,20 +124,17 @@ export class OptimizationResultComponent extends React.Component {
<AutoSizer> <AutoSizer>
{({ width, height }) => {({ width, height }) =>
<MultiGrid <MultiGrid
fixedRowCount={1}
width={width} width={width}
height={height} height={height}
rowHeight={26} rowHeight={26}
rowCount={1 + huntOptimizerStore.result.length} rowCount={rowCount}
fixedRowCount={1}
columnWidth={this.columnWidth} columnWidth={this.columnWidth}
columnCount={this.standardColumns.length + this.items.length} columnCount={this.columns.length}
fixedColumnCount={3}
cellRenderer={this.cellRenderer} cellRenderer={this.cellRenderer}
classNameTopRightGrid="ho-OptimizationResultComponent-table-top-right" classNameTopLeftGrid="ho-OptimizationResultComponent-table-header"
noContentRenderer={() => classNameTopRightGrid="ho-OptimizationResultComponent-table-header"
<div className="ho-OptimizationResultComponent-no-result">
Add some items and click "Optimize" to see the result here.
</div>
}
/> />
} }
</AutoSizer> </AutoSizer>
@ -94,51 +143,42 @@ export class OptimizationResultComponent extends React.Component {
); );
} }
private columnWidth = ({ index }: Index) => { private columnWidth = ({ index }: Index): number => {
const column = this.standardColumns[index]; return this.columns[index].width;
return column ? column.width : 80;
} }
private cellRenderer: GridCellRenderer = ({ columnIndex, rowIndex, style }) => { private cellRenderer: GridCellRenderer = ({ columnIndex, rowIndex, style }) => {
const column = this.standardColumns[columnIndex]; const column = this.columns[columnIndex];
let text: string; let text: string;
let title: string | undefined; let title: string | undefined;
const classes = ['ho-OptimizationResultComponent-cell']; const classes = ['ho-OptimizationResultComponent-cell'];
if (columnIndex === this.standardColumns.length + this.items.length - 1) { if (columnIndex === this.columns.length - 1) {
classes.push('last-in-row'); classes.push('last-in-row');
} }
if (rowIndex === 0) { if (rowIndex === 0) {
// Header // Header row
text = title = column text = title = column.name;
? column.title
: this.items[columnIndex - this.standardColumns.length].name;
} else { } else {
// Method row // Method or totals row
const result = huntOptimizerStore.result[rowIndex - 1]; if (column.className) {
classes.push(column.className);
if (column) {
text = title = column.cellValue(result);
} else {
const itemCount = result.itemCounts.get(
this.items[columnIndex - this.standardColumns.length]
);
if (itemCount) {
text = itemCount.toFixed(2);
title = itemCount.toString();
} else {
text = '';
}
} }
if (column) { if (rowIndex === 1 + huntOptimizerStore.results.length) {
if (column.className) { // Totals row
classes.push(column.className); text = column.total == null ? '' : column.total;
} title = column.totalTooltip == null ? '' : column.totalTooltip;
} else { } else {
classes.push('number'); // Method row
const result = huntOptimizerStore.results[rowIndex - 1];
text = column.cellValue(result);
if (column.tooltip) {
title = column.tooltip(result);
}
} }
} }