mirror of
https://github.com/bitwarden/android.git
synced 2024-12-31 21:38:27 +03:00
65 lines
2.3 KiB
C#
65 lines
2.3 KiB
C#
using Bit.App.Abstractions;
|
|
using Bit.App.Resources;
|
|
using Bit.Core.Utilities;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.PlatformConfiguration;
|
|
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
|
|
|
|
namespace Bit.App.Pages
|
|
{
|
|
public partial class OptionsPage : BaseContentPage
|
|
{
|
|
private readonly IDeviceActionService _deviceActionService;
|
|
private readonly OptionsPageViewModel _vm;
|
|
|
|
public OptionsPage()
|
|
{
|
|
_deviceActionService = ServiceContainer.Resolve<IDeviceActionService>("deviceActionService");
|
|
InitializeComponent();
|
|
_vm = BindingContext as OptionsPageViewModel;
|
|
_vm.Page = this;
|
|
_themePicker.ItemDisplayBinding = new Binding("Value");
|
|
_uriMatchPicker.ItemDisplayBinding = new Binding("Value");
|
|
_clearClipboardPicker.ItemDisplayBinding = new Binding("Value");
|
|
if(Device.RuntimePlatform == Device.Android)
|
|
{
|
|
ToolbarItems.RemoveAt(0);
|
|
_vm.ShowAndroidAccessibilitySettings = true;
|
|
_vm.ShowAndroidAutofillSettings = _deviceActionService.SupportsAutofillService();
|
|
_themeDescriptionLabel.Text = string.Concat(_themeDescriptionLabel.Text, " ",
|
|
AppResources.RestartIsRequired);
|
|
}
|
|
else
|
|
{
|
|
_themePicker.On<iOS>().SetUpdateMode(UpdateMode.WhenFinished);
|
|
_uriMatchPicker.On<iOS>().SetUpdateMode(UpdateMode.WhenFinished);
|
|
_clearClipboardPicker.On<iOS>().SetUpdateMode(UpdateMode.WhenFinished);
|
|
}
|
|
}
|
|
|
|
protected async override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
await _vm.InitAsync();
|
|
}
|
|
|
|
protected async override void OnDisappearing()
|
|
{
|
|
base.OnDisappearing();
|
|
await _vm.UpdateAutofillBlacklistedUris();
|
|
}
|
|
|
|
private async void BlacklistedUrisEditor_Unfocused(object sender, FocusEventArgs e)
|
|
{
|
|
await _vm.UpdateAutofillBlacklistedUris();
|
|
}
|
|
|
|
private async void Close_Clicked(object sender, System.EventArgs e)
|
|
{
|
|
if(DoOnce())
|
|
{
|
|
await Navigation.PopModalAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|