2016-05-03 00:50:16 +03:00
|
|
|
|
using System;
|
|
|
|
|
using Bit.App.Abstractions;
|
2016-05-07 20:42:09 +03:00
|
|
|
|
using Bit.App.Resources;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
using XLabs.Ioc;
|
2016-05-13 04:30:02 +03:00
|
|
|
|
using Bit.App.Controls;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
|
|
|
|
|
namespace Bit.App.Pages
|
|
|
|
|
{
|
|
|
|
|
public class SettingsPage : ContentPage
|
|
|
|
|
{
|
2016-05-08 07:28:14 +03:00
|
|
|
|
private readonly IAuthService _authService;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
|
|
|
|
|
public SettingsPage()
|
|
|
|
|
{
|
2016-05-08 07:28:14 +03:00
|
|
|
|
_authService = Resolver.Resolve<IAuthService>();
|
|
|
|
|
|
|
|
|
|
Init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Init()
|
|
|
|
|
{
|
2016-05-12 00:30:09 +03:00
|
|
|
|
var foldersCell = new TextCell { Text = "Folders" };
|
2016-05-08 07:28:14 +03:00
|
|
|
|
foldersCell.Tapped += FoldersCell_Tapped;
|
|
|
|
|
|
2016-05-13 04:30:02 +03:00
|
|
|
|
var table = new ExtendedTableView
|
2016-05-08 07:28:14 +03:00
|
|
|
|
{
|
2016-05-13 04:30:02 +03:00
|
|
|
|
EnableScrolling = false,
|
2016-05-12 00:30:09 +03:00
|
|
|
|
Intent = TableIntent.Menu,
|
2016-05-08 07:28:14 +03:00
|
|
|
|
Root = new TableRoot
|
|
|
|
|
{
|
|
|
|
|
new TableSection("Manage Folders")
|
|
|
|
|
{
|
|
|
|
|
foldersCell
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2016-05-03 00:50:16 +03:00
|
|
|
|
|
|
|
|
|
var logoutButton = new Button
|
|
|
|
|
{
|
2016-05-07 20:42:09 +03:00
|
|
|
|
Text = AppResources.LogOut,
|
2016-05-03 00:50:16 +03:00
|
|
|
|
Command = new Command(() =>
|
|
|
|
|
{
|
2016-05-08 07:28:14 +03:00
|
|
|
|
_authService.LogOut();
|
2016-05-03 00:50:16 +03:00
|
|
|
|
Application.Current.MainPage = new LoginNavigationPage();
|
|
|
|
|
})
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var stackLayout = new StackLayout { };
|
2016-05-08 07:28:14 +03:00
|
|
|
|
stackLayout.Children.Add(table);
|
2016-05-03 00:50:16 +03:00
|
|
|
|
stackLayout.Children.Add(logoutButton);
|
|
|
|
|
|
2016-05-07 20:42:09 +03:00
|
|
|
|
Title = AppResources.Settings;
|
2016-05-03 00:50:16 +03:00
|
|
|
|
Content = stackLayout;
|
|
|
|
|
}
|
2016-05-08 07:28:14 +03:00
|
|
|
|
|
|
|
|
|
private void FoldersCell_Tapped(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2016-05-03 00:50:16 +03:00
|
|
|
|
}
|
|
|
|
|
}
|