using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Bit.App.Abstractions; using Bit.iOS.Core; using Bit.iOS.Extension.Models; using Foundation; using MobileCoreServices; using Newtonsoft.Json; using UIKit; using XLabs.Ioc; using Plugin.Settings.Abstractions; namespace Bit.iOS.Extension { public partial class SiteListViewController : UITableViewController { public SiteListViewController(IntPtr handle) : base(handle) { } public Context Context { get; set; } public LoadingViewController LoadingController { get; set; } public override void ViewWillAppear(bool animated) { UINavigationBar.Appearance.ShadowImage = new UIImage(); UINavigationBar.Appearance.SetBackgroundImage(new UIImage(), UIBarMetrics.Default); base.ViewWillAppear(animated); } public async override void ViewDidLoad() { base.ViewDidLoad(); Debug.WriteLine("BW LOG, Site list ViewDidLoad."); var sw = Stopwatch.StartNew(); IEnumerable filteredSiteModels = new List(); if(Context.DomainName != null) { var siteService = Resolver.Resolve(); var sites = await siteService.GetAllAsync(); var siteModels = sites.Select(s => new SiteViewModel(s)); filteredSiteModels = siteModels .Where(s => s.Domain != null && s.Domain.BaseDomain == Context.DomainName.BaseDomain) .ToList(); } Debug.WriteLine("BW LOG, Filtered sites at " + sw.ElapsedMilliseconds + "ms."); TableView.RowHeight = UITableView.AutomaticDimension; TableView.EstimatedRowHeight = 44; TableView.Source = new TableSource(filteredSiteModels, this); Debug.WriteLine("BW LOG, Set TableView source at " + sw.ElapsedMilliseconds + "ms."); sw.Stop(); } partial void CancelBarButton_Activated(UIBarButtonItem sender) { LoadingController.CompleteRequest(null); } partial void AddBarButton_Activated(UIBarButtonItem sender) { PerformSegue("siteAddSegue", this); } public override void PrepareForSegue(UIStoryboardSegue segue, NSObject sender) { var navController = segue.DestinationViewController as UINavigationController; if(navController != null) { var addSiteController = navController.TopViewController as SiteAddViewController; if(addSiteController != null) { addSiteController.Context = Context; addSiteController.SiteListController = this; } } } public void DismissModal() { DismissViewController(true, () => { TableView.ReloadData(); }); } public class TableSource : UITableViewSource { private const string CellIdentifier = "TableCell"; private IEnumerable _tableItems; private Context _context; private SiteListViewController _controller; public TableSource(IEnumerable items, SiteListViewController controller) { _tableItems = items; _context = controller.Context; _controller = controller; } public override nint RowsInSection(UITableView tableview, nint section) { return _tableItems.Count() == 0 ? 1 : _tableItems.Count(); } public override UITableViewCell GetCell(UITableView tableView, NSIndexPath indexPath) { if(_tableItems.Count() == 0) { var noDataCell = new UITableViewCell(UITableViewCellStyle.Default, "NoDataCell"); noDataCell.TextLabel.Text = "There are no sites in your vault for this website. Tap to add one."; noDataCell.TextLabel.TextAlignment = UITextAlignment.Center; noDataCell.TextLabel.LineBreakMode = UILineBreakMode.WordWrap; noDataCell.TextLabel.Lines = 0; return noDataCell; } var cell = tableView.DequeueReusableCell(CellIdentifier); // if there are no cells to reuse, create a new one if(cell == null) { Debug.WriteLine("BW Log, Make new cell for list."); cell = new UITableViewCell(UITableViewCellStyle.Subtitle, CellIdentifier); cell.DetailTextLabel.TextColor = cell.DetailTextLabel.TintColor = new UIColor(red: 0.47f, green: 0.47f, blue: 0.47f, alpha: 1.0f); } return cell; } public override void WillDisplay(UITableView tableView, UITableViewCell cell, NSIndexPath indexPath) { if(_tableItems.Count() == 0 || cell == null) { return; } var item = _tableItems.ElementAt(indexPath.Row); cell.TextLabel.Text = item.Name; cell.DetailTextLabel.Text = item.Username; } public override void RowSelected(UITableView tableView, NSIndexPath indexPath) { if(_tableItems.Count() == 0) { _controller.PerformSegue("siteAddSegue", this); return; } Resolver.Resolve().AddOrUpdateValue(App.Constants.SettingLastBackgroundedDate, DateTime.UtcNow); var item = _tableItems.ElementAt(indexPath.Row); if(item == null) { _controller.LoadingController.CompleteRequest(null); return; } _controller.LoadingController.CompleteUsernamePasswordRequest(item.Username, item.Password); } } } }