doist 0.4.0

doist is an unofficial command line app for interacting with the Todoist API
Documentation
use color_eyre::{Result, eyre::eyre};

use crate::{api::rest::Gateway, comments, config::Config};

use super::filter::TaskOrInteractive;

#[derive(clap::Parser, Debug)]
pub struct Params {
    #[clap(flatten)]
    task: TaskOrInteractive,
}

/// Displays full information about a task.
pub async fn view(params: Params, gw: &Gateway, cfg: &Config) -> Result<()> {
    let (id, state) = params.task.task(gw, cfg).await?;
    let task = state.full_task(state.task(&id).ok_or_else(|| eyre!("no valid task"))?);
    println!("{task}");
    if task.0.note_count > 0 {
        let comments = gw.task_comments(&id).await?;
        comments::list(&comments)
    }
    Ok(())
}