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
|
using System;
using System.Linq;
using System.Windows.Controls;
using System.Windows.Navigation;
using Juick.ViewModels;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using System.Windows.Data;
using System.Windows;
using RestSharp;
using System.Net;
namespace Juick
{
public partial class ThreadView : PhoneApplicationPage
{
public ThreadView()
{
InitializeComponent();
Model = new ThreadViewModel(App.AppContext);
DataContext = Model;
Loaded += (o, args) =>
{
var progressIndicator = SystemTray.ProgressIndicator;
if (progressIndicator != null)
{
return;
}
progressIndicator = new ProgressIndicator();
SystemTray.SetProgressIndicator(this, progressIndicator);
Binding binding = new Binding("IsDataLoading") { Source = App.AppContext };
BindingOperations.SetBinding(
progressIndicator, ProgressIndicator.IsVisibleProperty, binding);
binding = new Binding("IsDataLoading") { Source = App.AppContext };
BindingOperations.SetBinding(
progressIndicator, ProgressIndicator.IsIndeterminateProperty, binding);
};
}
public ThreadViewModel Model;
// When page is navigated to set data context to selected item in list
protected override void OnNavigatedTo(NavigationEventArgs e)
{
if (Model.Items.Count > 0)
return;
string _mid = "";
if (NavigationContext.QueryString.TryGetValue("mid", out _mid))
{
Model.Mid = int.Parse(_mid);
}
Model.RefreshData();
}
private void ListBox_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
// If selected index is -1 (no selection) do nothing
if (((ListBox)sender).SelectedIndex == -1)
return;
// Navigate to the new page
var item = Model.Items[((ListBox)sender).SelectedIndex];
var destUri = string.Format("/NewPostView.xaml?mid={0}", item.MID);
if (item.RID > 0)
destUri += string.Format("&rid={0}", item.RID);
NavigationService.Navigate(new Uri(destUri, UriKind.Relative));
// Reset selected index to -1 (no selection)
((ListBox)sender).SelectedIndex = -1;
}
void RecommendBarMenuItem_Click(object sender, EventArgs e)
{
ExecuteJuickAction("!");
}
void SubscribeBarMenuItem_Click(object sender, EventArgs e)
{
ExecuteJuickAction("S");
}
void UnsubscribeBarMenuItem_Click(object sender, EventArgs e)
{
ExecuteJuickAction("U");
}
void ExecuteJuickAction(string action)
{
var request = new RestRequest("/post", Method.POST);
request.AddParameter("body", string.Concat(action, " #", Model.Mid));
App.AppContext.Client.ExecuteAsync(request, response =>
{
App.AppContext.IsDataLoading = false;
if(response.StatusCode != HttpStatusCode.OK || !string.IsNullOrEmpty(response.Content))
{
MessageBox.Show(string.Concat(response.StatusCode, ": ", response.Content));
}
});
App.AppContext.IsDataLoading = true;
}
}
}
|