buechermarkt/BuechermarktClient/BookTypes.xaml.cs
Fabian Stamm 129e0679cd Basic Implemetation of all needed function to take Books and create Students etc.
Missing is the automatic Server Identification and Signing Stuff
2017-05-18 12:57:50 +02:00

120 lines
2.9 KiB
C#

using System;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using BuechermarktClient.Models;
using System.Threading;
using MongoDB.Driver;
using System.Collections.Generic;
namespace BuechermarktClient
{
/// <summary>
/// Interaktionslogik für BookTypes.xaml
/// </summary>
public partial class BookTypes : Window
{
public Thread RefreshThread = null;
private bool ThreadRunning = true;
public bool Chooser = false;
private string _SearchField;
public string SearchField {
get
{
return _SearchField;
}
set
{
if(value != _SearchField)
{
_SearchField = value;
LoadList();
}
}
}
public BookType SelectedItem { get; private set; }
public BookTypes() : this(false) { }
public BookTypes(bool select)
{
DataContext = this;
Chooser = select;
InitializeComponent();
RefreshThread = new Thread(RefreshThreadS);
RefreshThread.Start();
RefreshThread.IsBackground = true;
Closing += BookTypes_Closing;
}
private void BookTypes_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
ThreadRunning = false;
}
public void RefreshThreadS()
{
while (ThreadRunning)
{
LoadList();
Thread.Sleep(1000);
}
}
public void LoadList()
{
var list = MainWindow.BookTypeCollection.FindSync((b)=>true).ToList();
var show = new List<BookType>();
if(SearchField != null && SearchField != String.Empty)
{
foreach(var e in list)
{
if (e.ISBN.ToLower().Contains(SearchField.ToLower()) || e.Name.ToLower().Contains(SearchField.ToLower()))
{
show.Add(e);
}
}
} else {
show = list;
}
Dispatcher.BeginInvoke(new Action(delegate (){
BookTypesList.ItemsSource = show;
}));
}
private void AddNew_Click(object sender, RoutedEventArgs e)
{
var editWindow = new BookTypesEdit(null)
{
Owner = this
};
editWindow.Show();
}
private void ListViewItem_PreviewMouseUp(object sender, MouseButtonEventArgs e)
{
if (sender is ListViewItem item && item.IsSelected)
{
SelectedItem = item.DataContext as BookType;
if (Chooser)
{
DialogResult = true;
Close();
}
else
{
var editWindow = new BookTypesEdit(item.DataContext as BookType)
{
Owner = this
};
editWindow.Show();
}
}
}
}
}