fm-tui 0.2.3

FM : a file manager inspired by ranger and dired{n}{n}Config files ~/.config/fm/{n}Documentation https://github.com/qkzk/fm{n}
Documentation
use anyhow::{anyhow, Result};
use ratatui::style::Color;

use crate::config::{ColorG, MAX_GRADIENT_NORMAL};

/// A gradient between 2 colors with a number of steps.
/// Colors are calculated on the fly with the `step` method.
/// An array can be built with `as_array` since the number of steps
/// is known at compile time.
/// We can't hard code the whold gradient since we don't know what
/// colors the user want to use for start and end.
#[derive(Debug, Clone, Copy)]
pub struct Gradient {
    start: ColorG,
    end: ColorG,
    step_ratio: f32,
    len: usize,
}

impl Gradient {
    pub fn new(start: ColorG, end: ColorG, len: usize) -> Self {
        let step_ratio = 1_f32 / len as f32;
        Self {
            start,
            end,
            step_ratio,
            len,
        }
    }

    fn step(&self, step: usize) -> ColorG {
        let position = self.step_ratio * step as f32;

        let r = self.start.r as f32 + (self.end.r as f32 - self.start.r as f32) * position;
        let g = self.start.g as f32 + (self.end.g as f32 - self.start.g as f32) * position;
        let b = self.start.b as f32 + (self.end.b as f32 - self.start.b as f32) * position;

        ColorG {
            r: r.round() as u8,
            g: g.round() as u8,
            b: b.round() as u8,
        }
    }

    pub fn as_array(&self) -> Result<[Color; MAX_GRADIENT_NORMAL]> {
        self.gradient()
            .collect::<Vec<Color>>()
            .try_into()
            .map_err(|_| anyhow!("Couldn't create an array for gradient"))
    }

    pub fn gradient(&self) -> impl Iterator<Item = Color> + '_ {
        (0..self.len).map(|step| self.step(step).as_ratatui())
    }
}