-
Notifications
You must be signed in to change notification settings - Fork 9
/
MCHtmlBuilder.cs
262 lines (235 loc) · 12 KB
/
MCHtmlBuilder.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Text;
namespace MessengerComparison
{
public class MCHtmlBuilder
{
public static List<string> Languages { get; set; }
public static DateTime OriginalUpdatedDate { get; set; }
Dictionary<string, string> GeneralData { get; set; }
List<Group> ComparisonData { get; set; }
string Language { get; set; }
string LastUpdatedDateText { get; set; }
bool IsTranslationOutOfDate { get; set; }
public MCHtmlBuilder(string language, Dictionary<string, string> generalData,
List<Group> comparisonData, DateTime lastUpdatedDate)
{
Language = language;
GeneralData = generalData;
ComparisonData = comparisonData;
LastUpdatedDateText = GetLastUpdatedDateText(lastUpdatedDate);
IsTranslationOutOfDate = IsOutdated(OriginalUpdatedDate, lastUpdatedDate);
}
public string Build()
{
var html = string.Empty;
StringBuilder builder = new StringBuilder();
builder.AppendLine(
$@"<!DOCTYPE html>
<html lang=""{Language}"">
<head>
<meta name=""viewport"" content=""width=device-width"">
<meta http-equiv=""content-type"" content=""text/html; charset=utf-8"" />
<meta property=""og:site_name"" content=""MessengerComparison"">
<meta property=""og:title"" content=""{GeneralData["Headline"]}"">
<meta property=""og:description"" content=""{GeneralData["Description"]}"">
<meta property=""og:image"" content=""https://jayxt.github.io/MessengerComparison/preview.png"">
<title>MessengerComparison</title>
<link rel=""shortcut icon"" href=""../favicon.ico"" type=""image/x-icon"">
<link href=""https://fonts.googleapis.com/css?family=Noto+Sans"" rel=""stylesheet"">
<link rel=""stylesheet"" type=""text/css"" href=""../css/styles.css"">
</head>
<body>
<div class=""language"">
{GetLanguages()}
</div>
<section class=""main"">
<div class=""headline"">
<h1>{GeneralData["Headline"]}</h1>
{(GeneralData.ContainsKey("Notice") && !string.IsNullOrEmpty(GeneralData["Notice"]) ?
$"<h2 class=\"warning\">{GeneralData["Notice"].ToHtml()}{GeneralData["UpdatedText"]} {LastUpdatedDateText}</h2>" : "")}
{(IsTranslationOutOfDate ?
$"<h2 class=\"warning\">Translation is out of date: {LastUpdatedDateText}</h2>" : "")}
</div>
<table>
<colgroup>
<col class=""feature-col"">
<col class=""service-col"">
<col class=""service-col"">
<col class=""service-col"">
</colgroup>
<thead>
<tr>
<th class=""header"">{GeneralData["Feature"]}</th>
<th class=""header"">
<span class=""telegram-icon"">{GeneralData["Telegram"]}</span>
</th>
<th class=""header"">
<span class=""viber-icon"">{GeneralData["Viber"]}</span>
</th>
<th class=""header"">
<span class=""whatsapp-icon"">{GeneralData["WhatsApp"]}</span>
</th>
</tr>
</thead>
<tbody>
");
string value = string.Empty;
string score = string.Empty;
int aspectRowspan;
bool aspectWasAdded;
foreach (var group in ComparisonData)
foreach (var aspect in group.Aspects)
{
aspectRowspan = aspect.Features.Count;
aspectWasAdded = false;
bool TelegramFeaturesPresent = aspect.AreTelegramFeaturesPresent();
bool ViberFeaturesPresent = aspect.AreViberFeaturesPresent();
bool WhatsAppFeaturesPresent = aspect.AreWhatsAppFeaturesPresent();
string categoryLink = $"{group.GroupName}--{aspect.AspectName}"
.ToUrlString();
builder.AppendLine($@"
<tr>
<th scope=""col"" class=""category"" colspan=""4"">
<div class=""category-container"">
<span class=""group-text"">
<a class=""anchor"" name=""{categoryLink}"" href=""#{categoryLink}"">
<i class=""anchor-icon""></i>
</a>
{group.GroupName}
</span>
<span class=""category-arrow"">→</span>
<span class=""aspect-text"">{aspect.AspectName}</span>
</div>
</th>
</tr>
");
foreach (var feature in aspect.Features)
{
builder.AppendLine(
"<tr>");
builder.AppendLine($@"
<td>{feature.FeatureName.ToHtml()}</td>
");
if (feature.Telegram != null)
{
(score, value) = feature.Telegram.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"">{value}</td>
");
}
else if (TelegramFeaturesPresent && feature.Telegram == null)
{
builder.AppendLine($@"
<td class=""disadvantage"">—</td>
");
}
else if (!aspectWasAdded && !TelegramFeaturesPresent && aspect.Telegram != null)
{
(score, value) = aspect.Telegram.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"" rowspan=""{aspectRowspan}"">{value}</td>
");
}
else if (!aspectWasAdded && !TelegramFeaturesPresent && aspect.Telegram == null)
{
builder.AppendLine($@"
<td class=""disadvantage"" rowspan=""{aspectRowspan}"">—</td>
");
}
if (feature.Viber != null)
{
(score, value) = feature.Viber.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"">{value}</td>
");
}
else if (ViberFeaturesPresent && feature.Viber == null)
{
builder.AppendLine($@"
<td class=""disadvantage"">—</td>
");
}
else if (!aspectWasAdded && !ViberFeaturesPresent && aspect.Viber != null)
{
(score, value) = aspect.Viber.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"" rowspan=""{aspectRowspan}"">value</td>
");
}
else if (!aspectWasAdded && !ViberFeaturesPresent && aspect.Viber == null)
{
builder.AppendLine($@"
<td class=""disadvantage"" rowspan=""{aspectRowspan}"">—</td>
");
}
if (feature.WhatsApp != null)
{
(score, value) = feature.WhatsApp.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"">{value}</td>
");
}
else if (WhatsAppFeaturesPresent && feature.WhatsApp == null)
{
builder.AppendLine($@"
<td class=""disadvantage"">—</td>
");
}
else if (!aspectWasAdded && !WhatsAppFeaturesPresent && aspect.WhatsApp != null)
{
(score, value) = aspect.WhatsApp.GetScoreValue();
builder.AppendLine($@"
<td class=""{score}"" rowspan=""{aspectRowspan}"">{value}</td>
");
}
else if (!aspectWasAdded && !WhatsAppFeaturesPresent && aspect.WhatsApp == null)
{
builder.AppendLine($@"
<td class=""disadvantage"" rowspan=""{aspectRowspan}"">—</td>
");
}
aspectWasAdded = true;
builder.AppendLine($@"
</tr>");
}
}
builder.AppendLine($@"
</tbody>
</table>
<p class=""updated-date"">
{GeneralData["UpdatedText"]} {LastUpdatedDateText} <br><br>
{GeneralData["Author"].ToHtml()}
</p>
</section>
</body>
</html>
");
return builder.ToString();
}
private string GetLanguages()
{
var languagesHtml = string.Empty;
foreach (var lang in Languages)
languagesHtml += (lang == Language) ?
$"<h4>{lang.ToUpper()}</h4>\n" :
$"<a href=\"../{lang}\">{lang.ToUpper()}</a>\n";
return languagesHtml;
}
private string GetLastUpdatedDateText(DateTime lastUpdated)
{
CultureInfo ci = new CultureInfo(Language);
if (GeneralData.ContainsKey("UpdatedDate") &&
!string.IsNullOrEmpty(GeneralData["UpdatedDate"]))
return GeneralData["UpdatedDate"];
return lastUpdated.ToString(GeneralData["UpdatedFormat"], ci);
}
private bool IsOutdated(DateTime originalDate, DateTime translationDate)
{
return originalDate > translationDate &&
(originalDate - translationDate) > TimeSpan.FromDays(180);
}
}
}