4 releases
0.2.0 | Jul 7, 2024 |
---|---|
0.0.3 | Nov 27, 2023 |
0.0.2 | Apr 20, 2023 |
0.0.1 | Mar 27, 2023 |
#3 in #sfc
81 downloads per month
Used in 2 crates
46KB
1K
SLoC
The main public crate of the fervid
project.
Here's how you can use fervid
to generate a module from an SFC:
Warning: This example is very likely to change in the future. Please note that fervid is still unstable.
use swc_core::{common::FileName, ecma::ast::Expr};
let input = r#"
<template><div>hello world</div></template>
"#;
// Parse
let mut parse_errors = vec![];
let mut parser = fervid_parser::SfcParser::new(input, &mut parse_errors);
let sfc = parser.parse_sfc().unwrap();
// Do the necessary transformations
let mut transform_errors = Vec::new();
let transform_options = fervid_transform::TransformSfcOptions {
is_prod: true,
scope_id: "filehash",
filename: "input.vue"
};
let transform_result = fervid_transform::transform_sfc(sfc, transform_options, &mut transform_errors);
// Create the context and generate the template block
let mut ctx = fervid_codegen::CodegenContext::with_bindings_helper(transform_result.bindings_helper);
let template_expr: Option<Expr> = transform_result.template_block.and_then(|template_block| {
ctx.generate_sfc_template(&template_block)
});
// Generate the module code
let sfc_module = ctx.generate_module(
template_expr,
*transform_result.module,
transform_result.exported_obj,
transform_result.setup_fn,
None,
);
// (Optional) Stringify the code
let compiled_code = fervid_codegen::CodegenContext::stringify(input, &sfc_module, FileName::Custom("input.vue".into()), false, false);
Dependencies
~18–28MB
~486K SLoC