mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 23:54:06 +03:00
136 lines
4.3 KiB
C#
136 lines
4.3 KiB
C#
using System;
|
|
using Acr.UserDialogs;
|
|
using Bit.App.Abstractions;
|
|
using Bit.App.Controls;
|
|
using Bit.App.Models;
|
|
using Bit.App.Resources;
|
|
using Plugin.Connectivity.Abstractions;
|
|
using Xamarin.Forms;
|
|
using XLabs.Ioc;
|
|
using System.Linq;
|
|
using Bit.App.Utilities;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsAddFolderPage : ExtendedContentPage
|
|
{
|
|
private readonly IFolderService _folderService;
|
|
private readonly IUserDialogs _userDialogs;
|
|
private readonly IConnectivity _connectivity;
|
|
private readonly IGoogleAnalyticsService _googleAnalyticsService;
|
|
private DateTime? _lastAction;
|
|
|
|
public SettingsAddFolderPage()
|
|
{
|
|
_folderService = Resolver.Resolve<IFolderService>();
|
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
|
_connectivity = Resolver.Resolve<IConnectivity>();
|
|
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
|
|
|
|
Init();
|
|
}
|
|
|
|
public FormEntryCell NameCell { get; set; }
|
|
|
|
private void Init()
|
|
{
|
|
NameCell = new FormEntryCell(AppResources.Name);
|
|
|
|
var table = new ExtendedTableView
|
|
{
|
|
Intent = TableIntent.Settings,
|
|
EnableScrolling = false,
|
|
HasUnevenRows = true,
|
|
Root = new TableRoot
|
|
{
|
|
new TableSection(Helpers.GetEmptyTableSectionTitle())
|
|
{
|
|
NameCell
|
|
}
|
|
}
|
|
};
|
|
|
|
if(Device.RuntimePlatform == Device.iOS)
|
|
{
|
|
table.RowHeight = -1;
|
|
table.EstimatedRowHeight = 70;
|
|
}
|
|
|
|
var saveToolBarItem = new ToolbarItem(AppResources.Save, null, async () =>
|
|
{
|
|
if(_lastAction.LastActionWasRecent())
|
|
{
|
|
return;
|
|
}
|
|
_lastAction = DateTime.UtcNow;
|
|
|
|
if(!_connectivity.IsConnected)
|
|
{
|
|
AlertNoConnection();
|
|
return;
|
|
}
|
|
|
|
if(string.IsNullOrWhiteSpace(NameCell.Entry.Text))
|
|
{
|
|
await DisplayAlert(AppResources.AnErrorHasOccurred, string.Format(AppResources.ValidationFieldRequired,
|
|
AppResources.Name), AppResources.Ok);
|
|
return;
|
|
}
|
|
|
|
var folder = new Folder
|
|
{
|
|
Name = NameCell.Entry.Text.Encrypt()
|
|
};
|
|
|
|
_userDialogs.ShowLoading(AppResources.Saving, MaskType.Black);
|
|
var saveResult = await _folderService.SaveAsync(folder);
|
|
|
|
_userDialogs.HideLoading();
|
|
|
|
if(saveResult.Succeeded)
|
|
{
|
|
_userDialogs.Toast(AppResources.FolderCreated);
|
|
_googleAnalyticsService.TrackAppEvent("CreatedFolder");
|
|
await Navigation.PopForDeviceAsync();
|
|
}
|
|
else if(saveResult.Errors.Count() > 0)
|
|
{
|
|
await _userDialogs.AlertAsync(saveResult.Errors.First().Message, AppResources.AnErrorHasOccurred);
|
|
}
|
|
else
|
|
{
|
|
await _userDialogs.AlertAsync(AppResources.AnErrorHasOccurred);
|
|
}
|
|
}, ToolbarItemOrder.Default, 0);
|
|
|
|
Title = AppResources.AddFolder;
|
|
Content = table;
|
|
ToolbarItems.Add(saveToolBarItem);
|
|
if(Device.RuntimePlatform == Device.iOS || Device.RuntimePlatform == Device.Windows)
|
|
{
|
|
ToolbarItems.Add(new DismissModalToolBarItem(this, AppResources.Cancel));
|
|
}
|
|
}
|
|
|
|
protected override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
NameCell.InitEvents();
|
|
if(!_connectivity.IsConnected)
|
|
{
|
|
AlertNoConnection();
|
|
}
|
|
}
|
|
|
|
protected override void OnDisappearing()
|
|
{
|
|
base.OnDisappearing();
|
|
NameCell.Dispose();
|
|
}
|
|
|
|
private void AlertNoConnection()
|
|
{
|
|
DisplayAlert(AppResources.InternetConnectionRequiredTitle, AppResources.InternetConnectionRequiredMessage, AppResources.Ok);
|
|
}
|
|
}
|
|
}
|