From 2da17c2d7d7cb913ed7f8d2e39421399e059fa69 Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 6 Jun 2023 23:33:25 +1000 Subject: [PATCH] main: Added transactions panel --- FireWallet/MainForm.Designer.cs | 14 +++- FireWallet/MainForm.cs | 129 +++++++++++++++++++++++++++++++- 2 files changed, 141 insertions(+), 2 deletions(-) diff --git a/FireWallet/MainForm.Designer.cs b/FireWallet/MainForm.Designer.cs index b3b67fb..297588a 100644 --- a/FireWallet/MainForm.Designer.cs +++ b/FireWallet/MainForm.Designer.cs @@ -58,6 +58,7 @@ labelBalanceTotal = new Label(); labelLocked = new Label(); labelBalance = new Label(); + panelSend = new Panel(); statusStripmain.SuspendLayout(); panelaccount.SuspendLayout(); groupBoxaccount.SuspendLayout(); @@ -245,6 +246,7 @@ buttonSend.TabIndex = 1; buttonSend.Text = "Send"; buttonSend.UseVisualStyleBackColor = true; + buttonSend.Click += buttonSend_Click; // // buttonPortfolio // @@ -263,7 +265,7 @@ panelPortfolio.Controls.Add(groupBoxTransactions); panelPortfolio.Controls.Add(groupBoxinfo); panelPortfolio.Controls.Add(groupBoxbalance); - panelPortfolio.Location = new Point(120, 25); + panelPortfolio.Location = new Point(448, 170); panelPortfolio.Name = "panelPortfolio"; panelPortfolio.Size = new Size(956, 538); panelPortfolio.TabIndex = 7; @@ -363,11 +365,20 @@ labelBalance.TabIndex = 0; labelBalance.Text = "labelBalance"; // + // panelSend + // + panelSend.Location = new Point(120, 25); + panelSend.Name = "panelSend"; + panelSend.Size = new Size(200, 100); + panelSend.TabIndex = 2; + panelSend.Visible = false; + // // MainForm // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(1152, 575); + Controls.Add(panelSend); Controls.Add(panelPortfolio); Controls.Add(panelNav); Controls.Add(panelaccount); @@ -423,5 +434,6 @@ private Label labelPendingCount; private Label labelSyncPercent; private GroupBox groupBoxTransactions; + private Panel panelSend; } } \ No newline at end of file diff --git a/FireWallet/MainForm.cs b/FireWallet/MainForm.cs index 61b6ae2..d3c4098 100644 --- a/FireWallet/MainForm.cs +++ b/FireWallet/MainForm.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Net.Http; using System.Runtime.InteropServices; using System.Security.Policy; @@ -10,6 +11,7 @@ namespace FireWallet #region Variables string dir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\FireWallet\\"; Dictionary nodeSettings; + Dictionary userSettings; Dictionary theme; int Network; string account; @@ -31,6 +33,7 @@ namespace FireWallet { UpdateTheme(); LoadNode(); + LoadSettings(); // Edit the theme of the navigation panel panelNav.BackColor = ColorTranslator.FromHtml(theme["background-alt"]); @@ -48,6 +51,8 @@ namespace FireWallet // Prompt for login GetAccounts(); + + AddLog("Loaded"); } private void MainForm_Closing(object sender, FormClosingEventArgs e) { @@ -81,6 +86,7 @@ namespace FireWallet string line = sr.ReadLine(); string[] split = line.Split(':'); nodeSettings.Add(split[0].Trim(), split[1].Trim()); + } sr.Dispose(); @@ -107,6 +113,28 @@ namespace FireWallet } + private void LoadSettings() + { + if (!File.Exists(dir + "settings.txt")) + { + AddLog("Creating settings file"); + StreamWriter sw = new StreamWriter(dir + "settings.txt"); + sw.WriteLine("explorer-tx: https://niami.io/tx/"); + sw.WriteLine("explorer-addr: https://niami.io/address/"); + sw.WriteLine("explorer-block: https://niami.io/block/"); + sw.Dispose(); + } + + + StreamReader sr = new StreamReader(dir + "settings.txt"); + userSettings = new Dictionary(); + while (!sr.EndOfStream) + { + string line = sr.ReadLine(); + userSettings.Add(line.Substring(0, line.IndexOf(":")).Trim(), line.Substring(line.IndexOf(":") + 1).Trim()); + } + sr.Dispose(); + } #endregion @@ -258,6 +286,8 @@ namespace FireWallet sw.WriteLine("transparent-mode: off"); sw.WriteLine("transparency-key: main"); sw.WriteLine("transparency-percent: 90"); + sw.WriteLine("selected-bg: #000000"); + sw.WriteLine("selected-fg: #ffffff"); sw.Dispose(); AddLog("Created theme file"); @@ -539,8 +569,84 @@ namespace FireWallet AddLog("GetInfo Error"); return; } + JArray pendingTxs = JArray.Parse(APIresponse); + labelPendingCount.Text = "Unconfirmed TX: " + pendingTxs.Count.ToString(); + + + // Get TX's + APIresponse = await APIGet("wallet/" + account + "/tx/history", true); + if (APIresponse == "Error") + { + AddLog("GetInfo Error"); + return; + } JArray txs = JArray.Parse(APIresponse); - labelPendingCount.Text = "Unconfirmed TX: " + resp.Count.ToString(); + int txCount = txs.Count; + if (txCount > groupBoxTransactions.Height / 55) txCount = (int)Math.Floor(groupBoxTransactions.Height / 55.0); + Control[] tmpControls = new Control[txCount]; + for (int i = 0; i < txCount; i++) + { + // Get last tx + JObject tx = JObject.Parse(txs[txs.Count - 1 - i].ToString()); + string hash = tx["hash"].ToString(); + string date = tx["mdate"].ToString(); + + Panel tmpPanel = new Panel(); + tmpPanel.Width = groupBoxTransactions.Width - 20; + tmpPanel.Height = 50; + tmpPanel.Location = new Point(10, 20 + (i * 55)); + tmpPanel.BorderStyle = BorderStyle.FixedSingle; + tmpPanel.BackColor = ColorTranslator.FromHtml(theme["background-alt"]); + tmpPanel.ForeColor = ColorTranslator.FromHtml(theme["foreground-alt"]); + tmpPanel.Controls.Add( + new Label() + { + Text = "Date: " + date, + Location = new Point(10, 5) + } + ); + + Label labelHash = new Label() + { + Text = "Hash: " + hash.Substring(0, 10) + "..." + hash.Substring(hash.Length - 10), + AutoSize = true, + Location = new Point(10, 25), + Font = new Font(this.Font, FontStyle.Underline) + }; + labelHash.Click += (sender, e) => + { + string url = userSettings["explorer-tx"] + hash; + ProcessStartInfo psi = new ProcessStartInfo + { + FileName = url, + UseShellExecute = true + }; + Process.Start(psi); + + }; + tmpPanel.Controls.Add(labelHash); + + // Count inputs and outputs + JArray inputs = JArray.Parse(tx["inputs"].ToString()); + JArray outputs = JArray.Parse(tx["outputs"].ToString()); + int inputCount = inputs.Count; + int outputCount = outputs.Count; + + Label labelInputOutput = new Label() + { + Text = "Inputs: " + inputCount + " Outputs: " + outputCount, + AutoSize = true, + Location = new Point(300, 20) + }; + tmpPanel.Controls.Add(labelInputOutput); + + + tmpControls[i] = tmpPanel; + + + } + groupBoxTransactions.Controls.Clear(); + groupBoxTransactions.Controls.AddRange(tmpControls); } @@ -561,13 +667,34 @@ namespace FireWallet #region Nav private async void buttonPortfolio_Click(object sender, EventArgs e) { + buttonSend.BackColor = ColorTranslator.FromHtml(theme["background"]); + buttonSend.ForeColor = ColorTranslator.FromHtml(theme["foreground"]); + panelSend.Hide(); panelPortfolio.Show(); await UpdateBalance(); GetInfo(); labelBalance.Text = "Available: " + balance.ToString() + " HNS"; labelLocked.Text = "Locked: " + balanceLocked.ToString() + " HNS"; labelBalanceTotal.Text = "Total: " + (balance + balanceLocked).ToString() + " HNS"; + if (theme.ContainsKey("selected-bg") && theme.ContainsKey("selected-fg")) + { + buttonPortfolio.BackColor = ColorTranslator.FromHtml(theme["selected-bg"]); + buttonPortfolio.ForeColor = ColorTranslator.FromHtml(theme["selected-fg"]); + } } #endregion + + private void buttonSend_Click(object sender, EventArgs e) + { + panelPortfolio.Hide(); + panelSend.Show(); + buttonPortfolio.BackColor = ColorTranslator.FromHtml(theme["background"]); + buttonPortfolio.ForeColor = ColorTranslator.FromHtml(theme["foreground"]); + if (theme.ContainsKey("selected-bg") && theme.ContainsKey("selected-fg")) + { + buttonSend.BackColor = ColorTranslator.FromHtml(theme["selected-bg"]); + buttonSend.ForeColor = ColorTranslator.FromHtml(theme["selected-fg"]); + } + } } } \ No newline at end of file