2021-02-28 17:30:10 -05:00
|
|
|
use proc_macro::TokenStream;
|
2022-05-29 08:04:08 -05:00
|
|
|
use quote::ToTokens;
|
2022-12-23 17:47:57 -05:00
|
|
|
use rsx::RenderCallBody;
|
2021-03-04 12:03:22 -05:00
|
|
|
use syn::parse_macro_input;
|
2021-01-20 12:04:27 -05:00
|
|
|
|
2022-02-18 23:14:17 -05:00
|
|
|
mod inlineprops;
|
|
|
|
mod props;
|
2022-04-24 02:35:52 -04:00
|
|
|
|
|
|
|
// mod rsx;
|
2022-04-24 02:55:20 -04:00
|
|
|
use dioxus_rsx as rsx;
|
2022-02-18 23:14:17 -05:00
|
|
|
|
2021-02-26 20:42:55 -05:00
|
|
|
#[proc_macro]
|
2021-02-28 17:30:10 -05:00
|
|
|
pub fn format_args_f(input: TokenStream) -> TokenStream {
|
2022-05-25 08:58:59 -05:00
|
|
|
use rsx::*;
|
2022-11-01 18:42:29 -07:00
|
|
|
format_args_f_impl(parse_macro_input!(input as IfmtInput))
|
2021-03-07 21:28:20 -05:00
|
|
|
.unwrap_or_else(|err| err.to_compile_error())
|
|
|
|
.into()
|
2021-01-20 12:04:27 -05:00
|
|
|
}
|
2021-03-09 00:58:20 -05:00
|
|
|
|
2021-12-21 00:46:10 -05:00
|
|
|
#[proc_macro_derive(Props, attributes(props))]
|
2021-03-09 00:58:20 -05: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 13:51:55 -04:00
|
|
|
|
2022-01-06 10:44:05 -06:00
|
|
|
/// The rsx! macro makes it easy for developers to write jsx-style markup in their components.
|
2021-07-07 13:51:55 -04:00
|
|
|
#[proc_macro]
|
|
|
|
pub fn rsx(s: TokenStream) -> TokenStream {
|
2022-02-22 16:34:06 -05:00
|
|
|
match syn::parse::<rsx::CallBody>(s) {
|
2021-12-30 03:14:47 -05:00
|
|
|
Err(err) => err.to_compile_error().into(),
|
2022-09-30 14:03:06 -05:00
|
|
|
Ok(body) => body.to_token_stream().into(),
|
|
|
|
}
|
|
|
|
}
|
2022-06-04 12:20:56 -05:00
|
|
|
|
2022-09-25 01:05:16 -07:00
|
|
|
/// The render! macro makes it easy for developers to write jsx-style markup in their components.
|
|
|
|
///
|
|
|
|
/// The render macro automatically renders rsx - making it unhygenic.
|
|
|
|
#[proc_macro]
|
|
|
|
pub fn render(s: TokenStream) -> TokenStream {
|
|
|
|
match syn::parse::<rsx::CallBody>(s) {
|
|
|
|
Err(err) => err.to_compile_error().into(),
|
2022-12-23 17:47:57 -05:00
|
|
|
Ok(body) => RenderCallBody(body).into_token_stream().into(),
|
2022-09-25 01:05:16 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 17:18:05 -05: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
|
2022-07-09 15:15:20 -04:00
|
|
|
/// ```ignore
|
2021-12-25 17:18:05 -05:00
|
|
|
/// #[inline_props]
|
2021-12-28 23:20:01 -05:00
|
|
|
/// fn app(cx: Scope, bob: String) -> Element {
|
2021-12-25 17:18:05 -05:00
|
|
|
/// cx.render(rsx!("hello, {bob}"))
|
2022-01-21 21:43:43 -06:00
|
|
|
/// }
|
2021-12-25 17:18:05 -05:00
|
|
|
///
|
|
|
|
/// // is equivalent to
|
|
|
|
///
|
|
|
|
/// #[derive(PartialEq, Props)]
|
|
|
|
/// struct AppProps {
|
|
|
|
/// bob: String,
|
2022-01-21 21:43:43 -06:00
|
|
|
/// }
|
2021-12-25 17:18:05 -05:00
|
|
|
///
|
|
|
|
/// fn app(cx: Scope<AppProps>) -> Element {
|
|
|
|
/// cx.render(rsx!("hello, {bob}"))
|
2022-01-21 21:43:43 -06:00
|
|
|
/// }
|
2021-12-25 17:18:05 -05: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(),
|
|
|
|
}
|
|
|
|
}
|