2021-02-28 22:30:10 +00:00
|
|
|
use proc_macro::TokenStream;
|
2021-03-04 17:03:22 +00:00
|
|
|
use quote::ToTokens;
|
|
|
|
use syn::parse_macro_input;
|
2021-01-20 17:04:27 +00:00
|
|
|
|
2021-02-27 01:42:55 +00:00
|
|
|
mod fc;
|
2021-02-28 22:30:10 +00:00
|
|
|
mod htm;
|
2021-02-27 01:42:55 +00:00
|
|
|
mod ifmt;
|
2021-03-01 05:16:48 +00:00
|
|
|
mod rsxt;
|
2021-03-08 02:28:20 +00:00
|
|
|
mod util;
|
2021-02-27 01:42:55 +00:00
|
|
|
|
2021-02-28 22:30:10 +00:00
|
|
|
/// The html! macro makes it easy for developers to write jsx-style markup in their components.
|
|
|
|
/// We aim to keep functional parity with html templates.
|
|
|
|
#[proc_macro]
|
|
|
|
pub fn html(s: TokenStream) -> TokenStream {
|
2021-03-04 17:03:22 +00:00
|
|
|
match syn::parse::<htm::HtmlRender>(s) {
|
|
|
|
Err(e) => e.to_compile_error().into(),
|
|
|
|
Ok(s) => s.to_token_stream().into(),
|
|
|
|
}
|
2021-02-28 22:30:10 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 05:16:48 +00:00
|
|
|
/// The html! macro makes it easy for developers to write jsx-style markup in their components.
|
|
|
|
/// We aim to keep functional parity with html templates.
|
|
|
|
#[proc_macro]
|
|
|
|
pub fn rsx(s: TokenStream) -> TokenStream {
|
2021-03-04 17:03:22 +00:00
|
|
|
match syn::parse::<rsxt::RsxRender>(s) {
|
|
|
|
Err(e) => e.to_compile_error().into(),
|
|
|
|
Ok(s) => s.to_token_stream().into(),
|
|
|
|
}
|
2021-03-01 05:16:48 +00:00
|
|
|
}
|
|
|
|
|
2021-03-08 02:28:20 +00:00
|
|
|
// #[proc_macro_attribute]
|
|
|
|
// pub fn fc(attr: TokenStream, item: TokenStream) -> TokenStream {
|
|
|
|
|
2021-01-21 07:25:44 +00:00
|
|
|
/// Label a function or static closure as a functional component.
|
|
|
|
/// This macro reduces the need to create a separate properties struct.
|
2021-03-08 02:28:20 +00:00
|
|
|
///
|
|
|
|
/// Using this macro is fun and simple
|
|
|
|
///
|
|
|
|
/// ```ignore
|
|
|
|
///
|
|
|
|
/// #[fc]
|
|
|
|
/// fn Example(ctx: Context, name: &str) -> DomTree {
|
|
|
|
/// ctx.render(rsx! { h1 {"hello {name}"} })
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-01-21 07:25:44 +00:00
|
|
|
#[proc_macro_attribute]
|
2021-02-28 22:30:10 +00:00
|
|
|
pub fn fc(attr: TokenStream, item: TokenStream) -> TokenStream {
|
2021-03-08 02:28:20 +00:00
|
|
|
match syn::parse::<fc::FunctionComponent>(item) {
|
|
|
|
Err(e) => e.to_compile_error().into(),
|
|
|
|
Ok(s) => s.to_token_stream().into(),
|
|
|
|
}
|
2021-01-21 07:25:44 +00:00
|
|
|
}
|
2021-01-20 17:04:27 +00:00
|
|
|
|
2021-02-27 01:42:55 +00:00
|
|
|
#[proc_macro]
|
2021-02-28 22:30:10 +00:00
|
|
|
pub fn format_args_f(input: TokenStream) -> TokenStream {
|
2021-02-27 01:42:55 +00:00
|
|
|
use ifmt::*;
|
|
|
|
let item = parse_macro_input!(input as IfmtInput);
|
2021-03-08 02:28:20 +00:00
|
|
|
format_args_f_impl(item)
|
|
|
|
.unwrap_or_else(|err| err.to_compile_error())
|
|
|
|
.into()
|
2021-01-20 17:04:27 +00:00
|
|
|
}
|