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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
use dioxus::prelude::*;
use freya_elements::elements as dioxus_elements;
use freya_elements::events::MouseEvent;
use freya_hooks::{use_applied_theme, ExternalLinkThemeWith};
use crate::Tooltip;
/// [`ExternalLink`] component properties.
#[derive(Props)]
pub struct ExternalLinkProps<'a> {
    /// Theme override.
    #[props(optional)]
    pub theme: Option<ExternalLinkThemeWith>,
    /// Inner children for the ExternalLink.
    pub children: Element<'a>,
    #[props(optional)]
    /// Handler for the `onerror` event.
    pub onerror: Option<EventHandler<'a, ()>>,
    #[props(optional)]
    /// Whether  to show a tooltip with the URL or not.
    pub show_tooltip: Option<bool>,
    /// The ExternalLink destination URL.
    pub url: &'a str,
}
/// `Link` for external locations, e.g websites.
///
/// # Props
/// See [`ExternalLinkProps`].
///
/// # Styling
/// Inherits the [`ExternalLinkTheme`](freya_hooks::ExternalLinkTheme) theme.
///
/// # Example
///
/// ```no_run
/// # use freya::prelude::*;
/// fn app(cx: Scope) -> Element {
///     render!(
///         ExternalLink {
///             url: "https://github.com",
///             label {
///                 "GitHub"
///             }
///         }
///     )
/// }
/// ```
///
#[allow(non_snake_case)]
pub fn ExternalLink<'a>(cx: Scope<'a, ExternalLinkProps<'a>>) -> Element {
    let theme = use_applied_theme!(cx, &cx.props.theme, external_link);
    let is_hovering = use_state(cx, || false);
    let show_tooltip = cx.props.show_tooltip.unwrap_or(true);
    let onmouseover = |_: MouseEvent| {
        is_hovering.with_mut(|v| *v = true);
    };
    let onmouseleave = |_: MouseEvent| {
        is_hovering.with_mut(|v| *v = false);
    };
    let onclick = |_: MouseEvent| {
        let res = open::that(cx.props.url);
        if let (Err(_), Some(onerror)) = (res, cx.props.onerror.as_ref()) {
            onerror.call(());
        }
        // TODO(marc2332): Log unhandled errors
    };
    let color = if *is_hovering.get() {
        theme.highlight_color.as_ref()
    } else {
        "inherit"
    };
    render!(
        rect {
            onmouseover: onmouseover,
            onmouseleave: onmouseleave,
            onclick: onclick,
            color: "{color}",
            &cx.props.children
        }
        rect {
            height: "0",
            width: "0",
            layer: "-999",
            rect {
                width: "100v",
                (*is_hovering.get() && show_tooltip).then_some({
                    rsx!(
                        Tooltip {
                            url: cx.props.url
                        }
                    )
                })
            }
        }
    )
}