-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApplication.cs
98 lines (81 loc) · 3.22 KB
/
Application.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Newtonsoft.Json;
using EB_Utility;
namespace GroceryExpenseTracker
{
public partial class Application : Form
{
public string purchaseDataFile { get; } = "purchase_data.json";
public Model.PurchaseHistory purchaseHistory = null;
public void LoadPurchaseData()
{
if(purchaseHistory == null)
purchaseHistory = JsonConvert.DeserializeObject<Model.PurchaseHistory>(File.ReadAllText(purchaseDataFile));
if(purchaseHistory.History.Count > 0)
{
purchaseHistory.History = purchaseHistory.History.OrderByDescending(elem => elem.Date).ToList();
btnShowEntry.Enabled = true;
btnExpenseChart.Enabled = true;
cbSelectEntry.Items.Clear();
for(int i=0; i < purchaseHistory.History.Count; i++)
{
Model.PurchaseList purchaseList = purchaseHistory.History[i];
ComboBoxItem item = new ComboBoxItem();
item.Text = purchaseList.Date.ToString();
item.Value = purchaseList.Date.ToString();
cbSelectEntry.Items.Add(item);
cbSelectEntry.SelectedIndex = 0;
}
}
else
{
btnShowEntry.Enabled = false;
btnExpenseChart.Enabled = false;
cbSelectEntry.DataSource = null;
cbSelectEntry.Items.Clear();
}
}
private void CreateDefaultPurchaseDataFile()
{
if(File.Exists(purchaseDataFile)) return;
Model.PurchaseHistory purchaseHistory = new Model.PurchaseHistory();
purchaseHistory.Save(purchaseDataFile);
}
private void DisplayPurchaseListWindow(Model.PurchaseList purchaseList = null)
{
var purchaseListPreviewWindow = new PurchaseListWindow(this, purchaseList);
purchaseListPreviewWindow.Show();
}
public Application()
{
InitializeComponent();
CreateDefaultPurchaseDataFile();
LoadPurchaseData();
Settings.defaultSettings.Add(new KeyValuePair<string, string>(SettingsUtil.GetCurrencySettingStr(), "₺"));
Settings.Load();
}
private void btnShowEntry_Click(object sender, EventArgs e)
{
Model.PurchaseList purchaseList = purchaseHistory.History[cbSelectEntry.SelectedIndex];
DisplayPurchaseListWindow(purchaseList);
}
private void btnAddEntry_Click(object sender, EventArgs e)
{
DisplayPurchaseListWindow(null);
}
private void btnExpenseChart_Click(object sender, EventArgs e)
{
var chartViewWindow = new ChartViewWindow(this);
chartViewWindow.Show();
}
}
}