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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
use crate::elem::{HtmlProp, HtmlProps};
use std::borrow::Cow;
use web_sys::HtmlButtonElement;

#[allow(non_camel_case_types)]
#[derive(Clone, PartialEq)]
pub enum ButtonProp {
    autofocus(bool),
    disabled(bool),
    form_action(Cow<'static, str>),
    form_enctype(Cow<'static, str>),
    form_method(Cow<'static, str>),
    form_no_validate(bool),
    form_target(Cow<'static, str>),
    name(Cow<'static, str>),
    r#type(Cow<'static, str>),
    value(Cow<'static, str>),
}

#[sealed::sealed]
impl crate::elem::HtmlComponent for HtmlButtonElement {
    type PropEnum = ButtonProp;
}
#[sealed::sealed]
impl crate::elem::PropEnum<HtmlButtonElement> for ButtonProp {
    fn unset_on(&self, elem: &HtmlButtonElement) {
        match self {
            ButtonProp::autofocus(_) => elem.remove_attribute("autofocus").unwrap(),
            ButtonProp::disabled(_) => elem.remove_attribute("disabled").unwrap(),
            ButtonProp::form_action(_) => elem.remove_attribute("form_action").unwrap(),
            ButtonProp::form_enctype(_) => elem.remove_attribute("form_enctype").unwrap(),
            ButtonProp::form_method(_) => elem.remove_attribute("form_method").unwrap(),
            ButtonProp::form_no_validate(_) => elem.remove_attribute("form_no_validate").unwrap(),
            ButtonProp::form_target(_) => elem.remove_attribute("form_target").unwrap(),
            ButtonProp::name(_) => elem.remove_attribute("name").unwrap(),
            ButtonProp::r#type(_) => elem.remove_attribute("type").unwrap(),
            ButtonProp::value(_) => elem.remove_attribute("value").unwrap(),
        }
    }

    fn set_on(&self, elem: &HtmlButtonElement) {
        match self {
            ButtonProp::autofocus(v) => elem.set_autofocus(*v),
            ButtonProp::disabled(v) => elem.set_disabled(*v),
            ButtonProp::form_action(v) => elem.set_form_action(v),
            ButtonProp::form_enctype(v) => elem.set_form_enctype(v),
            ButtonProp::form_method(v) => elem.set_form_method(v),
            ButtonProp::form_no_validate(v) => elem.set_form_no_validate(*v),
            ButtonProp::form_target(v) => elem.set_form_target(v),
            ButtonProp::name(v) => elem.set_name(v),
            ButtonProp::r#type(v) => elem.set_type(v),
            ButtonProp::value(v) => elem.set_value(v),
        }
    }
}

impl HtmlProps<HtmlButtonElement> {
    pub fn autofocus(mut self, val: bool) -> Self {
        self.0.push_back(HtmlProp::Own(ButtonProp::autofocus(val)));
        self
    }

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

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

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

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

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

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

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

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

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