Added section ID icons to hunt optimizer.
BIN
public/images/sectionids/Bluefull.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
public/images/sectionids/Greenill.png
Normal file
After Width: | Height: | Size: 731 B |
BIN
public/images/sectionids/Oran.png
Normal file
After Width: | Height: | Size: 675 B |
BIN
public/images/sectionids/Pinkal.png
Normal file
After Width: | Height: | Size: 690 B |
BIN
public/images/sectionids/Purplenum.png
Normal file
After Width: | Height: | Size: 680 B |
BIN
public/images/sectionids/Redria.png
Normal file
After Width: | Height: | Size: 640 B |
BIN
public/images/sectionids/Skyly.png
Normal file
After Width: | Height: | Size: 701 B |
BIN
public/images/sectionids/Viridia.png
Normal file
After Width: | Height: | Size: 667 B |
BIN
public/images/sectionids/Whitill.png
Normal file
After Width: | Height: | Size: 581 B |
BIN
public/images/sectionids/Yellowboze.png
Normal file
After Width: | Height: | Size: 484 B |
25
src/ui/SectionIdIcon.tsx
Normal 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
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
@ -7,4 +7,10 @@
|
|||||||
|
|
||||||
.ho-OptimizationResultComponent-table {
|
.ho-OptimizationResultComponent-table {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ho-OptimizationResultComponent-sid-col {
|
||||||
|
display: inline-block;
|
||||||
|
height: 20px;
|
||||||
|
margin: 0 3px;
|
||||||
}
|
}
|
@ -4,6 +4,7 @@ import React from "react";
|
|||||||
import { AutoSizer, Index } from "react-virtualized";
|
import { AutoSizer, Index } from "react-virtualized";
|
||||||
import { huntOptimizerStore, OptimalMethod } from "../../stores/HuntOptimizerStore";
|
import { huntOptimizerStore, OptimalMethod } from "../../stores/HuntOptimizerStore";
|
||||||
import { Column, DataTable } from "../dataTable";
|
import { Column, DataTable } from "../dataTable";
|
||||||
|
import { SectionIdIcon } from "../SectionIdIcon";
|
||||||
import { hoursToString } from "../time";
|
import { hoursToString } from "../time";
|
||||||
import "./OptimizationResultComponent.less";
|
import "./OptimizationResultComponent.less";
|
||||||
|
|
||||||
@ -37,8 +38,13 @@ export class OptimizationResultComponent extends React.Component {
|
|||||||
{
|
{
|
||||||
name: 'Section ID',
|
name: 'Section ID',
|
||||||
width: 80,
|
width: 80,
|
||||||
cellRenderer: (result) => result.sectionIds.join(', '),
|
cellRenderer: (result) => (
|
||||||
tooltip: (result) => result.sectionIds.join(', '),
|
<div className="ho-OptimizationResultComponent-sid-col">
|
||||||
|
{result.sectionIds.map(sid =>
|
||||||
|
<SectionIdIcon sectionId={sid} title={sid} key={sid} size={20} />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Time/Run',
|
name: 'Time/Run',
|
||||||
|