minafaw3

SentimentFollowupPage

May 1st, 2020
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1.  
  2.  
  3.  
  4. using System;
  5. using System.Collections.Generic;
  6. using Pyx.Core.Models.Chat;
  7. using Pyx.Mobile.Pages.Screenings;
  8. using Pyx.Shared.Models.Api.Chat;
  9. using Rg.Plugins.Popup.Services;
  10. using Xamarin.Forms;
  11.  
  12. namespace Pyx.Mobile.Pages
  13. {
  14. public partial class MyPage : ContentPage
  15. {
  16. public MyPage()
  17. {
  18. InitializeComponent();
  19.  
  20. var responseBtn = new UserResponseModel(1, "yes");
  21. var responseBtn2 = new UserResponseModel(2, "no");
  22. List<UserResponseModel> inter = new List<UserResponseModel>();
  23. inter.Add(responseBtn);
  24. inter.Add(responseBtn2);
  25. var sentimentModel = new SentimentFollowupModel()
  26. {
  27. Interaction = new BotInteraction()
  28. {
  29. IsUser = true,
  30. ShowMessage = true,
  31. SpokenWord = "Long message for testing by asking if the user still hunguray or not thats all",
  32. InteractionType = (int)InteractionTypes.Answer,
  33. UserResponseBtns = inter
  34. },
  35. EncounterId = 6,
  36. EncounterHistoryId = 6
  37. };
  38.  
  39. //Show Sentiment Followup
  40. Device.BeginInvokeOnMainThread(async () =>
  41. {
  42. await PopupNavigation.Instance.PushAsync(new SentimentFollowupPage(sentimentModel), true);
  43.  
  44. });
  45.  
  46. }
  47. }
  48. }
Add Comment
Please, Sign In to add comment