Ejemplo n.º 1
0
 private void OnFinishSignup(object sender, ResponseDataJson e)
 {
     if (e.Code == ResponseCode.OK)
     {
         Utils.ShowPageFirstInStack(this, new HomePage());
     }
 }
Ejemplo n.º 2
0
 private void OnStatusChanged(ResponseDataJson r)
 {
     UIUtils.HideSpinner(this, spinner);
     if (r.Code == ResponseCode.OK && r.Result == "true")
     {
         RefreshData();
     }
     else
     {
         UIUtils.ShowMessage("Server does not response", this);
     }
 }
Ejemplo n.º 3
0
 private void OnDataLoad(ResponseDataJson r)
 {
     if (r.Code == ResponseCode.OK)
     {
         appData = JArray.Parse(r.Result);
         Device.BeginInvokeOnMainThread(() =>
         {
             UpdateConfirmCount();
             OnTabChange(listView, currentTabIndex);
         });
     }
     else
     {
         UIUtils.ShowMessage("Server does not response", this);
     }
     UIUtils.HideSpinner(this, spinner);
 }
Ejemplo n.º 4
0
 private void AddOrUpdateAppointmentResult(ResponseDataJson resp)
 {
     UIUtils.HideSpinner(this, spinner);
     if (resp.Code == ResponseCode.OK && resp.Result == "true")
     {
         Device.BeginInvokeOnMainThread(() =>
         {
             tabView.IsVisible = false;
             if (tabViewContent != null)
             {
                 tabViewContent.IsVisible = false;
                 alertInfo.IsVisible      = false;
             }
             info.Children.Add(new Label {
                 Text = "Your beauty professional has received\n your booking request and will get back\n "
                        + " to you shortly.\n\n"
                        + "You can check out the status of your\n request on the MyAppointments\n menu item",
                 TextColor  = Color.Black,
                 FontFamily = UIUtils.FONT_SFUIDISPLAY_REGULAR,
                 HorizontalTextAlignment = TextAlignment.Center,
                 VerticalOptions         = LayoutOptions.CenterAndExpand,
                 Margin = new Thickness(10)
             });
             continueButton.IsVisible = true;
             continueButton.Clicked  -= OnContinueClick;
             continueButton.Clicked  += (o, a) =>
             {
                 Utils.ShowPageFirstInStack(this, new CustomerAppointments());
             };
             continueButton.Text = "CHECK MY APPOINTMENTS";
             header = UIUtils.MakeHeader(this, "Booking Confirmed");
             main.Children.RemoveAt(0);
             main.Children.Insert(0, header);
         });
     }
     else
     {
         UIUtils.ShowMessage("Booking was not added. Try later.", this);
     }
 }