2019-05-31 04:24:03 +03:00
|
|
|
|
using Bit.App.Effect;
|
|
|
|
|
using Bit.App.Resources;
|
2019-05-14 16:43:46 +03:00
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Bit.App.Pages
|
|
|
|
|
{
|
|
|
|
|
public class TabsPage : TabbedPage
|
|
|
|
|
{
|
2019-05-31 21:15:37 +03:00
|
|
|
|
private NavigationPage _groupingsPage;
|
|
|
|
|
|
2019-05-14 16:43:46 +03:00
|
|
|
|
public TabsPage()
|
|
|
|
|
{
|
2019-05-31 21:15:37 +03:00
|
|
|
|
_groupingsPage = new NavigationPage(new GroupingsPage(true))
|
2019-05-14 16:43:46 +03:00
|
|
|
|
{
|
|
|
|
|
Title = AppResources.MyVault,
|
|
|
|
|
Icon = "lock.png"
|
|
|
|
|
};
|
2019-05-31 21:15:37 +03:00
|
|
|
|
Children.Add(_groupingsPage);
|
2019-05-14 16:43:46 +03:00
|
|
|
|
|
2019-05-31 21:15:37 +03:00
|
|
|
|
var generatorPage = new NavigationPage(new GeneratorPage(true, null, this))
|
2019-05-14 16:43:46 +03:00
|
|
|
|
{
|
|
|
|
|
Title = AppResources.Generator,
|
|
|
|
|
Icon = "refresh.png"
|
|
|
|
|
};
|
|
|
|
|
Children.Add(generatorPage);
|
|
|
|
|
|
2019-05-31 21:15:37 +03:00
|
|
|
|
var settingsPage = new NavigationPage(new SettingsPage(this))
|
2019-05-14 16:43:46 +03:00
|
|
|
|
{
|
|
|
|
|
Title = AppResources.Settings,
|
2019-05-31 04:24:03 +03:00
|
|
|
|
Icon = "cog.png"
|
2019-05-14 16:43:46 +03:00
|
|
|
|
};
|
|
|
|
|
Children.Add(settingsPage);
|
|
|
|
|
|
2019-05-31 04:24:03 +03: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"]);
|
|
|
|
|
}
|
2019-05-14 16:43:46 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-31 21:15:37 +03:00
|
|
|
|
public void ResetToVaultPage()
|
|
|
|
|
{
|
|
|
|
|
CurrentPage = _groupingsPage;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-14 16:43:46 +03:00
|
|
|
|
protected async override void OnCurrentPageChanged()
|
|
|
|
|
{
|
|
|
|
|
if(CurrentPage is NavigationPage navPage)
|
|
|
|
|
{
|
2019-05-14 16:51:13 +03:00
|
|
|
|
if(navPage.RootPage is GroupingsPage groupingsPage)
|
|
|
|
|
{
|
|
|
|
|
// Load something?
|
|
|
|
|
}
|
|
|
|
|
else if(navPage.RootPage is GeneratorPage genPage)
|
2019-05-14 16:43:46 +03:00
|
|
|
|
{
|
|
|
|
|
await genPage.InitAsync();
|
|
|
|
|
}
|
2019-05-14 16:51:13 +03:00
|
|
|
|
else if(navPage.RootPage is SettingsPage settingsPage)
|
|
|
|
|
{
|
2019-05-31 21:18:32 +03:00
|
|
|
|
await settingsPage.InitAsync();
|
2019-05-14 16:51:13 +03:00
|
|
|
|
}
|
2019-05-14 16:43:46 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|