mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-30 12:31:08 +00:00
66 lines
1.8 KiB
Rust
66 lines
1.8 KiB
Rust
use crate::util::get_tera;
|
|
use tera::Context;
|
|
|
|
pub struct EventTemplate {
|
|
tera_context: Context,
|
|
}
|
|
|
|
pub struct EventRenderContext {
|
|
pub input_deserializer: Option<String>,
|
|
pub output_deserializer: Option<String>,
|
|
pub error_deserializer: String,
|
|
pub event: String,
|
|
pub event_ty: String,
|
|
}
|
|
|
|
#[allow(dead_code)]
|
|
impl EventTemplate {
|
|
pub fn new() -> Self {
|
|
EventTemplate {
|
|
tera_context: Context::new(),
|
|
}
|
|
}
|
|
|
|
pub fn render(&mut self, ctx: EventRenderContext, index: usize) -> Option<String> {
|
|
self.tera_context.insert("index", &index);
|
|
let dart_class_name = format!("{}{}", ctx.event_ty, ctx.event);
|
|
let event = format!("{}.{}", ctx.event_ty, ctx.event);
|
|
self.tera_context.insert("event_class", &dart_class_name);
|
|
self.tera_context.insert("event", &event);
|
|
|
|
self
|
|
.tera_context
|
|
.insert("has_input", &ctx.input_deserializer.is_some());
|
|
match ctx.input_deserializer {
|
|
None => self.tera_context.insert("input_deserializer", "void"),
|
|
Some(ref input) => self.tera_context.insert("input_deserializer", input),
|
|
}
|
|
|
|
// eprintln!(
|
|
// "😁 {:?} / {:?}",
|
|
// &ctx.input_deserializer, &ctx.output_deserializer
|
|
// );
|
|
|
|
let has_output = ctx.output_deserializer.is_some();
|
|
self.tera_context.insert("has_output", &has_output);
|
|
|
|
match ctx.output_deserializer {
|
|
None => self.tera_context.insert("output_deserializer", "void"),
|
|
Some(ref output) => self.tera_context.insert("output_deserializer", output),
|
|
}
|
|
|
|
self
|
|
.tera_context
|
|
.insert("error_deserializer", &ctx.error_deserializer);
|
|
|
|
let tera = get_tera("dart_event");
|
|
match tera.render("event_template.tera", &self.tera_context) {
|
|
Ok(r) => Some(r),
|
|
Err(e) => {
|
|
log::error!("{:?}", e);
|
|
None
|
|
},
|
|
}
|
|
}
|
|
}
|