Compare commits

..

4 Commits

Author SHA1 Message Date
Dmitriy Pleshevskiy 78cbc633c4
repo/sqlite: add task struct
- repo/sqlite: add method to get active tasks
2022-08-19 18:02:21 +03:00
Dmitriy Pleshevskiy 85497018c4
move to database dir 2022-08-19 18:02:21 +03:00
Dmitriy Pleshevskiy 1fd49b8664
repo/sqlite: add base schema 2022-08-19 18:02:17 +03:00
Dmitriy Pleshevskiy 96a80f9b35
shell/zsh: add fzf preview 2022-08-19 17:15:17 +03:00
3 changed files with 15 additions and 10 deletions

View File

@ -1,5 +1,5 @@
function __tas_task_idx() {
echo "$@" | sed 's/^\([0-9]\+\)\..\+$/\1/'
echo "$@" | sed 's/^[> ] \([0-9]\+\)\..\+$/\1/'
}
function __tas_show() {
@ -11,13 +11,15 @@ function __tas_start() {
}
function __tas_list() {
tas list | fzf --info=inline --height=50% --no-sort --keep-right --layout=reverse
tas list | fzf \
--info=inline --height=50% --no-sort --keep-right --layout=reverse \
--preview="tas show \$(sed 's/^[> ] \\([0-9]\\+\\)\\..\\+$/\\1/' {+f})"
}
function taz() {
case $1 in
"" | "show" | "sh")
__tas_show $(__tas_list)
__tas_show "$(__tas_list)"
;;
"list" | "ls")
@ -25,7 +27,7 @@ function taz() {
;;
"start" | "st")
__tas_start $(__tas_list)
__tas_start "$(__tas_list)"
esac
}

View File

@ -51,17 +51,21 @@ pub enum SubCommand {
}
pub fn print_task_detail(task: &domain::Task) {
print!(" ");
print_task_detail_opt(task, " ")
}
pub fn print_task_detail_opt(task: &domain::Task, prefix: &str) {
print!("{prefix}");
if let Some(project) = task.project.as_ref() {
print!("[{}]: ", project);
}
println!("{}", task.name);
if let Some(link) = task.link.as_ref() {
println!(" link: {}", link);
println!("{prefix}link: {}", link);
}
if let Some(dir_path) = task.dir_path.as_ref() {
println!(" path: {}", dir_path.to_string_lossy());
println!("{prefix}path: {}", dir_path.to_string_lossy());
}
}

View File

@ -16,7 +16,7 @@
use std::io::Write;
use std::process::{Command, Stdio};
use crate::cli::print_task_detail;
use crate::cli::print_task_detail_opt;
use crate::domain::CurrentTaskInfo;
use crate::repo::Repository;
@ -109,8 +109,7 @@ pub fn execute(repo: impl Repository, args: Args) {
eprintln!("[WARNING]: You don't provide part. --clip option will ignore.");
}
println!("Information about your current task:");
print_task_detail(&task);
print_task_detail_opt(&task, "");
}
Some(PrintPart::Project) => {
if args.clip {