summaryrefslogtreecommitdiff
path: root/Juick/MainPage.xaml.cs
blob: d6b0b086a83b435b6ef2756dbf16ba8f077fffbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Notification;
using Microsoft.Phone.Shell;

namespace Juick
{
    public partial class MainPage : PhoneApplicationPage
    {
        // Constructor
        public MainPage()
        {
            // Holds the push channel that is created or found.
            //HttpNotificationChannel pushChannel; // unused variable

            // The name of our push channel.
            //string channelName = "JuickChannel"; // unused variable

            InitializeComponent();
            
            /*      // Try to find the push channel.
                  pushChannel = HttpNotificationChannel.Find(channelName);

                  // If the channel was not found, then create a new connection to the push service.
                  if (pushChannel == null)
                  {
                      pushChannel = new HttpNotificationChannel(channelName);

                      // Register for all the events before attempting to open the channel.
                      pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
                      pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);

                      // Register for this notification only if you need to receive the notifications while your application is running.
                      pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);

                      pushChannel.Open();

                      // Bind this new channel for toast events.
                      pushChannel.BindToShellToast();

                  }
                  else
                  {
                      // The channel was already open, so just register for all the events.
                      pushChannel.ChannelUriUpdated += new EventHandler<NotificationChannelUriEventArgs>(PushChannel_ChannelUriUpdated);
                      pushChannel.ErrorOccurred += new EventHandler<NotificationChannelErrorEventArgs>(PushChannel_ErrorOccurred);

                      // Register for this notification only if you need to receive the notifications while your application is running.
                      pushChannel.ShellToastNotificationReceived += new EventHandler<NotificationEventArgs>(PushChannel_ShellToastNotificationReceived);

                      // Display the URI for testing purposes. Normally, the URI would be passed back to your web service at this point.
                      System.Diagnostics.Debug.WriteLine(pushChannel.ChannelUri.ToString());
                      MessageBox.Show(String.Format("Channel Uri is {0}",
                          pushChannel.ChannelUri.ToString()));

                  }*/

            // Set the data context of the listbox control to the sample data
            Home.DataContext = App.MyFeedView;
            Last.DataContext = App.LastView;
            Loaded += (o, args) =>
            {
                var progressIndicator = SystemTray.ProgressIndicator;

                if (progressIndicator != null)
                {
                    return;
                }

                progressIndicator = new ProgressIndicator();

                SystemTray.SetProgressIndicator(this, progressIndicator);

                Binding binding = new Binding("IsDataLoading") { Source = Home.DataContext };

                BindingOperations.SetBinding(
                    progressIndicator, ProgressIndicator.IsVisibleProperty, binding);

                binding = new Binding("IsDataLoading") { Source = Home.DataContext };

                BindingOperations.SetBinding(
                    progressIndicator, ProgressIndicator.IsIndeterminateProperty, binding);
            };
        }

        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
        {
            var loginUriPart = "/LoginView.xaml";
            var newPostUriPart = "/NewPostView.xaml";
            var navigateUri = string.Empty;
            var FileId = string.Empty;
            // Get a dictionary of query string keys and values.
            IDictionary<string, string> queryStrings = NavigationContext.QueryString;

            // Ensure that there is at least one key in the query string, and check 
            // whether the "FileId" key is present.

            navigateUri = string.IsNullOrEmpty(App.Account.Credentials.UserName) ? loginUriPart : newPostUriPart;
            if (queryStrings.ContainsKey("FileId"))
            {
                FileId = queryStrings["FileId"];
                navigateUri = string.Format("{0}?FileId={1}", navigateUri, FileId);
            }
            if (!string.IsNullOrEmpty(FileId) || navigateUri.StartsWith(loginUriPart))
            {
                NavigationService.Navigate(new Uri(navigateUri, UriKind.Relative));
            }
        }

        void PushChannel_ChannelUriUpdated(object sender, NotificationChannelUriEventArgs e)
        {

            Dispatcher.BeginInvoke(() =>
            {
                // Display the new URI for testing purposes.   Normally, the URI would be passed back to your web service at this point.
                System.Diagnostics.Debug.WriteLine(e.ChannelUri.ToString());
                MessageBox.Show(String.Format("Channel Uri is {0}",
                    e.ChannelUri.ToString()));

            });
        }
        void PushChannel_ShellToastNotificationReceived(object sender, NotificationEventArgs e)
        {
            StringBuilder message = new StringBuilder();
            string relativeUri = string.Empty;

            message.AppendFormat("Received Toast {0}:\n", DateTime.Now.ToShortTimeString());

            // Parse out the information that was part of the message.
            foreach (string key in e.Collection.Keys)
            {
                message.AppendFormat("{0}: {1}\n", key, e.Collection[key]);

                if (string.Compare(
                    key,
                    "wp:Param",
                    System.Globalization.CultureInfo.InvariantCulture,
                    System.Globalization.CompareOptions.IgnoreCase) == 0)
                {
                    relativeUri = e.Collection[key];
                }
            }

            // Display a dialog of all the fields in the toast.
            Dispatcher.BeginInvoke(() => MessageBox.Show(message.ToString()));

        }
        void PushChannel_ErrorOccurred(object sender, NotificationChannelErrorEventArgs e)
        {
            // Error handling logic for your particular application would be here.
            Dispatcher.BeginInvoke(() =>
                MessageBox.Show(String.Format("A push notification {0} error occurred.  {1} ({2}) {3}",
                    e.ErrorType, e.Message, e.ErrorCode, e.ErrorAdditionalData))
                    );
        }

        private void ApplicationBarIconButtonClick(object sender, EventArgs e)
        {
            App.MyFeedView.Items.Clear();
            App.LastView.Items.Clear();
            App.MyFeedView.LoadData();
            App.LastView.LoadData();
        }

        private void ApplicationBarMenuItemClick(object sender, EventArgs e)
        {
            App.Account.SignOut(this);
        }

        private void ApplicationBarIconButtonClick1(object sender, EventArgs e)
        {
            NavigationService.Navigate(new Uri("/NewPostView.xaml", UriKind.Relative));
        }
    }
}