rename to DateUtils

Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
This commit is contained in:
Sanjula Ganepola
2024-10-17 23:17:56 -04:00
parent 2b97659a33
commit 05bb015047
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
export namespace Util { export namespace DateUtils {
/** /**
* Get date time string. * Get date time string.
* *

View File

@@ -1,6 +1,6 @@
import { ThemeColor, ThemeIcon, TreeItem, TreeItemCollapsibleState } from "vscode"; import { ThemeColor, ThemeIcon, TreeItem, TreeItemCollapsibleState } from "vscode";
import { History, HistoryStatus } from "../../act"; import { History, HistoryStatus } from "../../act";
import { Util } from "../../util"; import { DateUtils } from "../../dateUtils";
import { GithubLocalActionsTreeItem } from "../githubLocalActionsTreeItem"; import { GithubLocalActionsTreeItem } from "../githubLocalActionsTreeItem";
export default class HistoryTreeItem extends TreeItem implements GithubLocalActionsTreeItem { export default class HistoryTreeItem extends TreeItem implements GithubLocalActionsTreeItem {
@@ -13,7 +13,7 @@ export default class HistoryTreeItem extends TreeItem implements GithubLocalActi
let totalDuration: string | undefined; let totalDuration: string | undefined;
if (history.date) { if (history.date) {
totalDuration = `${Util.getTimeDuration(history.date.start, history.date.end)}s`; totalDuration = `${DateUtils.getTimeDuration(history.date.start, history.date.end)}s`;
} }
this.description = totalDuration; this.description = totalDuration;
@@ -34,8 +34,8 @@ export default class HistoryTreeItem extends TreeItem implements GithubLocalActi
} }
this.tooltip = `Name: ${history.name}\n` + this.tooltip = `Name: ${history.name}\n` +
`Status: ${history.status}\n` + `Status: ${history.status}\n` +
`Started: ${history.date ? Util.getDateString(history.date.start) : 'N/A'}\n` + `Started: ${history.date ? DateUtils.getDateString(history.date.start) : 'N/A'}\n` +
`Ended: ${history.date ? Util.getDateString(history.date.end) : 'N/A'}\n` + `Ended: ${history.date ? DateUtils.getDateString(history.date.end) : 'N/A'}\n` +
(totalDuration ? `Total Duration: ${totalDuration}\n` : ``); (totalDuration ? `Total Duration: ${totalDuration}\n` : ``);
} }