]> saetta.ns0.it Git - rust/zakform/commitdiff
libzakform conversion: added select option.
authorAndrea Zagli <azagli@libero.it>
Wed, 20 Sep 2023 14:20:01 +0000 (16:20 +0200)
committerAndrea Zagli <azagli@libero.it>
Wed, 20 Sep 2023 14:20:01 +0000 (16:20 +0200)
src/main.rs

index 1662fb1b64cbf383ab9b162aff5565c094386bac..d305a7337b9f8e60393a225628deab28b09ad007 100644 (file)
@@ -37,6 +37,9 @@ pub struct ZakFormElement {
        pub to_save: String,
        pub placeholder: String,
 
+       #[yaserde(rename = "option")]
+       pub options: Vec<ZakFormElementSelectOption>,
+
        #[yaserde(rename = "zak-cgi-options")]
        pub zakcgi_options: Option<ZakFormElementRadioOptions>,
 
@@ -80,6 +83,14 @@ pub struct ZakFormElementValidator {
        pub vtype: String,
 }
 
+#[derive(Default, Debug, Clone, PartialEq, YaDeserialize)]
+#[yaserde(rename = "option")]
+pub struct ZakFormElementSelectOption {
+       pub id: String,
+       #[yaserde(text)]
+       pub text: String,
+}
+
 #[derive(Default, Debug, Clone, PartialEq, YaDeserialize)]
 #[yaserde(rename = "zak-cgi-options")]
 pub struct ZakFormElementRadioOptions {