mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Add number format utility
This commit is contained in:
parent
6794f7d6ba
commit
9f19d729d1
3 changed files with 12 additions and 6 deletions
|
@ -136,7 +136,7 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec<Pos
|
|||
community: val(post, "subreddit").await,
|
||||
body: val(post, "body").await,
|
||||
author: val(post, "author").await,
|
||||
score: if score > 1000 { format!("{}k", score / 1000) } else { score.to_string() },
|
||||
score: format_score(score),
|
||||
post_type: "link".to_string(),
|
||||
media: img,
|
||||
url: val(post, "permalink").await,
|
||||
|
@ -202,3 +202,9 @@ pub async fn request(url: String) -> Result<serde_json::Value, &'static str> {
|
|||
Ok(json)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// FORMATTING
|
||||
pub fn format_num(num: i64) -> String {
|
||||
return if num > 1000 { format!("{}k", num / 1000) } else { num.to_string() };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue