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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
use crate::signalboost::Person;
use chrono::prelude::*;
use maud::{html, Markup, Render};
use serde::{Deserialize, Serialize};
use std::{
collections::HashMap,
fmt::{self, Display},
};
mod markdown_string;
use markdown_string::MarkdownString;
#[derive(Clone, Deserialize, Default)]
pub struct Config {
pub signalboost: Vec<Person>,
pub authors: HashMap<String, Author>,
#[serde(rename = "defaultAuthor")]
pub default_author: Author,
pub port: u16,
#[serde(rename = "clackSet")]
pub clack_set: Vec<String>,
#[serde(rename = "miToken")]
pub mi_token: String,
#[serde(rename = "jobHistory")]
pub job_history: Vec<Job>,
#[serde(rename = "seriesDescriptions")]
pub series_descriptions: Vec<SeriesDescription>,
#[serde(rename = "seriesDescMap")]
pub series_desc_map: HashMap<String, String>,
#[serde(rename = "notableProjects")]
pub notable_projects: Vec<Link>,
#[serde(rename = "contactLinks")]
pub contact_links: Vec<Link>,
pub pronouns: Vec<PronounSet>,
pub characters: Vec<Character>,
pub vods: Vec<VOD>,
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct PronounSet {
pub nominative: String,
pub accusative: String,
#[serde(rename = "possessiveDeterminer")]
pub possessive_determiner: String,
pub possessive: String,
pub reflexive: String,
pub singular: bool,
}
impl Render for PronounSet {
fn render(&self) -> Markup {
html! {
big { (self.nominative) "/" (self.accusative) }
table {
tr {
th { "Subject" }
td {(self.nominative)}
}
tr {
th { "Object" }
td {(self.accusative)}
}
tr {
th { "Dependent Possessive" }
td {(self.possessive_determiner)}
}
tr {
th { "Independent Possessive" }
td {(self.possessive)}
}
tr {
th { "Reflexive" }
td {(self.reflexive)}
}
}
p {"Here are some example sentences with these pronouns:"}
ul {
li { i{(self.nominative)} " went to the park." }
li { "I went with " i{(self.accusative)} "." }
li { i{(self.nominative)} " brought " i{(self.possessive_determiner)} " frisbee." }
li { "At least I think it was " i{(self.possessive)} "." }
li { i{(self.nominative)} " threw the frisbee to " i{(self.reflexive)} "." }
}
@if !self.singular {
p {
"Please note that this pronoun is normally a plural pronoun. It is used here to refer to a single person. For more information on this, see "
a href="https://www.merriam-webster.com/words-at-play/singular-nonbinary-they" {"this page from Merriam-Webster"}
" that will explain in more detail."
}
}
}
}
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Character {
pub name: String,
#[serde(rename = "stickerName")]
pub sticker_name: String,
#[serde(rename = "defaultPose")]
pub default_pose: String,
pub description: MarkdownString,
pub pronouns: PronounSet,
pub stickers: Vec<String>,
}
impl Render for Character {
fn render(&self) -> Markup {
html! {
h3 #(self.sticker_name) {(self.name)}
(xesite_templates::sticker(self.sticker_name.clone(), self.default_pose.clone()))
p {(self.description)}
details {
summary { "Pronouns (" (self.pronouns.nominative) "/" (self.pronouns.accusative) ")" }
(self.pronouns)
}
details {
summary { "All stickers" }
.grid {
@for sticker in &self.stickers {
.cell."-3of12" {
(xesite_templates::sticker(self.sticker_name.clone(), sticker.clone()))
br;
(sticker)
}
}
}
}
}
}
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Link {
pub url: String,
pub title: String,
pub description: String,
}
impl Render for Link {
fn render(&self) -> Markup {
html! {
span {
a href=(self.url) {(self.title)}
@if !self.description.is_empty() {
": "
(self.description)
}
}
}
}
}
#[derive(Clone, Default, Deserialize, Serialize)]
pub enum StockKind {
Grant,
#[default]
Options,
}
fn schema_context() -> String {
"http://schema.org/".to_string()
}
fn schema_person_type() -> String {
"Person".to_string()
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Author {
#[serde(rename = "@context", default = "schema_context")]
pub context: String,
#[serde(rename = "@type", default = "schema_person_type")]
pub schema_type: String,
pub name: String,
#[serde(skip_serializing)]
pub handle: String,
#[serde(rename = "image", skip_serializing_if = "Option::is_none")]
pub pic_url: Option<String>,
#[serde(rename = "inSystem", skip_serializing)]
pub in_system: bool,
#[serde(rename = "jobTitle")]
pub job_title: String,
#[serde(rename = "sameAs")]
pub same_as: Vec<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub url: Option<String>,
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct SeriesDescription {
pub name: String,
pub details: String,
}
impl Render for SeriesDescription {
fn render(&self) -> Markup {
html! {
span {
a href={"/blog/series/" (self.name)} { (self.name) }
": "
(self.details)
}
}
}
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Stock {
pub amount: i32,
#[serde(rename = "cliffYears")]
pub cliff_years: i32,
pub kind: StockKind,
pub liquid: bool,
#[serde(rename = "vestingYears")]
pub vesting_years: i32,
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Location {
pub city: String,
#[serde(rename = "stateOrProvince")]
pub state_or_province: String,
pub country: String,
pub remote: bool,
}
#[derive(Clone, Deserialize, Serialize, Default)]
pub struct Salary {
pub amount: i32,
pub per: String,
pub currency: String,
pub stock: Option<Stock>,
}
impl Display for Salary {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}${}/{}", self.currency, self.amount, self.per)
}
}
impl Render for Salary {
fn render(&self) -> Markup {
if self.stock.is_none() {
return html! { (maud::display(self)) };
}
|