2020-06-27 11:24:49 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
|
|
|
|
import { I18n } from "./i18n";
|
|
|
|
|
2020-06-27 14:10:56 +02:00
|
|
|
export const SECOND = 1.0;
|
|
|
|
export const MINUTE = 60.0 * SECOND;
|
|
|
|
export const HOUR = 60.0 * MINUTE;
|
|
|
|
export const DAY = 24.0 * HOUR;
|
|
|
|
export const MONTH = 30.0 * DAY;
|
|
|
|
export const YEAR = 12.0 * MONTH;
|
2020-06-27 11:24:49 +02:00
|
|
|
|
|
|
|
enum TimespanUnit {
|
|
|
|
Seconds,
|
|
|
|
Minutes,
|
|
|
|
Hours,
|
|
|
|
Days,
|
|
|
|
Months,
|
|
|
|
Years,
|
|
|
|
}
|
|
|
|
|
|
|
|
function unitName(unit: TimespanUnit): string {
|
|
|
|
switch (unit) {
|
|
|
|
case TimespanUnit.Seconds:
|
|
|
|
return "seconds";
|
|
|
|
case TimespanUnit.Minutes:
|
|
|
|
return "minutes";
|
|
|
|
case TimespanUnit.Hours:
|
|
|
|
return "hours";
|
|
|
|
case TimespanUnit.Days:
|
|
|
|
return "days";
|
|
|
|
case TimespanUnit.Months:
|
|
|
|
return "months";
|
|
|
|
case TimespanUnit.Years:
|
|
|
|
return "years";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function naturalUnit(secs: number): TimespanUnit {
|
|
|
|
secs = Math.abs(secs);
|
|
|
|
if (secs < MINUTE) {
|
|
|
|
return TimespanUnit.Seconds;
|
|
|
|
} else if (secs < HOUR) {
|
|
|
|
return TimespanUnit.Minutes;
|
|
|
|
} else if (secs < DAY) {
|
|
|
|
return TimespanUnit.Hours;
|
|
|
|
} else if (secs < MONTH) {
|
|
|
|
return TimespanUnit.Days;
|
|
|
|
} else if (secs < YEAR) {
|
|
|
|
return TimespanUnit.Months;
|
|
|
|
} else {
|
|
|
|
return TimespanUnit.Years;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function unitAmount(unit: TimespanUnit, secs: number): number {
|
|
|
|
switch (unit) {
|
|
|
|
case TimespanUnit.Seconds:
|
|
|
|
return secs;
|
|
|
|
case TimespanUnit.Minutes:
|
|
|
|
return secs / MINUTE;
|
|
|
|
case TimespanUnit.Hours:
|
|
|
|
return secs / HOUR;
|
|
|
|
case TimespanUnit.Days:
|
|
|
|
return secs / DAY;
|
|
|
|
case TimespanUnit.Months:
|
|
|
|
return secs / MONTH;
|
|
|
|
case TimespanUnit.Years:
|
|
|
|
return secs / YEAR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 14:10:56 +02:00
|
|
|
function unitAmountRounded(unit: TimespanUnit, secs: number): number {
|
|
|
|
const value = unitAmount(unit, secs);
|
|
|
|
if (unit === TimespanUnit.Seconds || unit === TimespanUnit.Days) {
|
|
|
|
return Math.round(value);
|
|
|
|
} else {
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-27 11:24:49 +02:00
|
|
|
export function studiedToday(i18n: I18n, cards: number, secs: number): string {
|
|
|
|
const unit = naturalUnit(secs);
|
|
|
|
const amount = unitAmount(unit, secs);
|
|
|
|
const name = unitName(unit);
|
|
|
|
|
|
|
|
let secsPer = 0;
|
|
|
|
if (cards > 0) {
|
|
|
|
secsPer = secs / cards;
|
|
|
|
}
|
|
|
|
return i18n.tr(i18n.TR.STATISTICS_STUDIED_TODAY, {
|
|
|
|
cards,
|
|
|
|
amount,
|
|
|
|
unit: name,
|
|
|
|
"secs-per-card": secsPer,
|
|
|
|
});
|
|
|
|
}
|
2020-06-27 14:10:56 +02:00
|
|
|
|
|
|
|
/// Describe the given seconds using the largest appropriate unit.
|
|
|
|
/// If precise is true, show to two decimal places, eg
|
|
|
|
/// eg 70 seconds -> "1.17 minutes"
|
|
|
|
/// If false, seconds and days are shown without decimals.
|
|
|
|
export function timeSpan(i18n: I18n, seconds: number, precise = true): string {
|
|
|
|
const unit = naturalUnit(seconds);
|
|
|
|
let amount: number;
|
|
|
|
if (precise) {
|
|
|
|
amount = unitAmount(unit, seconds);
|
|
|
|
} else {
|
|
|
|
amount = unitAmountRounded(unit, seconds);
|
|
|
|
}
|
|
|
|
let key: number;
|
|
|
|
switch (unit) {
|
|
|
|
case TimespanUnit.Seconds:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_SECONDS;
|
|
|
|
break;
|
|
|
|
case TimespanUnit.Minutes:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_MINUTES;
|
|
|
|
break;
|
|
|
|
case TimespanUnit.Hours:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_HOURS;
|
|
|
|
break;
|
|
|
|
case TimespanUnit.Days:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_DAYS;
|
|
|
|
break;
|
|
|
|
case TimespanUnit.Months:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_MONTHS;
|
|
|
|
break;
|
|
|
|
case TimespanUnit.Years:
|
|
|
|
key = i18n.TR.SCHEDULING_TIME_SPAN_YEARS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return i18n.tr(key, { amount });
|
|
|
|
}
|