Added section ID icons to hunt optimizer.

This commit is contained in:
Daan Vanden Bosch 2019-06-16 12:55:49 +02:00
parent 414c34221b
commit a71457642c
13 changed files with 39 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 731 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 680 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 640 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 667 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 581 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

25
src/ui/SectionIdIcon.tsx Normal file
View File

@ -0,0 +1,25 @@
import React from "react";
import { SectionId } from "../domain";
export function SectionIdIcon({
sectionId,
size = 28,
title
}: {
sectionId: SectionId,
size?: number,
title?: string
}) {
return (
<div
title={title}
style={{
display: 'inline-block',
width: size,
height: size,
backgroundImage: `url(${process.env.PUBLIC_URL}/images/sectionids/${sectionId}.png)`,
backgroundSize: size
}}
/>
);
}

View File

@ -7,4 +7,10 @@
.ho-OptimizationResultComponent-table {
flex: 1;
}
.ho-OptimizationResultComponent-sid-col {
display: inline-block;
height: 20px;
margin: 0 3px;
}

View File

@ -4,6 +4,7 @@ import React from "react";
import { AutoSizer, Index } from "react-virtualized";
import { huntOptimizerStore, OptimalMethod } from "../../stores/HuntOptimizerStore";
import { Column, DataTable } from "../dataTable";
import { SectionIdIcon } from "../SectionIdIcon";
import { hoursToString } from "../time";
import "./OptimizationResultComponent.less";
@ -37,8 +38,13 @@ export class OptimizationResultComponent extends React.Component {
{
name: 'Section ID',
width: 80,
cellRenderer: (result) => result.sectionIds.join(', '),
tooltip: (result) => result.sectionIds.join(', '),
cellRenderer: (result) => (
<div className="ho-OptimizationResultComponent-sid-col">
{result.sectionIds.map(sid =>
<SectionIdIcon sectionId={sid} title={sid} key={sid} size={20} />
)}
</div>
),
},
{
name: 'Time/Run',