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

#[allow(non_camel_case_types)]
#[derive(Clone, PartialEq)]
pub enum OptGroupProp {
    disabled(bool),
    label(Cow<'static, str>),
}

#[sealed::sealed]
impl crate::elem::HtmlComponent for HtmlOptGroupElement {
    type PropEnum = OptGroupProp;
}
#[sealed::sealed]
impl crate::elem::PropEnum<HtmlOptGroupElement> for OptGroupProp {
    fn unset_on(&self, elem: &HtmlOptGroupElement) {
        match self {
            OptGroupProp::disabled(_) => elem.remove_attribute("disabled").unwrap(),
            OptGroupProp::label(_) => elem.remove_attribute("label").unwrap(),
        }
    }

    fn set_on(&self, elem: &HtmlOptGroupElement) {
        match self {
            OptGroupProp::disabled(v) => elem.set_disabled(*v),
            OptGroupProp::label(v) => elem.set_label(v),
        }
    }
}

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

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