about summary refs log tree commit diff stats
path: root/pkgs/by-name/ts/tskm/src/main.rs
blob: 7fc9c0d4b0bc3db6c41dea8b4eadeddcb17731c8 (plain) (blame)
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
#![allow(clippy::missing_panics_doc)]
#![allow(clippy::missing_errors_doc)]

use anyhow::Result;
use clap::Parser;

use crate::interface::{input, neorg, open, project};

pub mod cli;
pub mod interface;
pub mod rofi;
pub mod task;

use crate::cli::{CliArgs, Command};

fn main() -> Result<(), anyhow::Error> {
    // TODO: Support these completions for the respective types <2025-04-04>
    //
    // ID_GENERATION_FUNCTION
    // ```sh
    //  context="$(task _get rc.context)"
    //  if [ "$context" ]; then
    //      filter="project:$context"
    //  else
    //      filter="0-10000"
    //  fi
    //  tasks="$(task "$filter" _ids)"
    //
    //  if [ "$tasks" ]; then
    //      echo "$tasks" | xargs task _zshids | awk -F: -v q="'" '{gsub(/'\''/, q "\\" q q ); print $1 ":" q $2 q}'
    //  fi
    // ```
    //
    // ARGUMENTS:
    //     ID | *([0-9]) := [[%ID_GENERATION_FUNCTION]]
    //                             The function displays all possible IDs of the eligible tasks.
    //
    //     WS := %ALL_WORKSPACES
    //                             All possible workspaces.
    //
    //     P := %ALL_PROJECTS_PIPE
    //                             The possible project.
    //
    //     F := [[fd . --max-depth 3]]
    //                             A URL-Input file to use as source.
    let args = CliArgs::parse();

    stderrlog::new()
        .module(module_path!())
        .quiet(false)
        .show_module_names(true)
        .color(stderrlog::ColorChoice::Auto)
        .verbosity(5)
        .timestamp(stderrlog::Timestamp::Off)
        .init()
        .expect("Let's just hope that this does not panic");

    match args.command {
        Command::Inputs { command } => input::handle(command)?,
        Command::Neorg { command } => neorg::handle(command)?,
        Command::Open { command } => open::handle(command)?,
        Command::Projects { command } => project::handle(command)?,
    }

    Ok(())
}