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

#[allow(non_camel_case_types)]
#[derive(Clone, PartialEq)]
pub enum ScriptProp {
    src(Cow<'static, str>),
    r#type(Cow<'static, str>),
    no_module(bool),
    charset(Cow<'static, str>),
    r#async(bool),
    defer(bool),
    cross_origin(Cow<'static, str>),
    event(Cow<'static, str>),
    html_for(Cow<'static, str>),
    integrity(Cow<'static, str>),
}

#[sealed::sealed]
impl crate::elem::HtmlComponent for HtmlScriptElement {
    type PropEnum = ScriptProp;
}
#[sealed::sealed]
impl crate::elem::PropEnum<HtmlScriptElement> for ScriptProp {
    fn unset_on(&self, elem: &HtmlScriptElement) {
        match self {
            ScriptProp::src(_) => elem.remove_attribute("src").unwrap(),
            ScriptProp::r#type(_) => elem.remove_attribute("type").unwrap(),
            ScriptProp::no_module(_) => elem.remove_attribute("no_module").unwrap(),
            ScriptProp::charset(_) => elem.remove_attribute("charset").unwrap(),
            ScriptProp::r#async(_) => elem.remove_attribute("async").unwrap(),
            ScriptProp::defer(_) => elem.remove_attribute("defer").unwrap(),
            ScriptProp::cross_origin(_) => elem.set_cross_origin(None),
            ScriptProp::event(_) => elem.remove_attribute("event").unwrap(),
            ScriptProp::html_for(_) => elem.remove_attribute("html_for").unwrap(),
            ScriptProp::integrity(_) => elem.remove_attribute("integrity").unwrap(),
        }
    }

    fn set_on(&self, elem: &HtmlScriptElement) {
        match self {
            ScriptProp::src(v) => elem.set_src(v),
            ScriptProp::r#type(v) => elem.set_type(v),
            ScriptProp::no_module(v) => elem.set_no_module(*v),
            ScriptProp::charset(v) => elem.set_charset(v),
            ScriptProp::r#async(v) => elem.set_async(*v),
            ScriptProp::defer(v) => elem.set_defer(*v),
            ScriptProp::cross_origin(v) => elem.set_cross_origin(Some(v)),
            ScriptProp::event(v) => elem.set_event(v),
            ScriptProp::html_for(v) => elem.set_html_for(v),
            ScriptProp::integrity(v) => elem.set_integrity(v),
        }
    }
}

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

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

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

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

    pub fn r#async(mut self, val: bool) -> Self {
        self.0.push_back(HtmlProp::Own(ScriptProp::r#async(val)));
        self
    }

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

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

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

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

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