]> saetta.ns0.it Git - rust/zakform/commitdiff
c2rs: placeholder and class atrribute.
authorAndrea Zagli <azagli@libero.it>
Sun, 24 Sep 2023 11:12:04 +0000 (13:12 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 24 Sep 2023 11:12:04 +0000 (13:12 +0200)
src/bin/c2rs.rs

index a2c7cb281a39581003f2a2537c36760d1ecab9d7..2cb8da577569858302d675f52361a39164c6d32b 100644 (file)
@@ -46,6 +46,8 @@ pub struct ZakFormElement {
        pub max_length: i32,
        pub rows: i32,
        pub format: Option<ZakFormElementFormat>,
+       pub placeholder: String,
+       pub class: String,
        #[serde(rename = "default-value")]
        pub default_value: String,
        pub editable: String,
@@ -53,7 +55,6 @@ pub struct ZakFormElement {
        pub to_load: String,
        #[serde(rename = "to-save")]
        pub to_save: String,
-       pub placeholder: String,
 
        #[serde(rename = "option")]
        pub options: Vec<ZakFormElementSelectOption>,
@@ -181,6 +182,13 @@ fn main() {
                        None => { },
                };
 
+               if e.placeholder != "" {
+                       writeln!(output, "fi.set_placeholder({})", e.placeholder);
+               }
+               if e.class != "" {
+                       writeln!(output, "fi.set_class({})", e.class);
+               }
+
                for option in e.options {
                        writeln!(output, r#"fi.add_option(zakform::fields::FOption{{ value: String::from("{}"), label: String::from("{}") }});"#, option.id, option.text);
                }