From d4b2c4135ec0d0d7fe60d061ead70d2a8fa9fb5d Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 14 Sep 2022 18:03:43 -0700 Subject: feat(modules): create cryptocurrency dashboard --- content/blogs/news/20220914.gmi | 10 +++- content/json/cryptocurrency_referrals.json | 32 +++++++++++++ content/json/stock_market_referrals.json | 22 +++++++++ content/json/stock_referrals.json | 27 ----------- src/modules.rs | 18 ++++++- src/modules/cryptocurrency.rs | 77 ++++++++++++++++++++++++++++++ src/modules/stocks.rs | 20 ++++---- 7 files changed, 168 insertions(+), 38 deletions(-) create mode 100644 content/json/cryptocurrency_referrals.json create mode 100644 content/json/stock_market_referrals.json delete mode 100644 content/json/stock_referrals.json create mode 100644 src/modules/cryptocurrency.rs diff --git a/content/blogs/news/20220914.gmi b/content/blogs/news/20220914.gmi index e57d4c8..c081ab1 100644 --- a/content/blogs/news/20220914.gmi +++ b/content/blogs/news/20220914.gmi @@ -5,4 +5,12 @@ ## Miscellaneous -* Remove trailing whitespace from news entries \ No newline at end of file +* Remove trailing whitespace from news entries + +## Cryptocurrency + +* Create cryptocurrency dashboard + referrals page + +## Stock Market Dashboard + +* Add links to the cryptocurrency dashboard \ No newline at end of file diff --git a/content/json/cryptocurrency_referrals.json b/content/json/cryptocurrency_referrals.json new file mode 100644 index 0000000..964c6a6 --- /dev/null +++ b/content/json/cryptocurrency_referrals.json @@ -0,0 +1,32 @@ +[ + { + "name": "TradingView", + "description": "Easily track and analyse all financial markets", + "url": "https://www.tradingview.com/gopro/?share_your_love=Fuwn" + }, + { + "name": "Webull", + "description": "Invest in stocks, forex, cryptocurrencies, and more, all on one platform", + "url": "https://act.webull.com/on/teiSmEbEldwm/m32/inviteUs/" + }, + { + "name": "Strike", + "description": "Send and receive money instantly. Buy bitcoin. Get paid in bitcoin.", + "url": "https://invite.strike.me/PWQW0K" + }, + { + "name": "Cash App", + "description": "The easy way to send, spend, bank, and invest", + "url": "https://cash.app/app/JBQKJJZ" + }, + { + "name": "FTX US", + "description": "Cryptocurrency Derivatives Exchange", + "url": "https://ftx.us/home/#a=fuwn" + }, + { + "name": "Coinbase", + "description": "Buy and Sell Bitcoin, Ethereum, and more with trust", + "url": "https://coinbase.com/join/nefjwn" + } +] diff --git a/content/json/stock_market_referrals.json b/content/json/stock_market_referrals.json new file mode 100644 index 0000000..2161ea7 --- /dev/null +++ b/content/json/stock_market_referrals.json @@ -0,0 +1,22 @@ +[ + { + "name": "TradingView", + "description": "Easily track and analyse all financial markets", + "url": "https://www.tradingview.com/gopro/?share_your_love=Fuwn" + }, + { + "name": "Webull", + "description": "Invest in stocks, forex, cryptocurrencies, and more, all on one platform", + "url": "https://act.webull.com/on/teiSmEbEldwm/m32/inviteUs/" + }, + { + "name": "Cash App", + "description": "The easy way to send, spend, bank, and invest", + "url": "https://cash.app/app/JBQKJJZ" + }, + { + "name": "TIKR Terminal", + "description": "Best Free Fundamental Screener to Filter 100k+ Stocks Worldwide", + "url": "https://app.tikr.com/register?ref=ahy1qu" + } +] diff --git a/content/json/stock_referrals.json b/content/json/stock_referrals.json deleted file mode 100644 index 6cf45f5..0000000 --- a/content/json/stock_referrals.json +++ /dev/null @@ -1,27 +0,0 @@ -[ - { - "name": "TradingView", - "description": "Easily track and analyse all financial markets", - "url": "https://www.tradingview.com/gopro/?share_your_love=Fuwn" - }, - { - "name": "Webull", - "description": "Invest in stocks, forex, cryptocurrencies, and more, all on one platform", - "url": "https://act.webull.com/on/teiSmEbEldwm/m32/inviteUs/" - }, - { - "name": "Strike", - "description": "Send and receive money instantly. Buy bitcoin. Get paid in bitcoin.", - "url": "https://invite.strike.me/PWQW0K" - }, - { - "name": "Cash App", - "description": "The easy way to send, spend, bank, and invest", - "url": "https://cash.app/app/JBQKJJZ" - }, - { - "name": "TIKR Terminal", - "description": "Best Free Fundamental Screener to Filter 100k+ Stocks Worldwide", - "url": "https://app.tikr.com/register?ref=ahy1qu" - } -] diff --git a/src/modules.rs b/src/modules.rs index c9a5f1b..2d0b678 100644 --- a/src/modules.rs +++ b/src/modules.rs @@ -23,6 +23,7 @@ mod random; mod remarks; // mod robots; mod api; +mod cryptocurrency; mod router; pub mod search; mod sitemap; @@ -33,7 +34,20 @@ mod uptime; pub fn module(router: &mut windmark::Router) { crate::statelesses!( - router, uptime, sitemap, search, remarks, blog, random, r#static, router, - skills, contact, interests, api, stocks, + router, + uptime, + sitemap, + search, + remarks, + blog, + random, + r#static, + router, + skills, + contact, + interests, + api, + stocks, + cryptocurrency, ); } diff --git a/src/modules/cryptocurrency.rs b/src/modules/cryptocurrency.rs new file mode 100644 index 0000000..bba0e58 --- /dev/null +++ b/src/modules/cryptocurrency.rs @@ -0,0 +1,77 @@ +// This file is part of Locus . +// Copyright (C) 2022-2022 Fuwn +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, version 3. +// +// 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 +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// Copyright (C) 2022-2022 Fuwn +// SPDX-License-Identifier: GPL-3.0-only + +use once_cell::sync::Lazy; +use serde::Deserialize; + +use crate::{route::track_mount, success}; + +static REFERRALS: Lazy> = Lazy::new(|| { + serde_json::from_str(include_str!( + "../../content/json/cryptocurrency_referrals.json" + )) + .unwrap() +}); + +#[derive(Deserialize)] +struct Referral { + name: String, + description: String, + url: String, +} + +pub fn module(router: &mut windmark::Router) { + track_mount( + router, + "/cryptocurrency/referrals", + "Want to start investing in cryptocurrency? Support me by using one of my \ + referral links!", + Box::new(|context| { + success!( + format!( + "# Referrals\n\n=> /cryptocurrency Home\n=> /stocks Stock Market \ + Dashboard\n\nWant to start investing? Support me by using one of \ + my referral links!\n\n{}", + REFERRALS + .iter() + .map(|r| { + format!("## {}\n\n{}\n\n=> {} {0}", r.name, r.description, r.url) + }) + .collect::>() + .join("\n") + ), + context + ) + }), + ); + + track_mount( + router, + "/cryptocurrency", + "Relevant information regarding cryptocurrency investing", + Box::new(|context| { + success!( + format!( + "# Cryptocurrency\n\n=> /stocks Stock Market Dashboard\n=> \ + /cryptocurrency/referrals Referrals", + ), + context + ) + }), + ); +} diff --git a/src/modules/stocks.rs b/src/modules/stocks.rs index 0d6950c..8de72c6 100644 --- a/src/modules/stocks.rs +++ b/src/modules/stocks.rs @@ -22,8 +22,10 @@ use serde::Deserialize; use crate::{route::track_mount, success}; static REFERRALS: Lazy> = Lazy::new(|| { - serde_json::from_str(include_str!("../../content/json/stock_referrals.json")) - .unwrap() + serde_json::from_str(include_str!( + "../../content/json/stock_market_referrals.json" + )) + .unwrap() }); #[derive(Deserialize)] @@ -104,13 +106,14 @@ pub fn module(router: &mut windmark::Router) { track_mount( router, "/stocks/referrals", - "Want to start investing? Support me by using one of my referral links!", + "Want to start investing in the stock market? Support me by using one of \ + my referral links!", Box::new(|context| { success!( format!( - "# Referrals\n\n=> /stocks Home\n=> /stocks/search?action=go \ - Search!\n\nWant to start investing? Support me by using one of my \ - referral links!\n\n{}", + "# Referrals\n\n=> /stocks Home\n=> /cryptocurrency Cryptocurrency \ + Dashboard\n=> /stocks/search?action=go Search!\n\nWant to start \ + investing? Support me by using one of my referral links!\n\n{}", REFERRALS .iter() .map(|r| { @@ -131,7 +134,7 @@ pub fn module(router: &mut windmark::Router) { Box::new(|context| { success!( format!( - "# Stocks\n\n=> /stocks/search Symbol Search\n=> /stocks/referrals Referrals\n\n## Popular \ + "# The Stock Market\n\n=> /stocks/search Symbol Search\n=> /stocks/referrals Referrals\n=> /cryptocurrency Cryptocurrency Dashboard\n\n## Popular \ Symbols\n\n### AAPL\n\n{}\n\n### TSLA\n\n{}\n\n## Credits\n\nFinancial data provided by\n\n=> https://finnhub.io/ Finnhub", symbol_to_string("AAPL"), symbol_to_string("TSLA") @@ -153,7 +156,8 @@ pub fn module(router: &mut windmark::Router) { } let mut response = format!( - "# {}\n\n=> /stocks Home\n=> /stocks/search?action=go Search!", + "# {}\n\n=> /stocks Home\n=> /cryptocurrency Cryptocurrency \ + Dashboard\n=> /stocks/search?action=go Search!", symbol ); -- cgit v1.2.3