hippox-drivers 0.3.3

🦛All indivisible atomic driver units in Hippox.
//! Browser close tab skill

use super::shared::*;
use crate::DriverCallback;
use crate::DriverContext;
use crate::{
    DriverCategory,
    types::{Driver, DriverParameter},
};
use anyhow::Result;
use serde_json::{Value, json};
use std::collections::HashMap;

#[derive(Debug)]
pub struct HaveHeadBrowserTabCloseDriver;

#[async_trait::async_trait]
impl Driver for HaveHeadBrowserTabCloseDriver {
    fn name(&self) -> &str {
        "have_head_browser_tab_close"
    }

    fn description(&self) -> &str {
        "Close the current browser tab"
    }

    fn usage_hint(&self) -> &str {
        "Use this skill to close the current tab"
    }

    fn parameters(&self) -> Vec<DriverParameter> {
        vec![]
    }

    fn example_call(&self) -> Value {
        json!({
            "action": "have_head_browser_tab_close"
        })
    }

    fn example_output(&self) -> String {
        "Closed current tab".to_string()
    }

    fn category(&self) -> DriverCategory {
        DriverCategory::HaveHeadBrowser
    }

    async fn execute(
        &self,
        parameters: &HashMap<String, Value>,
        callback: Option<&dyn DriverCallback>,
        context: Option<&DriverContext>,
    ) -> Result<String> {
        let tab = get_current_tab()?;
        tab.close(false)
            .map_err(|e| anyhow::anyhow!("Failed to close tab: {}", e))?;
        clear_current_tab();
        Ok("Closed current tab".to_string())
    }
}