cipher renames

This commit is contained in:
Kyle Spearrin 2017-10-20 16:57:48 -04:00
parent 8970525861
commit 6ba396440f
4 changed files with 10 additions and 10 deletions

View file

@ -37,7 +37,7 @@ namespace Bit.iOS.Extension
public FormEntryTableViewCell PasswordCell { get; set; } = new FormEntryTableViewCell(AppResources.Password); public FormEntryTableViewCell PasswordCell { get; set; } = new FormEntryTableViewCell(AppResources.Password);
public UITableViewCell GeneratePasswordCell { get; set; } = new UITableViewCell(UITableViewCellStyle.Subtitle, "GeneratePasswordCell"); public UITableViewCell GeneratePasswordCell { get; set; } = new UITableViewCell(UITableViewCellStyle.Subtitle, "GeneratePasswordCell");
public SwitchTableViewCell FavoriteCell { get; set; } = new SwitchTableViewCell(AppResources.Favorite); public SwitchTableViewCell FavoriteCell { get; set; } = new SwitchTableViewCell(AppResources.Favorite);
public FormEntryTableViewCell NotesCell { get; set; } = new FormEntryTableViewCell(useTextView: true, height: 90); public FormEntryTableViewCell NotesCell { get; set; } = new FormEntryTableViewCell(useTextView: true, height: 180);
public PickerTableViewCell FolderCell { get; set; } = new PickerTableViewCell(AppResources.Folder); public PickerTableViewCell FolderCell { get; set; } = new PickerTableViewCell(AppResources.Folder);
public override void ViewWillAppear(bool animated) public override void ViewWillAppear(bool animated)

View file

@ -102,7 +102,7 @@ namespace Bit.iOS.Extension
{ {
private const string CellIdentifier = "TableCell"; private const string CellIdentifier = "TableCell";
private IEnumerable<LoginViewModel> _tableItems = new List<LoginViewModel>(); private IEnumerable<CipherViewModel> _tableItems = new List<CipherViewModel>();
private Context _context; private Context _context;
private LoginListViewController _controller; private LoginListViewController _controller;
private ICipherService _cipherService; private ICipherService _cipherService;
@ -132,13 +132,13 @@ namespace Bit.iOS.Extension
combinedLogins.AddRange(logins.Item2); combinedLogins.AddRange(logins.Item2);
} }
_tableItems = combinedLogins.Select(s => new LoginViewModel(s)) _tableItems = 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<LoginViewModel>(); .ToList() ?? new List<CipherViewModel>();
} }
public IEnumerable<LoginViewModel> TableItems { get; set; } public IEnumerable<CipherViewModel> TableItems { get; set; }
public override nint RowsInSection(UITableView tableview, nint section) public override nint RowsInSection(UITableView tableview, nint section)
{ {
@ -272,7 +272,7 @@ namespace Bit.iOS.Extension
} }
} }
private string GetTotp(LoginViewModel item) private string GetTotp(CipherViewModel item)
{ {
string totp = null; string totp = null;
if(_isPremium) if(_isPremium)

View file

@ -5,9 +5,9 @@ using System.Linq;
namespace Bit.iOS.Extension.Models namespace Bit.iOS.Extension.Models
{ {
public class LoginViewModel public class CipherViewModel
{ {
public LoginViewModel(Cipher cipher) public CipherViewModel(Cipher cipher)
{ {
Id = cipher.Id; Id = cipher.Id;
Name = cipher.Name?.Decrypt(cipher.OrganizationId); Name = cipher.Name?.Decrypt(cipher.OrganizationId);

View file

@ -259,7 +259,7 @@
</None> </None>
<None Include="Info.plist" /> <None Include="Info.plist" />
<None Include="Entitlements.plist" /> <None Include="Entitlements.plist" />
<Compile Include="Models\LoginViewModel.cs" /> <Compile Include="Models\CipherViewModel.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<InterfaceDefinition Include="MainInterface.storyboard" /> <InterfaceDefinition Include="MainInterface.storyboard" />
<None Include="packages.config"> <None Include="packages.config">