mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Formatted time nicely.
This commit is contained in:
parent
0060f0c2e9
commit
e183cb4751
@ -6,6 +6,7 @@ import { EnemyNpcTypes } from "../../domain/NpcType";
|
|||||||
import { huntMethodStore } from "../../stores/HuntMethodStore";
|
import { huntMethodStore } from "../../stores/HuntMethodStore";
|
||||||
import "./MethodsComponent.css";
|
import "./MethodsComponent.css";
|
||||||
import { DataTable, Column } from "../dataTable";
|
import { DataTable, Column } from "../dataTable";
|
||||||
|
import { hoursToString } from "../time";
|
||||||
|
|
||||||
@observer
|
@observer
|
||||||
export class MethodsComponent extends React.Component {
|
export class MethodsComponent extends React.Component {
|
||||||
@ -18,9 +19,10 @@ export class MethodsComponent extends React.Component {
|
|||||||
cellValue: (method) => method.name,
|
cellValue: (method) => method.name,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Hours',
|
name: 'Time',
|
||||||
width: 50,
|
width: 50,
|
||||||
cellValue: (method) => method.time.toString(),
|
cellValue: (method) => hoursToString(method.time),
|
||||||
|
className: 'number',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ import { Item } from "../../domain";
|
|||||||
import { huntOptimizerStore, OptimizationResult } from "../../stores/HuntOptimizerStore";
|
import { huntOptimizerStore, OptimizationResult } from "../../stores/HuntOptimizerStore";
|
||||||
import { Column, DataTable } from "../dataTable";
|
import { Column, DataTable } from "../dataTable";
|
||||||
import "./OptimizationResultComponent.less";
|
import "./OptimizationResultComponent.less";
|
||||||
|
import { hoursToString } from "../time";
|
||||||
|
|
||||||
@observer
|
@observer
|
||||||
export class OptimizationResultComponent extends React.Component {
|
export class OptimizationResultComponent extends React.Component {
|
||||||
@ -39,10 +40,9 @@ export class OptimizationResultComponent extends React.Component {
|
|||||||
cellValue: (result) => result.sectionId,
|
cellValue: (result) => result.sectionId,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Hours/Run',
|
name: 'Time/Run',
|
||||||
width: 85,
|
width: 80,
|
||||||
cellValue: (result) => result.methodTime.toFixed(2),
|
cellValue: (result) => hoursToString(result.methodTime),
|
||||||
tooltip: (result) => result.methodTime.toString(),
|
|
||||||
className: 'number',
|
className: 'number',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
9
src/ui/time.ts
Normal file
9
src/ui/time.ts
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/**
|
||||||
|
* @param hours can be fractional.
|
||||||
|
* @returns a string of the shape ##:##.
|
||||||
|
*/
|
||||||
|
export function hoursToString(hours: number): string {
|
||||||
|
const h = Math.floor(hours);
|
||||||
|
const m = Math.round(60 * (hours - h));
|
||||||
|
return `${h.toString().padStart(2, '0')}:${m.toString().padStart(2, '0')}`;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user