* refactor(auth): replace dashboard sessions with stateless tokens * feat(auth): harden session issuance and distributed enforcement * fix(proxy): preserve trusted proxy compatibility defaults * refactor: address dashboard auth review feedback * refactor: remove classic frontend and flatten web app
54 lines
2.0 KiB
TypeScript
Vendored
54 lines
2.0 KiB
TypeScript
Vendored
/*
|
|
Copyright (C) 2023-2026 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
// ----------------------------------------------------------------------------
|
|
// Rankings formatting helpers
|
|
// ----------------------------------------------------------------------------
|
|
|
|
/** Format a token count as `1.2B`, `42M`, `980K`, or `512`. */
|
|
export function formatTokens(value: number): string {
|
|
if (!Number.isFinite(value) || value <= 0) return '0'
|
|
if (value >= 1_000_000_000_000)
|
|
return `${(value / 1_000_000_000_000).toFixed(2)}T`
|
|
if (value >= 1_000_000_000)
|
|
return `${(value / 1_000_000_000).toFixed(value >= 10_000_000_000 ? 1 : 2)}B`
|
|
if (value >= 1_000_000)
|
|
return `${(value / 1_000_000).toFixed(value >= 10_000_000 ? 1 : 2)}M`
|
|
if (value >= 1_000)
|
|
return `${(value / 1_000).toFixed(value >= 10_000 ? 0 : 1)}K`
|
|
return value.toLocaleString()
|
|
}
|
|
|
|
/** Format a 0..1 share as a percentage with two decimals. */
|
|
export function formatShare(share: number): string {
|
|
if (!Number.isFinite(share) || share <= 0) return '0%'
|
|
if (share < 0.001) return '<0.1%'
|
|
return `${(share * 100).toFixed(share < 0.01 ? 2 : 1)}%`
|
|
}
|
|
|
|
/** Format a release date like `Oct 12, 2025`. */
|
|
export function formatReleaseDate(iso: string): string {
|
|
const ts = Date.parse(iso)
|
|
if (!Number.isFinite(ts)) return iso
|
|
return new Date(ts).toLocaleDateString(undefined, {
|
|
year: 'numeric',
|
|
month: 'short',
|
|
day: 'numeric',
|
|
})
|
|
}
|