2019-05-07 19:29:02 +03:00
|
|
|
|
using Xamarin.Forms;
|
2019-05-07 18:25:21 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Pages
|
|
|
|
|
{
|
|
|
|
|
public partial class AddEditPage : BaseContentPage
|
|
|
|
|
{
|
|
|
|
|
private AddEditPageViewModel _vm;
|
|
|
|
|
|
2019-05-07 19:29:02 +03:00
|
|
|
|
public AddEditPage(
|
|
|
|
|
string cipherId = null,
|
|
|
|
|
string folderId = null,
|
|
|
|
|
string collectionId = null,
|
|
|
|
|
string organizationId = null)
|
2019-05-07 18:25:21 +03:00
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
_vm = BindingContext as AddEditPageViewModel;
|
|
|
|
|
_vm.Page = this;
|
|
|
|
|
_vm.CipherId = cipherId;
|
2019-05-07 19:29:02 +03:00
|
|
|
|
_vm.FolderId = folderId;
|
|
|
|
|
_vm.OrganizationId = organizationId;
|
|
|
|
|
_vm.Init();
|
2019-05-07 18:25:21 +03:00
|
|
|
|
SetActivityIndicator();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override async void OnAppearing()
|
|
|
|
|
{
|
|
|
|
|
base.OnAppearing();
|
|
|
|
|
await LoadOnAppearedAsync(_scrollView, true, () => _vm.LoadAsync());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnDisappearing()
|
|
|
|
|
{
|
|
|
|
|
base.OnDisappearing();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async void PasswordHistory_Tapped(object sender, System.EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if(DoOnce())
|
|
|
|
|
{
|
|
|
|
|
await Navigation.PushModalAsync(new NavigationPage(new PasswordHistoryPage(_vm.CipherId)));
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-07 19:29:02 +03:00
|
|
|
|
|
|
|
|
|
private async void Save_Clicked(object sender, System.EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if(DoOnce())
|
|
|
|
|
{
|
|
|
|
|
await _vm.SubmitAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-07 18:25:21 +03:00
|
|
|
|
}
|
|
|
|
|
}
|