bitwarden-android/src/App/Pages/Tools/ToolsExtensionPage.cs

228 lines
8.6 KiB
C#
Raw Normal View History

using System;
using System.Threading.Tasks;
using Acr.UserDialogs;
using Bit.App.Controls;
using Bit.App.Models.Page;
using Plugin.Settings.Abstractions;
using Xamarin.Forms;
using XLabs.Ioc;
using Bit.App.Abstractions;
2016-11-26 00:32:13 +03:00
using Bit.App.Resources;
namespace Bit.App.Pages
{
public class ToolsExtensionPage : ExtendedContentPage
{
private readonly IUserDialogs _userDialogs;
private readonly ISettings _settings;
private readonly IGoogleAnalyticsService _googleAnalyticsService;
public ToolsExtensionPage()
{
_userDialogs = Resolver.Resolve<IUserDialogs>();
_settings = Resolver.Resolve<ISettings>();
_googleAnalyticsService = Resolver.Resolve<IGoogleAnalyticsService>();
Model = new AppExtensionPageModel(_settings);
Init();
}
public AppExtensionPageModel Model { get; private set; }
public void Init()
{
// Not Started
var notStartedLabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionInstantAccess,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap,
FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label))
};
var notStartedSublabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionTurnOn,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap
};
var notStartedImage = new Image
{
2016-07-28 07:24:51 +03:00
Source = "ext-more",
VerticalOptions = LayoutOptions.CenterAndExpand,
2016-07-28 07:24:51 +03:00
HorizontalOptions = LayoutOptions.Center,
Margin = new Thickness(0, -10, 0, 0)
};
2016-08-24 07:07:46 +03:00
var notStartedButton = new ExtendedButton
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionEnable,
Command = new Command(() => ShowExtension("NotStartedEnable")),
2016-07-28 07:24:51 +03:00
VerticalOptions = LayoutOptions.End,
HorizontalOptions = LayoutOptions.Fill,
Style = (Style)Application.Current.Resources["btn-primary"]
};
var notStartedStackLayout = new StackLayout
{
Orientation = StackOrientation.Vertical,
Spacing = 20,
2016-07-28 07:24:51 +03:00
Padding = new Thickness(20, 20, 20, 30),
Children = { notStartedLabel, notStartedSublabel, notStartedImage, notStartedButton },
VerticalOptions = LayoutOptions.FillAndExpand
};
notStartedStackLayout.SetBinding<AppExtensionPageModel>(IsVisibleProperty, m => m.NotStarted);
// Not Activated
var notActivatedLabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionAlmostDone,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap,
FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label))
};
var notActivatedSublabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionTapIcon,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap
};
var notActivatedImage = new Image
{
2016-07-28 07:24:51 +03:00
Source = "ext-act",
VerticalOptions = LayoutOptions.CenterAndExpand,
2016-07-28 07:24:51 +03:00
HorizontalOptions = LayoutOptions.Center,
Margin = new Thickness(0, -10, 0, 0)
};
2016-08-24 07:07:46 +03:00
var notActivatedButton = new ExtendedButton
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionEnable,
Command = new Command(() => ShowExtension("NotActivatedEnable")),
2016-07-28 07:24:51 +03:00
VerticalOptions = LayoutOptions.End,
HorizontalOptions = LayoutOptions.Fill,
Style = (Style)Application.Current.Resources["btn-primary"]
};
var notActivatedStackLayout = new StackLayout
{
Orientation = StackOrientation.Vertical,
Spacing = 20,
2016-07-28 07:24:51 +03:00
Padding = new Thickness(20, 20, 20, 30),
Children = { notActivatedLabel, notActivatedSublabel, notActivatedImage, notActivatedButton },
VerticalOptions = LayoutOptions.FillAndExpand
};
notActivatedStackLayout.SetBinding<AppExtensionPageModel>(IsVisibleProperty, m => m.StartedAndNotActivated);
// Activated
var activatedLabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionReady,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap,
FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Label))
};
var activatedSublabel = new Label
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionInSafari,
VerticalOptions = LayoutOptions.Start,
HorizontalOptions = LayoutOptions.Center,
HorizontalTextAlignment = TextAlignment.Center,
LineBreakMode = LineBreakMode.WordWrap,
Margin = new Thickness(0, 10, 0, 0)
};
var activatedImage = new Image
{
2016-07-28 07:24:51 +03:00
Source = "ext-use",
VerticalOptions = LayoutOptions.CenterAndExpand,
2016-07-28 07:24:51 +03:00
HorizontalOptions = LayoutOptions.Center,
Margin = new Thickness(0, -10, 0, 0)
};
2016-08-24 07:07:46 +03:00
var activatedButton = new ExtendedButton
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExtensionSeeApps,
Command = new Command(() =>
{
_googleAnalyticsService.TrackAppEvent("SeeSupportedApps");
2016-10-02 07:20:45 +03:00
Device.OpenUri(new Uri("https://bitwarden.com/ios/"));
}),
2016-07-28 07:24:51 +03:00
VerticalOptions = LayoutOptions.End,
HorizontalOptions = LayoutOptions.Fill,
Style = (Style)Application.Current.Resources["btn-primary"]
};
2016-08-24 07:07:46 +03:00
var activatedButtonReenable = new ExtendedButton
{
2016-11-26 00:32:13 +03:00
Text = AppResources.ExntesionReenable,
Command = new Command(() => ShowExtension("Re-enable")),
VerticalOptions = LayoutOptions.End,
HorizontalOptions = LayoutOptions.Fill,
Style = (Style)Application.Current.Resources["btn-primaryAccent"]
};
var activatedStackLayout = new StackLayout
{
Orientation = StackOrientation.Vertical,
Spacing = 10,
2016-07-28 07:24:51 +03:00
Padding = new Thickness(20, 20, 20, 30),
VerticalOptions = LayoutOptions.FillAndExpand,
Children = { activatedLabel, activatedSublabel, activatedImage, activatedButton, activatedButtonReenable }
};
activatedStackLayout.SetBinding<AppExtensionPageModel>(IsVisibleProperty, m => m.StartedAndActivated);
var stackLayout = new StackLayout
{
2016-07-28 07:24:51 +03:00
Children = { notStartedStackLayout, notActivatedStackLayout, activatedStackLayout },
VerticalOptions = LayoutOptions.FillAndExpand
};
if(Device.OS == TargetPlatform.iOS)
{
2016-11-26 00:32:13 +03:00
ToolbarItems.Add(new DismissModalToolBarItem(this, AppResources.Close));
}
2016-11-26 00:32:13 +03:00
Title = AppResources.AppExtension;
2016-07-28 07:24:51 +03:00
Content = new ScrollView { Content = stackLayout };
BindingContext = Model;
}
private void ShowExtension(string type)
{
_googleAnalyticsService.TrackAppEvent("ShowExtension", type);
MessagingCenter.Send(Application.Current, "ShowAppExtension", this);
}
public void EnabledExtension(bool enabled)
{
_googleAnalyticsService.TrackAppEvent("EnabledExtension", enabled.ToString());
Model.Started = true;
if(!Model.Activated && enabled)
{
Model.Activated = enabled;
}
}
}
}