mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-24 11:55:38 +01:00
do searching
This commit is contained in:
parent
2870b8331e
commit
340d4ce714
@ -7,6 +7,7 @@ using Bit.iOS.Core.Utilities;
|
|||||||
using Bit.iOS.Core.Controllers;
|
using Bit.iOS.Core.Controllers;
|
||||||
using Bit.App.Resources;
|
using Bit.App.Resources;
|
||||||
using Bit.iOS.Core.Views;
|
using Bit.iOS.Core.Views;
|
||||||
|
using System.Threading;
|
||||||
|
|
||||||
namespace Bit.iOS.Autofill
|
namespace Bit.iOS.Autofill
|
||||||
{
|
{
|
||||||
@ -158,7 +159,6 @@ namespace Bit.iOS.Autofill
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public class SearchDelegate : UISearchBarDelegate
|
public class SearchDelegate : UISearchBarDelegate
|
||||||
{
|
{
|
||||||
@ -172,6 +172,8 @@ namespace Bit.iOS.Autofill
|
|||||||
public override void TextChanged(UISearchBar searchBar, string searchText)
|
public override void TextChanged(UISearchBar searchBar, string searchText)
|
||||||
{
|
{
|
||||||
System.Diagnostics.Debug.WriteLine("search text: " + searchText);
|
System.Diagnostics.Debug.WriteLine("search text: " + searchText);
|
||||||
|
((TableSource)_controller.TableView.Source).FilterResults(searchText, new CancellationToken());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@ using System;
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using UIKit;
|
using UIKit;
|
||||||
using XLabs.Ioc;
|
using XLabs.Ioc;
|
||||||
@ -19,6 +20,7 @@ namespace Bit.iOS.Core.Views
|
|||||||
{
|
{
|
||||||
private const string CellIdentifier = "TableCell";
|
private const string CellIdentifier = "TableCell";
|
||||||
|
|
||||||
|
private IEnumerable<CipherViewModel> _allItems = new List<CipherViewModel>();
|
||||||
protected IEnumerable<CipherViewModel> _tableItems = new List<CipherViewModel>();
|
protected IEnumerable<CipherViewModel> _tableItems = new List<CipherViewModel>();
|
||||||
protected ICipherService _cipherService;
|
protected ICipherService _cipherService;
|
||||||
protected ISettings _settings;
|
protected ISettings _settings;
|
||||||
@ -57,10 +59,31 @@ namespace Bit.iOS.Core.Views
|
|||||||
combinedLogins.AddRange(logins);
|
combinedLogins.AddRange(logins);
|
||||||
}
|
}
|
||||||
|
|
||||||
_tableItems = combinedLogins.Select(s => new CipherViewModel(s))
|
_allItems = combinedLogins.Select(s => new CipherViewModel(s))
|
||||||
.OrderBy(s => s.Name)
|
.OrderBy(s => s.Name)
|
||||||
.ThenBy(s => s.Username)
|
.ThenBy(s => s.Username)
|
||||||
.ToList() ?? new List<CipherViewModel>();
|
.ToList() ?? new List<CipherViewModel>();
|
||||||
|
FilterResults(searchFilter, new CancellationToken());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void FilterResults(string searchFilter, CancellationToken ct)
|
||||||
|
{
|
||||||
|
ct.ThrowIfCancellationRequested();
|
||||||
|
|
||||||
|
if(string.IsNullOrWhiteSpace(searchFilter))
|
||||||
|
{
|
||||||
|
_tableItems = _allItems.ToList();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
searchFilter = searchFilter.ToLower();
|
||||||
|
_tableItems = _allItems
|
||||||
|
.Where(s => s.Name.ToLower().Contains(searchFilter) ||
|
||||||
|
(s.Username?.ToLower().Contains(searchFilter) ?? false) ||
|
||||||
|
(s.Uris?.FirstOrDefault()?.Uri.ToLower().Contains(searchFilter) ?? false))
|
||||||
|
.TakeWhile(s => !ct.IsCancellationRequested)
|
||||||
|
.ToArray();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerable<CipherViewModel> TableItems { get; set; }
|
public IEnumerable<CipherViewModel> TableItems { get; set; }
|
||||||
|
Loading…
Reference in New Issue
Block a user