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
use crate::elem::{HtmlProp, HtmlProps};
use std::borrow::Cow;
use web_sys::HtmlMenuItemElement;

#[allow(non_camel_case_types)]
#[derive(Clone, PartialEq)]
pub enum MenuItemProp {
    r#type(Cow<'static, str>),
    label(Cow<'static, str>),
    icon(Cow<'static, str>),
    disabled(bool),
    checked(bool),
    radiogroup(Cow<'static, str>),
    default_checked(bool),
}

#[sealed::sealed]
impl crate::elem::HtmlComponent for HtmlMenuItemElement {
    type PropEnum = MenuItemProp;
}
#[sealed::sealed]
impl crate::elem::PropEnum<HtmlMenuItemElement> for MenuItemProp {
    fn unset_on(&self, elem: &HtmlMenuItemElement) {
        match self {
            MenuItemProp::r#type(_) => elem.remove_attribute("type").unwrap(),
            MenuItemProp::label(_) => elem.remove_attribute("label").unwrap(),
            MenuItemProp::icon(_) => elem.remove_attribute("icon").unwrap(),
            MenuItemProp::disabled(_) => elem.remove_attribute("disabled").unwrap(),
            MenuItemProp::checked(_) => elem.remove_attribute("checked").unwrap(),
            MenuItemProp::radiogroup(_) => elem.remove_attribute("radiogroup").unwrap(),
            MenuItemProp::default_checked(_) => elem.remove_attribute("default_checked").unwrap(),
        }
    }

    fn set_on(&self, elem: &HtmlMenuItemElement) {
        match self {
            MenuItemProp::r#type(v) => elem.set_type(v),
            MenuItemProp::label(v) => elem.set_label(v),
            MenuItemProp::icon(v) => elem.set_icon(v),
            MenuItemProp::disabled(v) => elem.set_disabled(*v),
            MenuItemProp::checked(v) => elem.set_checked(*v),
            MenuItemProp::radiogroup(v) => elem.set_radiogroup(v),
            MenuItemProp::default_checked(v) => elem.set_default_checked(*v),
        }
    }
}

impl HtmlProps<HtmlMenuItemElement> {
    pub fn r#type(mut self, val: Cow<'static, str>) -> Self {
        self.0.push_back(HtmlProp::Own(MenuItemProp::r#type(val)));
        self
    }

    pub fn label(mut self, val: impl Into<Cow<'static, str>>) -> Self {
        let val = val.into();
        self.0.push_back(HtmlProp::Own(MenuItemProp::label(val)));
        self
    }

    pub fn icon(mut self, val: impl Into<Cow<'static, str>>) -> Self {
        let val = val.into();
        self.0.push_back(HtmlProp::Own(MenuItemProp::icon(val)));
        self
    }

    pub fn disabled(mut self, val: bool) -> Self {
        self.0.push_back(HtmlProp::Own(MenuItemProp::disabled(val)));
        self
    }

    pub fn checked(mut self, val: bool) -> Self {
        self.0.push_back(HtmlProp::Own(MenuItemProp::checked(val)));
        self
    }

    pub fn radiogroup(mut self, val: impl Into<Cow<'static, str>>) -> Self {
        let val = val.into();
        self.0
            .push_back(HtmlProp::Own(MenuItemProp::radiogroup(val)));
        self
    }

    pub fn default_checked(mut self, val: bool) -> Self {
        self.0
            .push_back(HtmlProp::Own(MenuItemProp::default_checked(val)));
        self
    }
}