mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
703847c9ba
* feat: more hype chat * Add `std::chrono::seconds` overload to formatTime * Move & rename it to HypeChat + some other mini things * Add changelog entry * fix formattime test --------- Co-authored-by: Rasmus Karlsson <rasmus.karlsson@pajlada.com>
75 lines
1.5 KiB
C++
75 lines
1.5 KiB
C++
#include "util/FormatTime.hpp"
|
|
|
|
#include <algorithm>
|
|
#include <limits>
|
|
|
|
namespace chatterino {
|
|
|
|
namespace {
|
|
|
|
void appendDuration(int count, QChar &&suffix, QString &out)
|
|
{
|
|
if (!out.isEmpty())
|
|
{
|
|
out.append(' ');
|
|
}
|
|
out.append(QString::number(count));
|
|
out.append(suffix);
|
|
}
|
|
|
|
} // namespace
|
|
|
|
QString formatTime(int totalSeconds)
|
|
{
|
|
QString res;
|
|
|
|
int seconds = totalSeconds % 60;
|
|
int timeoutMinutes = totalSeconds / 60;
|
|
int minutes = timeoutMinutes % 60;
|
|
int timeoutHours = timeoutMinutes / 60;
|
|
int hours = timeoutHours % 24;
|
|
int days = timeoutHours / 24;
|
|
if (days > 0)
|
|
{
|
|
appendDuration(days, 'd', res);
|
|
}
|
|
if (hours > 0)
|
|
{
|
|
appendDuration(hours, 'h', res);
|
|
}
|
|
if (minutes > 0)
|
|
{
|
|
appendDuration(minutes, 'm', res);
|
|
}
|
|
if (seconds > 0)
|
|
{
|
|
appendDuration(seconds, 's', res);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
QString formatTime(QString totalSecondsString)
|
|
{
|
|
bool ok = true;
|
|
int totalSeconds(totalSecondsString.toInt(&ok));
|
|
if (ok)
|
|
{
|
|
return formatTime(totalSeconds);
|
|
}
|
|
|
|
return "n/a";
|
|
}
|
|
|
|
QString formatTime(std::chrono::seconds totalSeconds)
|
|
{
|
|
auto count = totalSeconds.count();
|
|
|
|
return formatTime(static_cast<int>(std::clamp(
|
|
count,
|
|
static_cast<std::chrono::seconds::rep>(std::numeric_limits<int>::min()),
|
|
static_cast<std::chrono::seconds::rep>(
|
|
std::numeric_limits<int>::max()))));
|
|
}
|
|
|
|
} // namespace chatterino
|