tui-journal 0.17.0

Tui app allows writing and managing journals/notes from within the terminal With different local back-ends
Documentation
use std::path::PathBuf;

use serde::{Deserialize, Serialize};

use super::get_default_data_dir;

#[derive(Debug, Deserialize, Serialize, Default)]
pub struct JsonBackend {
    #[serde(default)]
    pub file_path: Option<PathBuf>,
}

pub fn get_default_json_path() -> anyhow::Result<PathBuf> {
    Ok(get_default_data_dir()?.join("entries.json"))
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn default_path_is_empty() {
        assert_eq!(JsonBackend::default().file_path, None);
    }

    #[test]
    fn default_path_uses_json_name() {
        let path = get_default_json_path().unwrap();

        assert!(path.ends_with("entries.json"));
    }
}