]> saetta.ns0.it Git - rust/zakform/commitdiff
Added methods get/set_label. Rendered html checkbox.
authorAndrea Zagli <azagli@libero.it>
Sat, 18 Feb 2023 09:20:36 +0000 (10:20 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 18 Feb 2023 09:20:36 +0000 (10:20 +0100)
examples/form.rs
src/fields.rs

index ed10ff2f9e8f116661b8505c6d7953c06e9509eb..5e1bd8c53696642616acbea87749980cc4117038 100644 (file)
@@ -14,6 +14,8 @@ use actix_web::{
     web, App, Error, HttpResponse, HttpServer, Responder, Result,
 };
 
+use zakform::fields::TField;
+
 #[derive(Debug, Deserialize)]
 #[allow(unused)]
 struct Http {
@@ -64,9 +66,14 @@ async fn index(
        f.add_field(Box::new(fi));
 
        let mut fi = zakform::fields::FieldTextArea::new("textarea");
+       fi.set_label("TEXT AREA");
        fi.set_rows(15);
        f.add_field(Box::new(fi));
 
+       let mut fi = zakform::fields::FieldCheck::new("checkbox");
+       fi.set_label("the check text very very long");
+       f.add_field(Box::new(fi));
+
        let fs = f.fields();
        for fi in fs {
                s.push_str(fi.render().as_str());
index f048bbbbe5b237c0ab23688eed860d89f4210977..56fbf648f0ac9eadbe6df581e858756cefb03ccb 100644 (file)
@@ -19,6 +19,10 @@ struct Field {
 pub trait TField {
        fn get_name(&self) -> String;
 
+       fn get_label(&self) -> String;
+
+       fn set_label(&mut self, label: &str);
+
        fn render(&self) -> String;
 
        fn any(&mut self) -> &mut dyn Any;
@@ -35,6 +39,14 @@ impl TField for FieldText {
                String::from(&self.field.name)
        }
 
+       fn get_label(&self) -> String {
+               String::from(&self.field.label)
+       }
+
+       fn set_label(&mut self, label: &str) {
+               self.field.label = String::from(label);
+       }
+
        fn render(&self) -> String {
                let mut s = String::new();
 
@@ -79,7 +91,7 @@ _ => {},
                self.maxlen = maxlen;
        }
 
-       pub fn maxlen(&self) -> i32 {
+       pub fn get_maxlen(&self) -> i32 {
                self.maxlen
        }
 }
@@ -96,6 +108,14 @@ impl TField for FieldTextArea {
                String::from(&self.field.name)
        }
 
+       fn get_label(&self) -> String {
+               String::from(&self.field.label)
+       }
+
+       fn set_label(&mut self, label: &str) {
+               self.field.label = String::from(label);
+       }
+
        fn render(&self) -> String {
                let mut s = String::new();
 
@@ -144,7 +164,7 @@ _ => {},
                self.maxlen = maxlen;
        }
 
-       pub fn maxlen(&self) -> i32 {
+       pub fn get_maxlen(&self) -> i32 {
                self.maxlen
        }
 
@@ -152,7 +172,7 @@ _ => {},
                self.rows = rows;
        }
 
-       pub fn rows(&self) -> i32 {
+       pub fn get_rows(&self) -> i32 {
                self.rows
        }
 }
@@ -174,6 +194,14 @@ impl TField for FieldRadio {
                String::from(&self.field.name)
        }
 
+       fn get_label(&self) -> String {
+               String::from(&self.field.label)
+       }
+
+       fn set_label(&mut self, label: &str) {
+               self.field.label = String::from(label);
+       }
+
        fn render(&self) -> String {
                let mut s = String::new();
 
@@ -256,3 +284,61 @@ _ => {},
                s
        }
 }
+
+#[derive(Default)]
+pub struct FieldCheck {
+       field: Field,
+}
+
+impl TField for FieldCheck {
+       fn get_name(&self) -> String {
+               String::from(&self.field.name)
+       }
+
+       fn get_label(&self) -> String {
+               String::from(&self.field.label)
+       }
+
+       fn set_label(&mut self, label: &str) {
+               self.field.label = String::from(label);
+       }
+
+       fn render(&self) -> String {
+               let mut s = String::new();
+
+               let mut context = tera::Context::new();
+               context.insert("name", &self.field.name);
+               context.insert("label", &self.field.label);
+               context.insert("disabled", &self.field.disabled);
+               context.insert("invisible", &self.field.invisible);
+               context.insert("help", &self.field.help);
+               context.insert("value", &self.field.value);
+               s.push_str(self.field.tmpl.render("field", &context).unwrap().as_str());
+
+               s
+       }
+
+       fn any(&mut self) -> &mut dyn Any {
+               self
+       }
+}
+
+impl FieldCheck {
+       pub fn new(name: &str) -> Self {
+               let mut f: FieldCheck = Default::default();
+
+               f.field.name = String::from(name);
+               f.field.label = String::from(name);
+
+               match f.field.tmpl.add_raw_template("field", r#"<div class="form-check">
+ <input type="checkbox" class="form-check-input{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" {% if value == "1" or value == "on" %}checked{% endif %}/>
+ {% if label %}<label for="{{ name }}" class="form-check-label">{{ label }}</label>{% endif %}
+ {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
+ </div>"#) {
+Err(e) => { println!("{:?}", e) },
+_ => {},
+};
+
+               f
+       }
+}