ftype: FType,
name: String,
label: String,
+ maxlen: i32,
+ disabled: bool,
+ invisible: bool,
+ rows: i32,
+ help: String,
+ value: String,
tmpl: tera::Tera,
}
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(),
};
{% 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>
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