hgame 0.26.4

CG production management structs, e.g. of assets, personnels, progress, etc.
Documentation
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
use super::*;

// ----------------------------------------------------------------------------
#[derive(Debug, Clone, Default)]
pub struct QueryMsgFilter {
    /// The viewer of the message boxes.
    sender: Staff,

    recipients: HashSet<Staff>,

    /// Filters by the [`ProductionAsset`] which `QueryMsg`s can be about.
    /// Keep this at [`Option::None`] when querying about any topical assets.
    topical_assets: Option<HashSet<ProductionAsset>>,

    /// Filters by a range during which a [`QueryMsg`] was sent.
    date_range: Option<DateRange>,
}

impl QueryMsgFilter {
    pub fn today(start_day_offset: i64, id_source: Option<&str>) -> Self {
        Self {
            date_range: Some(DateRange::today_local(start_day_offset, id_source)),
            ..Default::default()
        }
    }

    pub fn with_assets(mut self, assets: Option<HashSet<ProductionAsset>>) -> Self {
        self.topical_assets = assets;
        self
    }

    pub fn sender(mut self, sender: Staff) -> Self {
        self.sender = sender;
        self
    }

    pub fn include_recipient(mut self, user: Staff) -> Self {
        self.recipients.insert(user);
        self
    }

    pub fn date_range(mut self, date_range: &DateRange) -> Self {
        self.date_range = Some(date_range.clone());
        self
    }

    pub fn date_range_owned(mut self, range: DateRange) -> Self {
        self.date_range = Some(range);
        self
    }

    pub fn sender_name(&self) -> &String {
        self.sender.name_unwrap()
    }

    pub fn recipients_name(&self) -> Vec<&str> {
        self.recipients
            .iter()
            .map(|r| r.name_unwrap().as_str())
            .collect()
    }

    pub fn is_topical_assets_none(&self) -> bool {
        self.topical_assets.is_none()
    }

    pub fn assets_ids_unwrap(&self) -> Vec<&ObjectId> {
        self.topical_assets
            .as_ref()
            .unwrap()
            .iter()
            .filter_map(|a| a.bson_id_as_ref())
            .collect()
    }

    pub fn into_assets_ids_unwrap(self) -> Vec<ObjectId> {
        self.topical_assets
            .unwrap()
            .into_iter()
            .filter_map(|a| a.bson_id_owned())
            .collect()
    }

    pub fn date_range_as_ref_unwrap(&self) -> &DateRange {
        self.date_range.as_ref().unwrap()
    }

    #[cfg(feature = "gui")]
    pub fn date_range_ui_unwrap(&mut self, ui: &mut egui::Ui) {
        self.date_range.as_mut().unwrap().ui(ui);
    }

    pub fn date_range_end_today_mut_if_unmodified_unwrap(&mut self) {
        self.date_range
            .as_mut()
            .unwrap()
            .end_today_mut_if_unmodified();
    }

    pub fn date_range_mut_unwrap(&mut self, range: DateRange) {
        *self.date_range.as_mut().unwrap() = range;
    }

    pub fn start_datetime_unwrap(&self) -> DateTime<Utc> {
        self.date_range.as_ref().unwrap().start_datetime()
    }

    pub fn end_datetime_unwrap(&self) -> DateTime<Utc> {
        self.date_range.as_ref().unwrap().end_datetime()
    }
}

// ----------------------------------------------------------------------------
#[derive(Debug, Clone)]
/// Each "message box" variant can have slightly different UI formats or behaviours.
pub enum QmsBox {
    /// Messages of any topics or methods of creation.
    Mixed(Messages),

    /// Messages that are composed manually.
    Handwritten(Messages),

    /// Messages that are sent automatically, -- without the users aware --,
    /// whenever certain actions are done.
    System(Messages),

    /// Messages that are sent by certain person.
    Sent(Messages),
}

impl QmsBox {
    pub fn uninitialized() -> Result<Self, DatabaseError> {
        Err(anyhow!("Idling").into())
    }

    /// Constructor of `Self::Mixed(_)`.
    pub fn empty_mixed() -> Self {
        Self::Mixed(Messages::empty())
    }

    /// Constructor of `Self::Handwritten(_)`.
    pub fn empty_handwritten() -> Self {
        Self::Handwritten(Messages::empty())
    }

    /// Constructor of `Self::System(_)`.
    pub fn empty_system() -> Self {
        Self::System(Messages::empty())
    }

    /// Constructor of `Self::Sent(_)`.
    pub fn empty_sent() -> Self {
        Self::Sent(Messages::empty())
    }

    /// Retains the variant while replacing the inner `Messages`.
    pub fn with_inner(self, inner: Messages) -> Self {
        match self {
            Self::Mixed(_) => Self::Mixed(inner),
            Self::Handwritten(_) => Self::Handwritten(inner),
            Self::System(_) => Self::System(inner),
            Self::Sent(_) => Self::Sent(inner),
        }
    }

    fn drain_messages(&mut self) -> Vec<QueryMsg> {
        match self {
            Self::Mixed(inner)
            | Self::Handwritten(inner)
            | Self::System(inner)
            | Self::Sent(inner) => inner.drain().into_iter().collect(),
        }
    }

    pub fn println_each(&self) {
        match self {
            Self::Mixed(inner) => {
                inner.println_each();
            }
            Self::Handwritten(inner) => {
                inner.println_each();
            }
            Self::System(inner) => {
                inner.println_each();
            }
            Self::Sent(inner) => {
                inner.println_each();
            }
        }
    }
}

#[cfg(feature = "gui")]
/// All UI-related methods.
impl QmsBox {
    fn label(&self) -> &'static str {
        match &self {
            Self::Mixed(_) => "Mixed",
            Self::Handwritten(_) => "Chat",
            Self::System(_) => "System",
            Self::Sent(_) => "Sent",
        }
    }

    fn len_hint(&self) -> RichText {
        match &self {
            Self::Mixed(inner)
            | Self::Handwritten(inner)
            | Self::System(inner)
            | Self::Sent(inner) => RichText::new(&inner.len_hint).color(Color32::LIGHT_GRAY),
        }
    }

    fn unread_count(&self) -> Option<RichText> {
        match &self {
            Self::Mixed(inner)
            | Self::Handwritten(inner)
            | Self::System(inner)
            | Self::Sent(inner) => {
                if let Some(unread) = &inner.unread_count {
                    Some(
                        RichText::new(unread)
                            .background_color(Color32::RED)
                            .color(Color32::WHITE),
                    )
                } else {
                    None
                }
            }
        }
    }

    fn batch_actions_ui(&mut self, ui: &mut egui::Ui, tx: &Sender<MsgAction>) {
        ui.with_layout(Layout::right_to_left(Align::Min), |ui| {
            if ui
                .button("― All")
                .on_hover_text("Mark all as unread")
                .clicked()
            {
                tx.send(MsgAction::BatchUpdateReadState(
                    self.drain_messages(),
                    ReadState::Unread,
                ))
                .ok();
            };

            if ui
                .button("👁 All")
                .on_hover_text("Mark all as read")
                .clicked()
            {
                tx.send(MsgAction::BatchUpdateReadState(
                    self.drain_messages(),
                    ReadState::Read,
                ))
                .ok();
            };
        });
    }

    fn title_ui(&mut self, ui: &mut egui::Ui, tx: &Sender<MsgAction>) {
        ui.horizontal(|ui| {
            ui.heading(self.label());

            if let Self::Sent(_) = self {
                // skips len hint, unread count, and batch actions, for Sent box
                return;
            };

            // len hint
            if let Some(unread) = self.unread_count() {
                ui.heading(unread);
            };
            ui.label(self.len_hint());

            // batch actions
            self.batch_actions_ui(ui, tx);
        });
    }

    pub fn ui(&mut self, ui: &mut egui::Ui, tx: &Sender<MsgAction>, order: &CreatedAtOrdering) {
        ui.vertical(|ui| {
            self.title_ui(ui, tx);
            ui.separator();

            egui::ScrollArea::vertical()
                .id_source(self.label())
                // it's hard to use `egui::ScrollArea::show_rows` here
                .show(ui, |ui| {
                    match self {
                        Self::Mixed(inner) => {
                            inner.mixed_msg_ui(ui, tx, order);
                        }
                        Self::Handwritten(inner) => {
                            inner.handwritten_msg_ui(ui, tx, order);
                        }
                        Self::System(inner) => {
                            inner.system_msg_ui(ui, tx, order);
                        }
                        Self::Sent(inner) => {
                            inner.sent_msg_ui(ui, tx, order);
                        }
                    };
                });
        });
    }
}

// ----------------------------------------------------------------------------
#[derive(Debug, Clone)]
/// Container of sequence of `Messages` that all meets some common criteria.
pub struct Messages {
    messages: Vec<QueryMsg>,

    /// Baked hint of `Self::messages`' length.
    len_hint: String,

    unread_count: Option<String>,
}

impl Messages {
    pub fn empty() -> Self {
        Self {
            messages: vec![],
            len_hint: String::new(),
            unread_count: None,
        }
    }

    fn drain(&mut self) -> std::vec::Drain<'_, QueryMsg> {
        self.unread_count.take();
        self.len_hint = "Being drained...".to_owned();
        self.messages.drain(..)
    }

    /// Prints each [`QueryMsg`] and separates them with a new line.
    fn println_each(&self) {
        for msg in self.messages.iter() {
            println!("\n{:?}", msg);
        }
    }
}

#[cfg(feature = "gui")]
impl Messages {
    fn mixed_msg_ui(
        &mut self,
        ui: &mut egui::Ui,
        tx: &Sender<MsgAction>,
        order: &CreatedAtOrdering,
    ) {
        match order {
            CreatedAtOrdering::NewestFirst => {
                self.messages.iter_mut().for_each(|m| {
                    m.mixed_msg_ui(ui, tx);
                });
            }
            CreatedAtOrdering::OldestFirst => {
                self.messages.iter_mut().rev().for_each(|m| {
                    m.mixed_msg_ui(ui, tx);
                });
            }
        }
    }

    fn handwritten_msg_ui(
        &mut self,
        ui: &mut egui::Ui,
        tx: &Sender<MsgAction>,
        order: &CreatedAtOrdering,
    ) {
        match order {
            CreatedAtOrdering::NewestFirst => {
                self.messages.iter_mut().for_each(|m| {
                    m.handwritten_msg_ui(ui, tx);
                });
            }
            CreatedAtOrdering::OldestFirst => {
                self.messages.iter_mut().rev().for_each(|m| {
                    m.handwritten_msg_ui(ui, tx);
                });
            }
        }
    }

    fn system_msg_ui(
        &mut self,
        ui: &mut egui::Ui,
        tx: &Sender<MsgAction>,
        order: &CreatedAtOrdering,
    ) {
        match order {
            CreatedAtOrdering::NewestFirst => {
                self.messages.iter_mut().for_each(|m| {
                    m.system_msg_ui(ui, tx);
                });
            }
            CreatedAtOrdering::OldestFirst => {
                self.messages.iter_mut().rev().for_each(|m| {
                    m.system_msg_ui(ui, tx);
                });
            }
        }
    }

    fn sent_msg_ui(
        &mut self,
        ui: &mut egui::Ui,
        tx: &Sender<MsgAction>,
        order: &CreatedAtOrdering,
    ) {
        match order {
            CreatedAtOrdering::NewestFirst => {
                self.messages.iter_mut().for_each(|m| {
                    m.sent_msg_ui(ui, tx);
                });
            }
            CreatedAtOrdering::OldestFirst => {
                self.messages.iter_mut().rev().for_each(|m| {
                    m.sent_msg_ui(ui, tx);
                });
            }
        }
    }
}

impl From<Vec<QueryMsg>> for Messages {
    fn from(messages: Vec<QueryMsg>) -> Self {
        let len = messages.len();
        let unread = messages.iter().filter(|m| !m.ext.seen_by_self).count();
        let len_hint = if let Ordering::Greater = unread.cmp(&0) {
            format!("/{}", len)
        } else {
            format!("({})", len)
        };
        let unread_count = if let Ordering::Greater = unread.cmp(&0) {
            Some(format!("{}", unread))
        } else {
            None
        };
        Self {
            messages,
            len_hint,
            unread_count,
        }
    }
}