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
|
|
|
|
2022-02-19 04:14:17 +00:00
|
|
|
mod ifmt;
|
|
|
|
mod inlineprops;
|
|
|
|
mod props;
|
2022-02-22 21:34:06 +00:00
|
|
|
mod rsx;
|
2022-02-19 04:14:17 +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
|
|
|
}
|
2021-03-09 05:58:20 +00:00
|
|
|
|
2021-12-21 05:46:10 +00:00
|
|
|
#[proc_macro_derive(Props, attributes(props))]
|
2021-03-09 05:58:20 +00:00
|
|
|
pub fn derive_typed_builder(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
|
|
|
|
let input = parse_macro_input!(input as syn::DeriveInput);
|
|
|
|
match props::impl_my_derive(&input) {
|
|
|
|
Ok(output) => output.into(),
|
|
|
|
Err(error) => error.to_compile_error().into(),
|
|
|
|
}
|
|
|
|
}
|
2021-07-07 17:51:55 +00:00
|
|
|
|
2022-01-06 16:44:05 +00:00
|
|
|
/// The rsx! macro makes it easy for developers to write jsx-style markup in their components.
|
2021-07-07 17:51:55 +00:00
|
|
|
///
|
|
|
|
/// ## Complete Reference Guide:
|
|
|
|
/// ```
|
2022-05-13 06:46:47 +00:00
|
|
|
#[doc = include_str!("../../../examples/rsx_usage.rs")]
|
2021-07-07 17:51:55 +00:00
|
|
|
/// ```
|
2021-12-30 08:14:47 +00:00
|
|
|
#[proc_macro_error::proc_macro_error]
|
2021-07-07 17:51:55 +00:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn rsx(s: TokenStream) -> TokenStream {
|
2022-02-22 21:34:06 +00:00
|
|
|
match syn::parse::<rsx::CallBody>(s) {
|
2021-12-30 08:14:47 +00:00
|
|
|
Err(err) => err.to_compile_error().into(),
|
|
|
|
Ok(stream) => stream.to_token_stream().into(),
|
2021-07-07 17:51:55 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-03 04:35:56 +00:00
|
|
|
|
2021-12-25 22:18:05 +00:00
|
|
|
/// Derive props for a component within the component definition.
|
|
|
|
///
|
|
|
|
/// This macro provides a simple transformation from `Scope<{}>` to `Scope<P>`,
|
|
|
|
/// removing some boilerplate when defining props.
|
|
|
|
///
|
|
|
|
/// You don't *need* to use this macro at all, but it can be helpful in cases where
|
|
|
|
/// you would be repeating a lot of the usual Rust boilerplate.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// #[inline_props]
|
2021-12-29 04:20:01 +00:00
|
|
|
/// fn app(cx: Scope, bob: String) -> Element {
|
2021-12-25 22:18:05 +00:00
|
|
|
/// cx.render(rsx!("hello, {bob}"))
|
2022-01-22 03:43:43 +00:00
|
|
|
/// }
|
2021-12-25 22:18:05 +00:00
|
|
|
///
|
|
|
|
/// // is equivalent to
|
|
|
|
///
|
|
|
|
/// #[derive(PartialEq, Props)]
|
|
|
|
/// struct AppProps {
|
|
|
|
/// bob: String,
|
2022-01-22 03:43:43 +00:00
|
|
|
/// }
|
2021-12-25 22:18:05 +00:00
|
|
|
///
|
|
|
|
/// fn app(cx: Scope<AppProps>) -> Element {
|
|
|
|
/// cx.render(rsx!("hello, {bob}"))
|
2022-01-22 03:43:43 +00:00
|
|
|
/// }
|
2021-12-25 22:18:05 +00:00
|
|
|
/// ```
|
|
|
|
#[proc_macro_attribute]
|
|
|
|
pub fn inline_props(_args: proc_macro::TokenStream, s: TokenStream) -> TokenStream {
|
|
|
|
match syn::parse::<inlineprops::InlinePropsBody>(s) {
|
|
|
|
Err(e) => e.to_compile_error().into(),
|
|
|
|
Ok(s) => s.to_token_stream().into(),
|
|
|
|
}
|
|
|
|
}
|