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
/// Similar to tag population.
macro_rules! make_events {
    // Create shortcut macros for any element; populate these functions in this module.
    { $($event_camel:ident => $event:expr),+ } => {

        /// The Ev enum restricts element-creation to only valid event names, as defined here:
        /// [https://developer.mozilla.org/en-US/docs/Web/Evs](https://developer.mozilla.org/en-US/docs/Web/Evs)
        #[derive(Clone, Debug, PartialEq, PartialOrd, Ord, Eq)]
        pub enum Ev {
            $(
                $event_camel,
            )+
            Custom(std::borrow::Cow<'static, str>)
        }

        impl Ev {
            pub fn as_str(&self) -> &str {
                match self {
                    $(
                        Ev::$event_camel => $event,
                    ) +
                    Ev::Custom(event) => &event
                }
            }
        }

        impl std::fmt::Display for Ev {
            fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
                write!(f, "{}", self.as_str())
            }
        }

        impl<T: Into<std::borrow::Cow<'static, str>>> From<T> for Ev {
            fn from(event: T) -> Self {
                let event = event.into();
                match event.as_ref() {
                    $(
                        $event => Ev::$event_camel,
                    ) +
                    _ => {
                        Ev::Custom(event)
                    }
                }
            }
        }
    }
}

mod event_names;
pub use event_names::Ev;