Bitwarden-app-android-iphon.../src/App/Pages/TabsPage.cs

93 lines
3.1 KiB
C#
Raw Normal View History

2019-05-31 03:24:03 +02:00
using Bit.App.Effect;
using Bit.App.Models;
2019-05-31 03:24:03 +02:00
using Bit.App.Resources;
using Bit.Core.Abstractions;
using Bit.Core.Utilities;
2019-05-14 15:43:46 +02:00
using Xamarin.Forms;
namespace Bit.App.Pages
{
public class TabsPage : TabbedPage
{
private NavigationPage _groupingsPage;
private NavigationPage _generatorPage;
public TabsPage(AppOptions appOptions = null)
2019-05-14 15:43:46 +02:00
{
_groupingsPage = new NavigationPage(new GroupingsPage(true))
2019-05-14 15:43:46 +02:00
{
Title = AppResources.MyVault,
Icon = "lock.png"
};
Children.Add(_groupingsPage);
2019-05-14 15:43:46 +02:00
_generatorPage = new NavigationPage(new GeneratorPage(true, null, this))
2019-05-14 15:43:46 +02:00
{
Title = AppResources.Generator,
Icon = "refresh.png"
};
Children.Add(_generatorPage);
2019-05-14 15:43:46 +02:00
var settingsPage = new NavigationPage(new SettingsPage(this))
2019-05-14 15:43:46 +02:00
{
Title = AppResources.Settings,
2019-05-31 03:24:03 +02:00
Icon = "cog.png"
2019-05-14 15:43:46 +02:00
};
Children.Add(settingsPage);
2019-05-31 03:24:03 +02:00
if(Device.RuntimePlatform == Device.Android)
{
Effects.Add(new TabBarEffect());
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetToolbarPlacement(this,
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.ToolbarPlacement.Bottom);
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSwipePagingEnabled(this, false);
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetIsSmoothScrollEnabled(this, false);
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetBarSelectedItemColor(this,
(Color)Application.Current.Resources["TabBarSelectedItemColor"]);
Xamarin.Forms.PlatformConfiguration.AndroidSpecific.TabbedPage.SetBarItemColor(this,
(Color)Application.Current.Resources["TabBarItemColor"]);
}
if(appOptions?.GeneratorTile ?? false)
{
appOptions.GeneratorTile = false;
ResetToGeneratorPage();
}
2019-06-07 02:34:59 +02:00
else if(appOptions?.MyVaultTile ?? false)
{
appOptions.MyVaultTile = false;
}
2019-05-14 15:43:46 +02:00
}
public void ResetToVaultPage()
{
CurrentPage = _groupingsPage;
}
public void ResetToGeneratorPage()
{
CurrentPage = _generatorPage;
}
2019-05-14 15:43:46 +02:00
protected async override void OnCurrentPageChanged()
{
if(CurrentPage is NavigationPage navPage)
{
2019-05-14 15:51:13 +02:00
if(navPage.RootPage is GroupingsPage groupingsPage)
{
// Load something?
}
else if(navPage.RootPage is GeneratorPage genPage)
2019-05-14 15:43:46 +02:00
{
await genPage.InitAsync();
}
2019-05-14 15:51:13 +02:00
else if(navPage.RootPage is SettingsPage settingsPage)
{
2019-05-31 20:18:32 +02:00
await settingsPage.InitAsync();
2019-05-14 15:51:13 +02:00
}
2019-05-14 15:43:46 +02:00
}
}
}
}