]> saetta.ns0.it Git - rust/zakform/commitdiff
Get/set field's properties.
authorAndrea Zagli <azagli@libero.it>
Fri, 6 Jan 2023 08:48:59 +0000 (09:48 +0100)
committerAndrea Zagli <azagli@libero.it>
Fri, 6 Jan 2023 08:48:59 +0000 (09:48 +0100)
examples/form.rs
src/lib.rs

index a2bb4cf28a3eef3e2ed1c0a6d870e621a3abce85..22d8774e6a6ac4ad27d3f96d556fea08d6525fab 100644 (file)
@@ -49,11 +49,13 @@ async fn index(
 
        let mut fi = zakform::Field::new(zakform::FType::Text, "name");
        fi.set_label("Name");
+       fi.set_help("Must not be empty.");
        s.push_str(fi.render().as_str());
        f.add_field(fi);
 
        let mut fi = zakform::Field::new(zakform::FType::TextArea, "notes");
        fi.set_label("Notes");
+       fi.set_rows(15);
        s.push_str(fi.render().as_str());
        f.add_field(fi);
 
index df7a5250bc0b984de1b8129392616dbc7f90cdd7..3a38bd240638e7451b45c43fb5bb7e567b4b7a05 100644 (file)
@@ -9,6 +9,12 @@ pub struct Field {
        ftype: FType,
        name: String,
        label: String,
+       maxlen: i32,
+       disabled: bool,
+       invisible: bool,
+       rows: i32,
+       help: String,
+       value: String,
        tmpl: tera::Tera,
 }
 
@@ -18,6 +24,12 @@ impl Field {
                        ftype: ftype,
                        name: String::from(name),
                        label: String::from(name),
+                       maxlen: 0,
+                       disabled: false,
+                       invisible: false,
+                       rows: 0,
+                       help: String::new(),
+                       value: String::new(),
                        tmpl: Tera::default(),
                };
 
@@ -30,6 +42,8 @@ impl Field {
  {% if label %}</div>{% endif %}"#);
                        },
                        FType::TextArea => {
+                               f.rows = 5;
+
                                f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
  <label for="{{ name }}" class="form-label">{{ label }}</label>{% endif %}
  <textarea class="form-control{%if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}" rows="{{ rows }}">{{ value }}</textarea>
@@ -49,18 +63,66 @@ impl Field {
                self.label = String::from(label);
        }
 
+       pub fn maxlen(&self) -> i32 {
+               self.maxlen
+       }
+
+       pub fn set_maxlen(&mut self, maxlen: i32) {
+               self.maxlen = maxlen;
+       }
+
+       pub fn disabled(&self) -> bool {
+               self.disabled
+       }
+
+       pub fn set_disabled(&mut self, disabled: bool) {
+               self.disabled = disabled;
+       }
+
+       pub fn invisible(&self) -> bool {
+               self.invisible
+       }
+
+       pub fn set_invisible(&mut self, invisible: bool) {
+               self.invisible = invisible;
+       }
+
+       pub fn rows(&self) -> i32 {
+               self.rows
+       }
+
+       pub fn set_rows(&mut self, rows: i32) {
+               self.rows = rows;
+       }
+
+       pub fn help(&self) -> String {
+               String::from(self.help.as_str())
+       }
+
+       pub fn set_help(&mut self, help: &str) {
+               self.help = String::from(help);
+       }
+
+       pub fn value(&self) -> String {
+               String::from(self.value.as_str())
+       }
+
+       pub fn set_value(&mut self, value: &str) {
+               self.value = String::from(value);
+       }
+
        pub fn render(&self) -> String {
                let mut s = String::new();
 
                let mut context = tera::Context::new();
                context.insert("name", &self.name);
                context.insert("label", &self.label);
-               context.insert("maxlen", &0);
-               context.insert("disabled", &false);
-               context.insert("invisible", &false);
-               context.insert("rows", &0);
-               context.insert("help", &"");
-               context.insert("value", &"");
+               context.insert("maxlen", &self.maxlen);
+               context.insert("disabled", &self.disabled);
+               context.insert("invisible", &self.invisible);
+               context.insert("rows", &self.rows);
+               context.insert("help", &self.help);
+               context.insert("value", &self.value);
                s.push_str(self.tmpl.render("field", &context).unwrap().as_str());
 
                s