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
use crate::{
    core::{i18n, ni18n_f, Settings, UnitSystem},
    model::WeightChange,
    plugins::weight::GraphModelWeight,
    plugins::{PluginName, PluginSummaryRow},
    prelude::*,
};
use adw::prelude::*;
use gtk::{glib, subclass::prelude::*};
use uom::si::mass::{kilogram, pound};

mod imp {
    use crate::{core::Database, plugins::PluginSummaryRow, prelude::*, widgets::Arrows};
    use adw::subclass::prelude::*;
    use gtk::{gio, glib, prelude::*, CompositeTemplate};

    #[derive(Debug, CompositeTemplate, Default)]
    #[template(resource = "/dev/Cogitri/Health/ui/plugins/weight/summary.ui")]
    pub struct PluginWeightSummaryRow {
        #[template_child]
        pub weight_change: TemplateChild<gtk::Label>,
        #[template_child]
        pub arrow: TemplateChild<Arrows>,
    }

    #[glib::object_subclass]
    impl ObjectSubclass for PluginWeightSummaryRow {
        const NAME: &'static str = "HealthPluginWeightSummaryRow";
        type ParentType = PluginSummaryRow;
        type Type = super::PluginWeightSummaryRow;

        fn class_init(klass: &mut Self::Class) {
            Self::bind_template(klass);
        }

        fn instance_init(obj: &glib::subclass::InitializingObject<Self>) {
            obj.init_template();
        }
    }

    impl ObjectImpl for PluginWeightSummaryRow {
        fn constructed(&self) {
            self.parent_constructed();

            let obj = self.obj();

            Database::instance().connect_weights_updated(glib::clone!(@weak obj => move |_| {
                gtk_macros::spawn!(async move {
                    obj.update().await;
                });
            }));
        }
    }
    impl WidgetImpl for PluginWeightSummaryRow {}
    impl ListBoxRowImpl for PluginWeightSummaryRow {}
    impl PreferencesRowImpl for PluginWeightSummaryRow {}
    impl ActionRowImpl for PluginWeightSummaryRow {}
    impl PluginSummaryRowImpl for PluginWeightSummaryRow {
        fn update(&self, obj: &PluginSummaryRow) -> PinnedResultFuture<()> {
            Box::pin(gio::GioFuture::new(
                obj,
                glib::clone!(@weak obj => move |_, _, send| {
                    gtk_macros::spawn!(async move {
                        obj.downcast_ref::<super::PluginWeightSummaryRow>()
                            .unwrap()
                            .update()
                            .await;
                        send.resolve(Ok(()));
                    });
                }),
            ))
        }
    }
}

glib::wrapper! {
    /// An implementation of [PluginSummaryRow] giving the user a quick glance over their weight history.
    pub struct PluginWeightSummaryRow(ObjectSubclass<imp::PluginWeightSummaryRow>)
    @extends gtk::Widget, gtk::ListBoxRow, adw::PreferencesRow, adw::ActionRow, PluginSummaryRow,
    @implements gtk::Accessible, gtk::Buildable, gtk::ConstraintTarget;
}

impl PluginWeightSummaryRow {
    pub fn new(name: PluginName) -> Self {
        glib::Object::builder()
            .property("plugin-name", &name)
            .property("activatable", true)
            .build()
    }

    pub async fn update(&self) {
        let imp = self.imp();
        let settings = Settings::instance();
        let mut weight_model = GraphModelWeight::new();
        if let Err(e) = weight_model.reload(glib::TimeSpan::from_days(30)).await {
            glib::g_warning!(crate::config::LOG_DOMAIN, "Failed to reload step data: {e}",);
        }

        if !weight_model.is_empty() {
            let last_weight = if settings.unit_system() == UnitSystem::Imperial {
                weight_model.last_weight().unwrap().get::<pound>()
            } else {
                weight_model.last_weight().unwrap().get::<kilogram>()
            };
            let prev_weight = if settings.unit_system() == UnitSystem::Imperial {
                weight_model.penultimate_weight().unwrap().get::<pound>()
            } else {
                weight_model.penultimate_weight().unwrap().get::<kilogram>()
            };
            let last_weight_round = last_weight.round_decimal_places(1);
            let difference = (last_weight - prev_weight).round_decimal_places(1);
            let change = if difference == 0.0 {
                WeightChange::NoChange
            } else if difference > 0.0 {
                WeightChange::Up
            } else {
                WeightChange::Down
            };
            imp.arrow.set_weight_change(change);
            let subtitle = if settings.unit_system() == UnitSystem::Imperial {
                // TRANSLATORS: Current user weight
                ni18n_f(
                    "{} pound",
                    "{} pounds",
                    last_weight_round as u32,
                    &[&last_weight_round.to_string()],
                )
            } else {
                // TRANSLATORS: Current user weight
                ni18n_f(
                    "{} kilogram",
                    "{} kilograms",
                    last_weight_round as u32,
                    &[&last_weight_round.to_string()],
                )
            };
            self.set_subtitle(&subtitle);
            if difference > 0.0 {
                let label = if settings.unit_system() == UnitSystem::Imperial {
                    // TRANSLATORS: Difference to last weight measurement
                    ni18n_f(
                        "+ {} pound compared to previous measurement",
                        "+ {} pounds compared to previous measurement",
                        difference as u32,
                        &[&difference.to_string()],
                    )
                } else {
                    // TRANSLATORS: Difference to last weight measurement
                    ni18n_f(
                        "+ {} kilogram compared to previous measurement",
                        "+ {} kilograms compared to previous measurement",
                        difference as u32,
                        &[&difference.to_string()],
                    )
                };
                imp.weight_change.set_label(&label)
            } else if difference < 0.0 {
                let label = if settings.unit_system() == UnitSystem::Imperial {
                    // TRANSLATORS: Difference to last weight measurement
                    ni18n_f(
                        "{} pound compared to previous measurement",
                        "{} pounds compared to previous measurement",
                        difference as u32,
                        &[&difference.to_string()],
                    )
                } else {
                    // TRANSLATORS: Difference to last weight measurement
                    ni18n_f(
                        "{} kilogram compared to previous measurement",
                        "{} kilograms compared to previous measurement",
                        difference as u32,
                        &[&difference.to_string()],
                    )
                };
                imp.weight_change.set_label(&label)
            } else {
                imp.weight_change.set_label(&i18n("No change in weight"));
            }
        } else {
            imp.arrow.set_weight_change(WeightChange::NoChange);
            imp.weight_change
                .set_label(&i18n("No weight data available"));
        }
    }
}

#[cfg(test)]
mod test {
    use super::{PluginName, PluginWeightSummaryRow};
    use crate::utils::init_gtk;

    #[gtk::test]
    fn new() {
        init_gtk();
        PluginWeightSummaryRow::new(PluginName::Weight);
    }
}