mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +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 "./MethodsComponent.css";
|
||||
import { DataTable, Column } from "../dataTable";
|
||||
import { hoursToString } from "../time";
|
||||
|
||||
@observer
|
||||
export class MethodsComponent extends React.Component {
|
||||
@ -18,9 +19,10 @@ export class MethodsComponent extends React.Component {
|
||||
cellValue: (method) => method.name,
|
||||
},
|
||||
{
|
||||
name: 'Hours',
|
||||
name: 'Time',
|
||||
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 { Column, DataTable } from "../dataTable";
|
||||
import "./OptimizationResultComponent.less";
|
||||
import { hoursToString } from "../time";
|
||||
|
||||
@observer
|
||||
export class OptimizationResultComponent extends React.Component {
|
||||
@ -39,10 +40,9 @@ export class OptimizationResultComponent extends React.Component {
|
||||
cellValue: (result) => result.sectionId,
|
||||
},
|
||||
{
|
||||
name: 'Hours/Run',
|
||||
width: 85,
|
||||
cellValue: (result) => result.methodTime.toFixed(2),
|
||||
tooltip: (result) => result.methodTime.toString(),
|
||||
name: 'Time/Run',
|
||||
width: 80,
|
||||
cellValue: (result) => hoursToString(result.methodTime),
|
||||
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