clin-rs 0.8.20

Encrypted terminal note-taking app inspired by Obsidian
use crate::actions::Action;
use crate::app::App;
use anyhow::Result;
use std::borrow::Cow;

pub struct OpenBackupAction;

impl Action for OpenBackupAction {
    fn id(&self) -> Cow<'static, str> {
        Cow::Borrowed("backup.open")
    }
    fn name(&self) -> Cow<'static, str> {
        Cow::Borrowed("Open Backup Dashboard")
    }
    fn description(&self) -> Cow<'static, str> {
        Cow::Borrowed("View git backup status, commit history, and push to remote")
    }
    fn category(&self) -> crate::actions::ActionCategory {
        crate::actions::ActionCategory::Views
    }

    fn glyph(&self) -> &'static str {
        "\u{f1d3}"
    }
    fn execute(&self, app: &mut App, _context_note_id: Option<&str>) -> Result<()> {
        app.open_backup_view();
        Ok(())
    }
}