messages for credential store

This commit is contained in:
Kyle Spearrin 2018-09-21 09:57:24 -04:00
parent fbce0be457
commit 197683b722
2 changed files with 31 additions and 25 deletions

View file

@ -260,6 +260,7 @@ namespace Bit.App.Services
_googleAnalyticsService.TrackAppEvent("LoggedOut"); _googleAnalyticsService.TrackAppEvent("LoggedOut");
MessagingCenter.Send(Application.Current, "LoggedOut");
Device.BeginInvokeOnMainThread(() => Application.Current.MainPage = new ExtendedNavigationPage(new HomePage())); Device.BeginInvokeOnMainThread(() => Application.Current.MainPage = new ExtendedNavigationPage(new HomePage()));
if(!string.IsNullOrWhiteSpace(logoutMessage)) if(!string.IsNullOrWhiteSpace(logoutMessage))
{ {

View file

@ -112,8 +112,8 @@ namespace Bit.iOS
modal.PresentViewController(activityViewController, true, null); modal.PresentViewController(activityViewController, true, null);
}); });
MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(Xamarin.Forms.Application.Current, MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(
"ListenYubiKeyOTP", (sender, listen) => Xamarin.Forms.Application.Current, "ListenYubiKeyOTP", (sender, listen) =>
{ {
if(_deviceInfoService.NfcEnabled) if(_deviceInfoService.NfcEnabled)
{ {
@ -132,14 +132,14 @@ namespace Bit.iOS
UIApplication.SharedApplication.StatusBarHidden = false; UIApplication.SharedApplication.StatusBarHidden = false;
UIApplication.SharedApplication.StatusBarStyle = UIStatusBarStyle.LightContent; UIApplication.SharedApplication.StatusBarStyle = UIStatusBarStyle.LightContent;
MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(Xamarin.Forms.Application.Current, MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(
"ShowStatusBar", (sender, show) => Xamarin.Forms.Application.Current, "ShowStatusBar", (sender, show) =>
{ {
UIApplication.SharedApplication.SetStatusBarHidden(!show, false); UIApplication.SharedApplication.SetStatusBarHidden(!show, false);
}); });
MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(Xamarin.Forms.Application.Current, MessagingCenter.Subscribe<Xamarin.Forms.Application, bool>(
"FullSyncCompleted", (sender, successfully) => Xamarin.Forms.Application.Current, "FullSyncCompleted", (sender, successfully) =>
{ {
if(successfully) if(successfully)
{ {
@ -147,15 +147,20 @@ namespace Bit.iOS
} }
}); });
MessagingCenter.Subscribe<Xamarin.Forms.Application, string>(Xamarin.Forms.Application.Current, MessagingCenter.Subscribe<Xamarin.Forms.Application, string>(
"UpsertedCipher", (sender, id) => Xamarin.Forms.Application.Current, "UpsertedCipher", (sender, id) =>
{ {
}); });
MessagingCenter.Subscribe<Xamarin.Forms.Application, string>(
Xamarin.Forms.Application.Current, "DeletedCipher", (sender, id) =>
{
MessagingCenter.Subscribe<Xamarin.Forms.Application, string>(Xamarin.Forms.Application.Current, });
"DeletedCipher", (sender, id) =>
MessagingCenter.Subscribe<Xamarin.Forms.Application>(
Xamarin.Forms.Application.Current, "LoggedOut", (sender) =>
{ {
}); });