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
//! Collection of typed events.

use std::{borrow::Cow, marker::PhantomData};

/// A trait for converting types into [web_sys events](web_sys).
pub trait EventDescriptor: Clone {
    /// The [`web_sys`] event type, such as [`web_sys::MouseEvent`].
    type EventType: 'static;

    /// The name of the event, such as `click` or `mouseover`.
    fn name(&self) -> Cow<'static, str>;

    /// Indicates if this event bubbles. For example, `click` bubbles,
    /// but `focus` does not.
    ///
    /// If this method returns true, then the event will be delegated globally,
    /// otherwise, event listeners will be directly attached to the element.
    fn bubbles(&self) -> bool {
        true
    }
}

/// Overrides the [`EventDescriptor::bubbles`] method to always return
/// `false`, which forces the event to not be globally delegated.
#[derive(Clone)]
#[allow(non_camel_case_types)]
pub struct undelegated<Ev: EventDescriptor>(pub Ev);

impl<Ev: EventDescriptor> EventDescriptor for undelegated<Ev> {
    type EventType = Ev::EventType;

    fn name(&self) -> Cow<'static, str> {
        self.0.name()
    }

    fn bubbles(&self) -> bool {
        false
    }
}

/// A custom event.
pub struct Custom<E> {
    name: Cow<'static, str>,
    _event_type: PhantomData<E>,
}

impl<E: 'static> Clone for Custom<E> {
    fn clone(&self) -> Self {
        Self {
            name: self.name.clone(),
            _event_type: PhantomData,
        }
    }
}

impl<E: 'static> EventDescriptor for Custom<E> {
    type EventType = E;

    fn name(&self) -> Cow<'static, str> {
        self.name.clone()
    }

    fn bubbles(&self) -> bool {
        false
    }
}

impl<E> Custom<E> {
    /// Creates a custom event type.
    pub fn new(name: impl Into<Cow<'static, str>>) -> Self {
        Self {
            name: name.into(),
            _event_type: PhantomData,
        }
    }
}

/// Creates a custom event type, this is equal to [`Custom::new`].
pub fn custom<E: 'static>(name: impl Into<Cow<'static, str>>) -> Custom<E> {
    Custom::new(name)
}