public void SendEvent(XCEvent ev) { if (ev.GetPluginName() == XCFeedbackEvent.PluginName) { XCFeedbackEvent feedbackEvent = (XamarinBridge.PCL.Types.XCFeedbackEvent)ev; XCFeedbackNotification feedback = feedbackEvent.FeedbackNotification; NITFeedback nativeFeedback = new NITFeedback(); nativeFeedback = AdapterFeedback.GetNative(feedback); NITFeedbackEvent nativeFeedbackEvent = new NITFeedbackEvent(nativeFeedback, feedbackEvent.rating, feedbackEvent.comment); NITManager.DefaultManager.SendEventWithEvent(nativeFeedbackEvent, (error) => { if (error != null) { Console.WriteLine("SendEventWithEvent error ios" + error); } else { Console.WriteLine("SendEventWithEvent ios"); } }); } }
public void FromNativeToBridge() { var XKeys = new NSString[] { (NSString)"key" }; var XObj = new NSObject[] { (NSString)"value" }; NITTrackingInfo NTrack = NITTrackingInfo.TrackingInfoFromRecipeId("recid", NSDictionary <NSString, NSObject> .FromObjectsAndKeys(XObj, XKeys)); NITFeedback NFeed = new NITFeedback(); NFeed.Question = "Question?"; NFeed.NotificationMessage = "ciao"; NFeed.RecipeId = "rec-id"; NFeed.TrackingInfo = NTrack; XCFeedbackNotification XFeed = AdapterFeedback.GetCommonType(NFeed); Assert.True(XFeed.Question.Equals(NFeed.Question)); Assert.NotNull(XFeed.TrackingInfo.extras); object value = XFeed.TrackingInfo.extras["key"]; Assert.NotNull(value); Assert.True(value is string); Assert.True(XFeed.TrackingInfo.extras["key"].Equals("value")); }
public override void GotFeedback(NITFeedback Feedback, NITTrackingInfo TrackingInfo) { XCFeedbackNotification XFeedback = AdapterFeedback.GetCommonType(Feedback); if (NearPCL.GetContentManager() != null) { NearPCL.GetContentManager().GotXFeedbackNotification(XFeedback); } else { Console.WriteLine("You receive a content but you haven't registered a content manager"); } }
public void SendEvent(XCEvent ev) { if (ev.GetPluginName() == XCFeedbackEvent.PluginName) { XCFeedbackEvent feedbackEvent = (XamarinBridge.PCL.Types.XCFeedbackEvent)ev; XCFeedbackNotification feedback = feedbackEvent.FeedbackNotification; Feedback nativeFeedback = AdapterFeedback.GetNative(feedback); FeedbackEvent nativeFeedbackEvent = new FeedbackEvent(nativeFeedback, feedbackEvent.rating, feedbackEvent.comment); NearItManager.Instance.SendEvent(nativeFeedbackEvent); } else { Console.WriteLine("Error SendEvent android"); } }
public void FromBridgeToNative() { XCTrackingInfo xtrack = new XCTrackingInfo(); xtrack.RecipeId = "recid"; xtrack.extras = new Dictionary <string, object>(); xtrack.extras.Add("key", "value"); XCFeedbackNotification XFeed = new XCFeedbackNotification(); XFeed.Question = "Question?"; XFeed.NotificationMessage = "ciao"; XFeed.RecipeId = "rec-id"; XFeed.TrackingInfo = xtrack; Feedback NFeed = AdapterFeedback.GetNative(XFeed); Assert.True(NFeed.Question.Equals(XFeed.Question)); }
public void FromNativeToBridge() { TrackingInfo NTrack = new TrackingInfo(); NTrack.RecipeId = "recid"; NTrack.Metadata = new Dictionary <Java.Lang.String, Java.Lang.Object>(); NTrack.Metadata.Add("key", "value"); Feedback NFeed = new Feedback(); NFeed.Question = "Question?"; NFeed.NotificationMessage = "ciao"; NFeed.RecipeId = "rec-id"; NFeed.TrackingInfo = NTrack; XCFeedbackNotification XFeed = AdapterFeedback.GetCommonType(NFeed); Assert.True(XFeed.Question.Equals(NFeed.Question)); Assert.True(XFeed.TrackingInfo.extras["key"].Equals("value")); }