Formatted time nicely.

This commit is contained in:
Daan Vanden Bosch 2019-06-12 10:24:27 +02:00
parent 0060f0c2e9
commit e183cb4751
3 changed files with 17 additions and 6 deletions

View File

@ -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',
},
];

View File

@ -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
View 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')}`;
}