256 lines
9.0 KiB
C#
256 lines
9.0 KiB
C#
using Billing.Models;
|
|
using Billing.Store;
|
|
using Billing.UI;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Xamarin.Essentials;
|
|
using Xamarin.Forms;
|
|
using Resource = Billing.Languages.Resource;
|
|
|
|
namespace Billing.Views
|
|
{
|
|
public partial class BillPage : BillingPage
|
|
{
|
|
private static readonly BindableProperty SelectedDateProperty = Helper.Create<DateTime, BillPage>(nameof(SelectedDate), propertyChanged: OnSelectedDateChanged);
|
|
private static readonly BindableProperty BillsProperty = Helper.Create<List<UIBill>, BillPage>(nameof(Bills));
|
|
private static readonly BindableProperty NoBillsProperty = Helper.Create<bool, BillPage>(nameof(NoBills), defaultValue: true);
|
|
private static readonly BindableProperty IncomeProperty = Helper.Create<decimal, BillPage>(nameof(Income));
|
|
private static readonly BindableProperty SpendingProperty = Helper.Create<decimal, BillPage>(nameof(Spending));
|
|
private static readonly BindableProperty BalanceProperty = Helper.Create<decimal, BillPage>(nameof(Balance));
|
|
|
|
private static void OnSelectedDateChanged(BillPage page, DateTime old, DateTime @new)
|
|
{
|
|
page.titleDatePicker.Unfocus();
|
|
}
|
|
|
|
public DateTime SelectedDate
|
|
{
|
|
get => (DateTime)GetValue(SelectedDateProperty);
|
|
set => SetValue(SelectedDateProperty, value);
|
|
}
|
|
public List<UIBill> Bills
|
|
{
|
|
get => (List<UIBill>)GetValue(BillsProperty);
|
|
set => SetValue(BillsProperty, value);
|
|
}
|
|
public bool NoBills => (bool)GetValue(NoBillsProperty);
|
|
public decimal Income => (decimal)GetValue(IncomeProperty);
|
|
public decimal Spending => (decimal)GetValue(SpendingProperty);
|
|
public decimal Balance => (decimal)GetValue(BalanceProperty);
|
|
|
|
public Command TitleDateTap { get; }
|
|
public Command TitleLongPressed { get; }
|
|
public Command EditBilling { get; }
|
|
public Command DeleteBilling { get; }
|
|
|
|
public BillPage()
|
|
{
|
|
TitleDateTap = new Command(OnTitleDateTapped);
|
|
TitleLongPressed = new Command(OnTitleDateLongPressed);
|
|
EditBilling = new Command(OnEditBilling);
|
|
DeleteBilling = new Command(OnDeleteBilling);
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnLoaded()
|
|
{
|
|
billingDate.SetDateTime(DateTime.Today);
|
|
}
|
|
|
|
private void OnDateSelected(object sender, DateEventArgs e)
|
|
{
|
|
SelectedDate = e.Date;
|
|
|
|
Task.Run(() =>
|
|
{
|
|
var bills = App.Bills.Where(b => Helper.IsSameDay(b.CreateTime, e.Date));
|
|
Bills = new List<UIBill>(bills.OrderBy(b => b.CreateTime).Select(b => Helper.WrapBill(b)));
|
|
RefreshBalance(Bills);
|
|
MainThread.BeginInvokeOnMainThread(async () => await scrollView.ScrollToAsync(0, 0, true));
|
|
});
|
|
}
|
|
|
|
private void RefreshBalance(List<UIBill> bills)
|
|
{
|
|
SetValue(NoBillsProperty, bills.Count == 0);
|
|
var income = bills.Where(b => b.Amount > 0).Sum(b => b.Amount);
|
|
var spending = -bills.Where(b => b.Amount < 0).Sum(b => b.Amount);
|
|
SetValue(IncomeProperty, income);
|
|
SetValue(SpendingProperty, spending);
|
|
SetValue(BalanceProperty, income - spending);
|
|
}
|
|
|
|
private void UpdateBill(UIBill bill)
|
|
{
|
|
var category = App.Categories.FirstOrDefault(c => c.Id == bill.Bill.CategoryId);
|
|
bill.Icon = category?.Icon ?? Definition.DefaultIcon;
|
|
bill.TintColor = category?.TintColor ?? Definition.TransparentColor;
|
|
bill.Name = bill.Bill.Name;
|
|
bill.DateCreation = bill.Bill.CreateTime;
|
|
bill.Amount = bill.Bill.Amount;
|
|
bill.Wallet = App.Accounts.FirstOrDefault(a => a.Id == bill.Bill.WalletId)?.Name;
|
|
}
|
|
|
|
private void OnTitleDateTapped()
|
|
{
|
|
titleDatePicker.Focus();
|
|
}
|
|
|
|
private void TitlePicker_DateSelected(object sender, DateChangedEventArgs e)
|
|
{
|
|
if (e.NewDate.Year > 1900)
|
|
{
|
|
billingDate.SetDateTime(e.NewDate);
|
|
}
|
|
}
|
|
|
|
private void OnTitleDateLongPressed()
|
|
{
|
|
billingDate.SetDateTime(DateTime.Today);
|
|
}
|
|
|
|
private async void OnEditBilling(object o)
|
|
{
|
|
if (Tap.IsBusy)
|
|
{
|
|
return;
|
|
}
|
|
using (Tap.Start())
|
|
{
|
|
AddBillPage page;
|
|
if (o is UIBill bill)
|
|
{
|
|
page = new AddBillPage(bill.Bill);
|
|
}
|
|
else
|
|
{
|
|
if (App.Accounts.Count == 0)
|
|
{
|
|
await this.ShowMessage(Resource.NeedAccount);
|
|
await Shell.Current.GoToAsync("//Accounts");
|
|
return;
|
|
}
|
|
page = new AddBillPage(SelectedDate);
|
|
}
|
|
page.BillChecked += OnBillChecked;
|
|
await Navigation.PushAsync(page);
|
|
}
|
|
}
|
|
|
|
private async void OnDeleteBilling(object o)
|
|
{
|
|
if (Tap.IsBusy)
|
|
{
|
|
return;
|
|
}
|
|
using (Tap.Start())
|
|
{
|
|
if (o is UIBill bill)
|
|
{
|
|
var result = await this.ShowConfirm(Resource.ConfirmDeleteBill);
|
|
if (result)
|
|
{
|
|
var bills = Bills;
|
|
bills.Remove(bill);
|
|
App.Bills.Remove(bill.Bill);
|
|
billsLayout.Refresh(bills);
|
|
RefreshBalance(bills);
|
|
|
|
RankPage.Instance?.SetNeedRefresh();
|
|
|
|
await StoreHelper.DeleteBillItemAsync(bill.Bill);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private async void OnBillChecked(object sender, Bill e)
|
|
{
|
|
if (e.Id <= 0)
|
|
{
|
|
App.Bills.Add(e);
|
|
var bills = Bills;
|
|
bills.Add(Helper.WrapBill(e));
|
|
Bills = bills.OrderBy(b => b.DateCreation).ToList();
|
|
}
|
|
else
|
|
{
|
|
var bill = Bills.FirstOrDefault(b => b.Bill == e);
|
|
if (bill != null)
|
|
{
|
|
if (bill.DateCreation != e.CreateTime)
|
|
{
|
|
var bills = App.Bills.Where(b => Helper.IsSameDay(b.CreateTime, SelectedDate));
|
|
Bills = new List<UIBill>(bills.OrderBy(b => b.CreateTime).Select(b => Helper.WrapBill(b)));
|
|
RefreshBalance(Bills);
|
|
|
|
RankPage.Instance?.SetNeedRefresh();
|
|
|
|
await StoreHelper.SaveBillItemAsync(e);
|
|
return;
|
|
}
|
|
else
|
|
{
|
|
UpdateBill(bill);
|
|
}
|
|
}
|
|
}
|
|
RefreshBalance(Bills);
|
|
|
|
RankPage.Instance?.SetNeedRefresh();
|
|
|
|
await StoreHelper.SaveBillItemAsync(e);
|
|
}
|
|
}
|
|
|
|
public class UIBill : BindableObject
|
|
{
|
|
public static readonly BindableProperty IconProperty = Helper.Create<string, UIBill>(nameof(Icon));
|
|
public static readonly BindableProperty TintColorProperty = Helper.Create<long, UIBill>(nameof(TintColor));
|
|
public static readonly BindableProperty NameProperty = Helper.Create<string, UIBill>(nameof(Name));
|
|
public static readonly BindableProperty DateCreationProperty = Helper.Create<DateTime, UIBill>(nameof(DateCreation));
|
|
public static readonly BindableProperty AmountProperty = Helper.Create<decimal, UIBill>(nameof(Amount));
|
|
public static readonly BindableProperty WalletProperty = Helper.Create<string, UIBill>(nameof(Wallet));
|
|
|
|
public string Icon
|
|
{
|
|
get => (string)GetValue(IconProperty);
|
|
set => SetValue(IconProperty, value);
|
|
}
|
|
public long TintColor
|
|
{
|
|
get => (long)GetValue(TintColorProperty);
|
|
set => SetValue(TintColorProperty, value);
|
|
}
|
|
public string Name
|
|
{
|
|
get => (string)GetValue(NameProperty);
|
|
set => SetValue(NameProperty, value);
|
|
}
|
|
public DateTime DateCreation
|
|
{
|
|
get => (DateTime)GetValue(DateCreationProperty);
|
|
set => SetValue(DateCreationProperty, value);
|
|
}
|
|
public decimal Amount
|
|
{
|
|
get => (decimal)GetValue(AmountProperty);
|
|
set => SetValue(AmountProperty, value);
|
|
}
|
|
public string Wallet
|
|
{
|
|
get => (string)GetValue(WalletProperty);
|
|
set => SetValue(WalletProperty, value);
|
|
}
|
|
|
|
public Bill Bill { get; }
|
|
|
|
public UIBill(Bill bill)
|
|
{
|
|
Bill = bill;
|
|
}
|
|
}
|
|
} |