-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml.cs
262 lines (175 loc) · 5.82 KB
/
MainPage.xaml.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
namespace LibraryOne;
using LibraryOne.DataBase;
using LibraryOne.BookClass;
using LibraryOne.UserClass;
using MySqlConnector;
using System.Collections.ObjectModel;
using System.Threading.Tasks;
using System;
using System.Globalization;
public partial class MainPage : ContentPage
{
// sets the Database property to class type Sqldatabase
public SqlDatabase Database { get; set; }
//Lists
List<Children> ChildrenBooks = new();
List<Mystery> MysteryBooks = new();
List<Romance> RomanceBooks = new();
List<Science> ScienceBooks = new();
List<Customer> Customers = new();
List<Librarian> Librarians = new();
List<Book> Allbooks = new();
// picker for found books
ObservableCollection<Book> Foundbooks = new ObservableCollection<Book>();
// Added for picker function in checkout page
private Book selectedBook;
public Book SelectedBook
{
get { return selectedBook; }
set
{
selectedBook = value;
OnPropertyChanged();
}
}
public MainPage()
{
InitializeComponent();
BindingContext = this;
// inialize and create sqldatabase object/class
Database = new SqlDatabase();
// calls open method in sqldatabase class
Database.Open();
// calls methods in sql data base class and stores values into the lists
Customers = Database.LoadCustomers();
Librarians = Database.LoadLibrarians();
ChildrenBooks = Database.LoadChildrenBooks();
Allbooks.AddRange(ChildrenBooks);
MysteryBooks = Database.LoadMysteryBooks();
Allbooks.AddRange(MysteryBooks);
RomanceBooks = Database.LoadRomanceBooks();
Allbooks.AddRange(RomanceBooks);
ScienceBooks = Database.LoadScienceBooks();
Allbooks.AddRange(ScienceBooks);
// found book picker item source = observable collection
BookPicker.ItemsSource = Foundbooks;
}
// Picker selected index to find book selected
private void Picker_SelectedIndexChanged(object sender, EventArgs e)
{
Picker picker = (Picker)sender;
int selectedIndex = picker.SelectedIndex;
if (selectedIndex >= 0 && selectedIndex < Foundbooks.Count)
{
SelectedBook = Foundbooks[selectedIndex];
}
}
// Go to checkout page
private async void GoToCheckoutPage(object sender, EventArgs e)
{
if (selectedBook == null)
{
DisplayAlert("Ooops", "Please make sure to select a book to checkout", "OK");
}
else
{
await Navigation.PushAsync(new CheckoutPage(SelectedBook));
}
}
// on search button clicked calls search method
public void Button_ClickedSearch(System.Object sender, System.EventArgs e)
{
// clears found book collection so picker is cleared each press
Foundbooks.Clear();
// calls search method
SearchBook();
}
// Search for book
public async void SearchBook()
{
// sets input feild text as varible and call capitalize frist letter of each word method
string BookTitleSearch = CapitalizeFirstLetter(SearchTitle.Text);
string BookAuthorFNSearch = CapitalizeFirstLetter(SearchAuthorFirstName.Text);
string BookAuthorLNSearch = CapitalizeFirstLetter(SearchAuthorLastName.Text);
// Go to checkout page
private async void GoToCheckoutPage(object sender, EventArgs e)
{
if (SelectedBook == null)
{
await DisplayAlert("Ooops", "Please make sure to select a book to checkout", "OK");
}
else
{
await Navigation.PushAsync(new CheckoutPage(SelectedBook));
}
}
try // exceptions for is search is null or if author first & last name are not filled out
{
if (string.IsNullOrEmpty(BookTitleSearch) & string.IsNullOrEmpty(BookAuthorFNSearch) & string.IsNullOrEmpty(BookAuthorLNSearch))
{
throw new InvalidDataException();
}
else if (!string.IsNullOrEmpty(BookTitleSearch) & !string.IsNullOrEmpty(BookAuthorFNSearch) & string.IsNullOrEmpty(BookAuthorLNSearch))
{
throw new ArgumentException();
}
else if (!string.IsNullOrEmpty(BookTitleSearch) & string.IsNullOrEmpty(BookAuthorFNSearch) & !string.IsNullOrEmpty(BookAuthorLNSearch))
{
throw new ArgumentException();
}
else if (string.IsNullOrEmpty(BookTitleSearch) & !string.IsNullOrEmpty(BookAuthorFNSearch) & string.IsNullOrEmpty(BookAuthorLNSearch))
{
throw new ArgumentException();
}
else if (string.IsNullOrEmpty(BookTitleSearch) & string.IsNullOrEmpty(BookAuthorFNSearch) & !string.IsNullOrEmpty(BookAuthorLNSearch))
{
throw new ArgumentException();
}
}
catch (InvalidDataException)
{
await DisplayAlert("Alert", "Search fields cannot be empty", "OK");
}
catch (ArgumentException)
{
await DisplayAlert("Alert", "Must enter author first & last name", "OK");
}
// look for a match in the books list after input is filled out
// exception will throw error if no match is found
int bookCounter = 0;
try
{
if (!string.IsNullOrEmpty(BookTitleSearch) || (!string.IsNullOrEmpty(BookAuthorFNSearch) & !string.IsNullOrEmpty(BookAuthorLNSearch)))
{
foreach (Book book in Allbooks)
{
if (BookTitleSearch == book.Title || (BookAuthorFNSearch == book.AuthorFirstName & BookAuthorLNSearch == book.AuthorLastName))
{
//string DisplayBook = $"ISBN: {book.Isbn}, Title: {book.Title}, Author: {book.AuthorFirstName} {book.AuthorLastName}";
Foundbooks.Add(book);
bookCounter++;
}
}
if (bookCounter == 0)
{
throw new ArgumentException();
}
BookPicker.SelectedIndex = 0;
}
}
catch (ArgumentException)
{
await DisplayAlert("Alert", "Could not find that book or author", "Search Again");
}
}
// Capitalizes first letter of each word for easier input and interaction with database values
static string CapitalizeFirstLetter(string input)
{
if (string.IsNullOrEmpty(input)) // couldnt get exceptions to work without this if
{
return string.Empty;
}
TextInfo textInfo = CultureInfo.CurrentCulture.TextInfo;
return textInfo.ToTitleCase(input);
}
}