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
/* graph_model_weight.rs
 *
 * Copyright 2020-2021 Rasmus Thomsen <oss@cogitri.dev>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

use crate::{prelude::*, views::Point};
use anyhow::Result;
use uom::si::{f32::Mass, mass::kilogram};

#[derive(Debug, Default, Clone)]
pub struct GraphModelWeightMocked {}

impl GraphModelWeightMocked {
    pub fn new() -> Self {
        Self {}
    }

    pub async fn reload(&mut self, _duration: glib::TimeSpan) -> Result<()> {
        Ok(())
    }

    pub fn to_points(&self) -> Vec<Point> {
        let now = glib::DateTime::local();
        vec![
            Point {
                date: now.add_days(-60).unwrap(),
                value: 65.0,
            },
            Point {
                date: now.add_days(-30).unwrap(),
                value: 64.2,
            },
            Point {
                date: now,
                value: 63.6,
            },
        ]
    }

    pub fn is_empty(&self) -> bool {
        false
    }

    pub fn last_weight(&self) -> Option<Mass> {
        Some(Mass::new::<kilogram>(63.6))
    }
}