leptos_use/
use_device_orientation.rs

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
use cfg_if::cfg_if;
use leptos::*;

/// Reactive [DeviceOrientationEvent](https://developer.mozilla.org/en-US/docs/Web/API/DeviceOrientationEvent).
///
/// Provide web developers with information from the physical orientation of
/// the device running the web page.
///
/// ## Demo
///
/// [Link to Demo](https://github.com/Synphonyte/leptos-use/tree/main/examples/use_device_orientation)
///
/// ## Usage
///
/// ```
/// # use leptos::*;
/// # use leptos_use::{use_device_orientation, UseDeviceOrientationReturn};
/// #
/// # #[component]
/// # fn Demo() -> impl IntoView {
/// let UseDeviceOrientationReturn {
///     is_supported,
///     absolute,
///     alpha,
///     beta,
///     gamma,
/// } = use_device_orientation();
/// #
/// # view! { }
/// # }
/// ```
///
/// ## Server-Side Rendering
///
/// On the server this function returns values as if the orientation
/// capabilties were not supported by the device.
pub fn use_device_orientation() -> UseDeviceOrientationReturn {
    cfg_if! { if #[cfg(feature = "ssr")] {
        let is_supported = Signal::derive(|| false);
        let absolute = || false;
        let alpha = || None;
        let beta = || None;
        let gamma = || None;
    } else {
        use crate::{use_event_listener_with_options, UseEventListenerOptions, use_supported, js};
        use leptos::ev::deviceorientation;

        let is_supported = use_supported(|| js!("DeviceOrientationEvent" in &window()));
        let (absolute, set_absolute) = create_signal(false);
        let (alpha, set_alpha) = create_signal(None);
        let (beta, set_beta) = create_signal(None);
        let (gamma, set_gamma) = create_signal(None);

        if is_supported.get_untracked() {
            let cleanup = use_event_listener_with_options(
                window(),
                deviceorientation,
                move |event: web_sys::DeviceOrientationEvent| {
                    set_absolute.set(event.absolute());
                    set_alpha.set(event.alpha());
                    set_beta.set(event.beta());
                    set_gamma.set(event.gamma());
                },
                UseEventListenerOptions::default()
                    .capture(false)
                    .passive(true)
                    .once(false),
            );

            leptos::on_cleanup(cleanup);
        }
    }}

    UseDeviceOrientationReturn {
        is_supported,
        absolute: absolute.into(),
        alpha: alpha.into(),
        beta: beta.into(),
        gamma: gamma.into(),
    }
}

/// Return type of [`use_device_orientation`].
#[derive(Clone)]
pub struct UseDeviceOrientationReturn {
    pub is_supported: Signal<bool>,
    pub absolute: Signal<bool>,
    pub alpha: Signal<Option<f64>>,
    pub beta: Signal<Option<f64>>,
    pub gamma: Signal<Option<f64>>,
}