mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
100 lines
3 KiB
C#
100 lines
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;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public class SettingsAddFolderPage : ContentPage
|
|
{
|
|
private readonly IFolderService _folderService;
|
|
private readonly IUserDialogs _userDialogs;
|
|
private readonly IConnectivity _connectivity;
|
|
|
|
public SettingsAddFolderPage()
|
|
{
|
|
_folderService = Resolver.Resolve<IFolderService>();
|
|
_userDialogs = Resolver.Resolve<IUserDialogs>();
|
|
_connectivity = Resolver.Resolve<IConnectivity>();
|
|
|
|
Init();
|
|
}
|
|
|
|
private void Init()
|
|
{
|
|
var nameCell = new FormEntryCell(AppResources.Name);
|
|
|
|
var mainTable = new ExtendedTableView
|
|
{
|
|
Intent = TableIntent.Settings,
|
|
EnableScrolling = false,
|
|
HasUnevenRows = true,
|
|
EnableSelection = false,
|
|
Root = new TableRoot
|
|
{
|
|
new TableSection()
|
|
{
|
|
nameCell
|
|
}
|
|
}
|
|
};
|
|
|
|
if(Device.OS == TargetPlatform.iOS)
|
|
{
|
|
mainTable.RowHeight = -1;
|
|
mainTable.EstimatedRowHeight = 70;
|
|
}
|
|
|
|
var saveToolBarItem = new ToolbarItem(AppResources.Save, null, async () =>
|
|
{
|
|
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()
|
|
};
|
|
|
|
var saveTask = _folderService.SaveAsync(folder);
|
|
_userDialogs.ShowLoading("Saving...", MaskType.Black);
|
|
await saveTask;
|
|
|
|
_userDialogs.HideLoading();
|
|
await Navigation.PopModalAsync();
|
|
_userDialogs.SuccessToast(nameCell.Entry.Text, "New folder created.");
|
|
}, ToolbarItemOrder.Default, 0);
|
|
|
|
Title = "Add Folder";
|
|
Content = mainTable;
|
|
ToolbarItems.Add(saveToolBarItem);
|
|
if(Device.OS == TargetPlatform.iOS)
|
|
{
|
|
ToolbarItems.Add(new DismissModalToolBarItem(this, "Cancel"));
|
|
}
|
|
|
|
if(!_connectivity.IsConnected)
|
|
{
|
|
AlertNoConnection();
|
|
}
|
|
}
|
|
|
|
private void AlertNoConnection()
|
|
{
|
|
DisplayAlert(AppResources.InternetConnectionRequiredTitle, AppResources.InternetConnectionRequiredMessage, AppResources.Ok);
|
|
}
|
|
}
|
|
}
|