From: Andrea Zagli Date: Fri, 6 Jan 2023 08:48:59 +0000 (+0100) Subject: Get/set field's properties. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=0ad74ed842818175abf7fa21fb128a80e5e3d627;p=rust%2Fzakform Get/set field's properties. --- diff --git a/examples/form.rs b/examples/form.rs index a2bb4cf..22d8774 100644 --- a/examples/form.rs +++ b/examples/form.rs @@ -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); diff --git a/src/lib.rs b/src/lib.rs index df7a525..3a38bd2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 %}{% endif %}"#); }, FType::TextArea => { + f.rows = 5; + f.tmpl.add_raw_template("field", r#"{% if label %}
{% endif %} @@ -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