This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Utils.cs
232 lines (210 loc) · 5.16 KB
/
Utils.cs
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO.IsolatedStorage;
using System.Windows;
using System.Windows.Data;
using Coding4Fun.Phone.Controls;
namespace LilyBBS
{
public class Utils
{
public static void ShowIndicator(string text=null)
{
var app = Application.Current as App;
app.Indicator.Text = text;
app.Indicator.IsVisible = true;
}
public static void HideIndicator()
{
var app = Application.Current as App;
app.Indicator.Text = "";
app.Indicator.IsVisible = false;
}
}
public class LilyToast : ToastPrompt
{
public LilyToast(string msg=null) : base()
{
Message = msg;
Margin = new Thickness(-20, -20, 0, 0);
FontSize = 24;
}
public void ShowNetworkError()
{
var app = Application.Current as App;
Message = (app.Resources["NetworkErrorMessage"] as NetworkErrorMessage).Message;
Show();
}
public void ShowContentError()
{
var app = Application.Current as App;
Message = "无法正确显示内容";
Show();
}
}
public class NetworkErrorMessage
{
private static List<string> msgList;
public NetworkErrorMessage()
{
msgList = new List<string>();
msgList.Add("连不上网了:-(");
msgList.Add("没网上个毛毛啊");
msgList.Add("亲,把天线插好啊");
}
public string Message
{
get
{
Random rnd = new Random();
return msgList[rnd.Next(msgList.Count)];
}
}
}
public class Settings
{
private const string UsernameKey = "Username";
private const string PasswordKey = "Password";
private const string SignatureKey = "Signature";
private const string IsFirstRunKey = "IsFirstRun";
private const string FavoriteBoardKey = "FavoriteBoard";
private const char FavoriteBoardSep = '\n';
private List<string> favoriteBoardList = null;
private T RetrieveSetting<T>(string key)
{
object ret;
if (IsolatedStorageSettings.ApplicationSettings.TryGetValue(key, out ret))
{
return (T)ret;
}
return default(T);
}
public bool IsFirstRun
{
get
{
object ret;
if (IsolatedStorageSettings.ApplicationSettings.TryGetValue(IsFirstRunKey, out ret))
return (bool)ret;
else
return true;
}
set
{
IsolatedStorageSettings.ApplicationSettings[IsFirstRunKey] = value;
}
}
// TODO invalidate connection.cookie
public string Username
{
get
{
string ret = RetrieveSetting<string>(UsernameKey);
if (ret == null) return "";
else return ret;
}
set
{
IsolatedStorageSettings.ApplicationSettings[UsernameKey] = value;
var app = Application.Current as App;
app.LilyApi.Reset();
}
}
public string Password
{
get
{
string ret = RetrieveSetting<string>(PasswordKey);
if (ret == null) return "";
else return ret;
}
set
{
IsolatedStorageSettings.ApplicationSettings[PasswordKey] = value;
var app = Application.Current as App;
app.LilyApi.Reset();
}
}
public string Signature
{
get
{
string ret = RetrieveSetting<string>(SignatureKey);
if (ret == null) return "";
else return ret;
}
set
{
IsolatedStorageSettings.ApplicationSettings[SignatureKey] = value;
}
}
private string FavoriteBoard
{
get
{
string ret = RetrieveSetting<string>(FavoriteBoardKey);
if (ret == null) return "";
else return ret;
}
set
{
IsolatedStorageSettings.ApplicationSettings[FavoriteBoardKey] = value;
}
}
public List<string> FavoriteBoardList
{
get
{
if (favoriteBoardList == null)
{
if (FavoriteBoard.Length > 0)
favoriteBoardList = new List<string>(FavoriteBoard.Split(FavoriteBoardSep));
else
favoriteBoardList = new List<string>();
}
return favoriteBoardList;
}
}
public void AddFavoriteBoard(string brd)
{
if (FavoriteBoardList.Contains(brd)) return;
FavoriteBoardList.Add(brd);
FavoriteBoardList.Sort();
FavoriteBoard = string.Join(FavoriteBoardSep.ToString(), FavoriteBoardList);
}
public void RemoveFavoriteBoard(string brd)
{
FavoriteBoardList.Remove(brd);
FavoriteBoard = string.Join(FavoriteBoardSep.ToString(), FavoriteBoardList);
}
}
public class IsLoading2TextConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
bool isLoading = (value as bool?).Value;
if (isLoading) return "载入中...";
else return "更多";
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
public class IsLoading2IsEnabledConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return true;
// TODO
bool isLoading = (value as bool?).Value;
if (isLoading) return false;
else return true;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return null;
}
}
}