]> saetta.ns0.it Git - rust/zakform/commitdiff
c2rs: some adjustments based on branch validators.
authorAndrea Zagli <azagli@libero.it>
Sat, 7 Oct 2023 10:01:32 +0000 (12:01 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 7 Oct 2023 10:01:32 +0000 (12:01 +0200)
src/bin/c2rs.rs

index 1320b22a6209dd7c1df8bb4f016c229f149ebf49..9f2f3facd946f0c59842f4d8e029041ada61b88c 100644 (file)
@@ -55,6 +55,8 @@ pub struct ZakFormElement {
        pub to_load: String,
        #[serde(rename = "to-save")]
        pub to_save: String,
+       pub accept: String,
+       pub inline: String,
 
        #[serde(rename = "option")]
        pub options: Vec<ZakFormElementSelectOption>,
@@ -160,6 +162,7 @@ fn main() {
                        "zak_form_cgi_form_element_select" => { writeln!(output, r#"let mut fi = zakform::fields::FieldSelect::new("{}")"#, e.id); },
                        "zak_form_cgi_form_element_check" => { writeln!(output, r#"let mut fi = zakform::fields::FieldCheck::new("{}")"#, e.id); },
                        "zak_form_cgi_form_element_submit" => { writeln!(output, r#"let mut fi = zakform::fields::FieldButton::new("{}")"#, e.id); },
+                       "zak_form_cgi_form_element_file" => { writeln!(output, r#"let mut fi = zakform::fields::FieldFile::new("{}")"#, e.id); },
                        _ => { continue; },
                };
 
@@ -184,10 +187,10 @@ fn main() {
                };
 
                if e.placeholder != "" {
-                       writeln!(output, "fi.set_placeholder({})", e.placeholder);
+                       writeln!(output, r#"fi.set_placeholder("{}")"#, e.placeholder);
                }
                if e.class != "" {
-                       writeln!(output, "fi.set_class({})", e.class);
+                       writeln!(output, r#"fi.set_class("{}")"#, e.class);
                }
 
                for option in e.options {
@@ -203,14 +206,23 @@ fn main() {
                        None => { },
                }
 
+               if e.editable == "FALSE" {
+                       writeln!(output, "fi.set_disabled(true)");
+               }
+
                if e.to_load == "FALSE" {
                        writeln!(output, "fi.set_to_load(false)");
                }
                if e.to_save == "FALSE" {
                        writeln!(output, "fi.set_to_save(false)");
                }
-               if e.editable == "FALSE" {
-                       writeln!(output, "fi.set_disabled(true)");
+
+               if e.inline == "TRUE" {
+                       writeln!(output, "fi.set_inline(true)");
+               }
+
+               if e.accept != "" {
+                       writeln!(output, r#"fi.set_accept("{}")"#, e.accept);
                }
 
                for filter in e.filters {
@@ -224,6 +236,11 @@ fn main() {
                                                _ => { },
                                        };
                                },
+                       }
+               }
+
+               for validator in e.validators {
+                       match validator.vtype.as_str() {
                                _ => { },
                        };
                }