[Studio] Implement format utility functions - #660
Open
zhaohai666 wants to merge 1 commit into
Open
Conversation
…ay, percent) Replace TODO stub implementations in format.ts with full-featured utilities: - formatDateTime / formatDate: proper date formatting with padding - formatBytes: human-readable 1024-based byte formatting - formatNumber: thousands separator formatting - formatDelay: duration formatting with i18n support (zh/en) - formatPercent: fixed-decimal percentage formatting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replace TODO stub implementations in format.ts with full-featured utility
functions used across the dashboard.
formatDateTime(date): Format to 'YYYY-MM-DD HH:mm:ss' with proper paddingformatDate(date): Format to 'YYYY-MM-DD' (was a TODO returning raw string)formatBytes(bytes, decimals?): Human-readable 1024-based formatting(was a TODO returning raw 'X B'), handles zero and negative values
formatNumber(num): Thousands separator formatting (e.g. 1234567 → '1,234,567')formatDelay(seconds, lang?): Duration formatting with i18n support(zh: "22小时55分钟", en: "22h 55m")
formatPercent(value, decimals?): Fixed-decimal percentage formattingAll functions are pure with no side effects, making them easy to test and reuse.
Test plan