struct FormData {
name: String,
notes: String,
+ sex: String,
}
async fn index_post(
fi.filter();
f.add_field(fi);
+ let mut fi = zakform::Field::new(zakform::FType::Select, "sex");
+ fi.set_label("Sex");
+ fi.add_option(zakform::FOption{value: String::from("M"), label: String::from("Male")});
+ fi.add_option(zakform::FOption{value: String::from("F"), label: String::from("Female")});
+ fi.set_value(map.get(fi.name().as_str()).unwrap().as_str());
+ f.add_field(fi);
+
let fs = f.fields();
for fi in fs {
s.push_str(fi.render().as_str());
fi.set_rows(15);
f.add_field(fi);
+ let mut fi = zakform::Field::new(zakform::FType::Select, "sex");
+ fi.set_label("Sex");
+ fi.add_option(zakform::FOption{value: String::from("M"), label: String::from("Male")});
+ fi.add_option(zakform::FOption{value: String::from("F"), label: String::from("Female")});
+ f.add_field(fi);
+
let fs = f.fields();
for fi in fs {
s.push_str(fi.render().as_str());
+use serde_derive::{Serialize,Deserialize};
+
use tera::Tera;
pub mod filters;
pub enum FType {
Text,
- TextArea
+ TextArea,
+ Select,
}
pub struct Field {
rows: i32,
help: String,
value: String,
+ options: Vec<FOption>,
tmpl: tera::Tera,
filters: Vec<filters::Filter>,
}
+#[derive(Serialize)]
+pub struct FOption {
+ pub value: String,
+ pub label: String,
+}
+
impl Field {
pub fn new(ftype: FType, name: &str) -> Field {
let mut f = Field {
rows: 0,
help: String::new(),
value: String::new(),
+ options: Vec::new(),
tmpl: Tera::default(),
filters: vec![],
};
<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>
{% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
+ {% if label %}</div>{% endif %}"#);
+ },
+ FType::Select => {
+ f.tmpl.add_raw_template("field", r#"{% if label %}<div class="mb-3">
+ <label for="{{ name }}" class="form-label">{{ label }}</label><br/>{% endif %}
+ <select class="form-select{% if help %} is-invalid{% endif %}" name="{{ name }}" id="{{ name }}">
+ {% for o in options %}
+ <option value="{{ o.value }}"{% if value == o.value %} selected{% endif %}>{{ o.label }}</option>
+ {% endfor %}
+ </select>
+ {% if help %}<div id="helpBox_{{ name }}_" class="invalid-feedback">{{ help }}</div>{% endif %}
{% if label %}</div>{% endif %}"#);
},
}
self.value = String::from(value);
}
+ pub fn add_option(&mut self, option: FOption) {
+ self.options.push(option);
+ }
+
pub fn add_filter(&mut self, filter: filters::Filter) {
self.filters.push(filter);
}
context.insert("rows", &self.rows);
context.insert("help", &self.help);
context.insert("value", &self.value);
+ context.insert("options", &self.options);
s.push_str(self.tmpl.render("field", &context).unwrap().as_str());
s