mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
Make sure section ids icons overflow nicely in hunt optimizer.
This commit is contained in:
parent
00c6dc804a
commit
d6f422335d
@ -41,8 +41,7 @@ export class OptimalMethod {
|
|||||||
// 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.
|
||||||
// For some reason this doesn't actually seem to be a problem, should probably investigate.
|
// For some reason this doesn't actually seem to be a problem, should probably investigate.
|
||||||
// TODO: Show expected value or probability per item per method.
|
// TODO: Show expected value or probability per item per method.
|
||||||
// Can be useful when you want one item "more" than the others.
|
// Can be useful when deciding which item to hunt first.
|
||||||
// TODO: order of items in results table should match order in wanted table.
|
|
||||||
// TODO: boxes.
|
// TODO: boxes.
|
||||||
class HuntOptimizerStore {
|
class HuntOptimizerStore {
|
||||||
@observable readonly wantedItems: IObservableArray<WantedItem> = observable.array();
|
@observable readonly wantedItems: IObservableArray<WantedItem> = observable.array();
|
||||||
|
@ -11,6 +11,8 @@
|
|||||||
|
|
||||||
.ho-OptimizationResultComponent-sid-col {
|
.ho-OptimizationResultComponent-sid-col {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
margin: 0 3px;
|
margin: 0 3px;
|
||||||
}
|
}
|
@ -41,10 +41,11 @@ export class OptimizationResultComponent extends React.Component {
|
|||||||
cellRenderer: (result) => (
|
cellRenderer: (result) => (
|
||||||
<div className="ho-OptimizationResultComponent-sid-col">
|
<div className="ho-OptimizationResultComponent-sid-col">
|
||||||
{result.sectionIds.map(sid =>
|
{result.sectionIds.map(sid =>
|
||||||
<SectionIdIcon sectionId={sid} title={sid} key={sid} size={20} />
|
<SectionIdIcon sectionId={sid} key={sid} size={20} />
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
|
tooltip: (result) => result.sectionIds.join(', '),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Time/Run',
|
name: 'Time/Run',
|
||||||
|
Loading…
Reference in New Issue
Block a user