dioxus/packages/core-macro/src/lib.rs

59 lines
1.6 KiB
Rust
Raw Normal View History

2021-02-28 22:30:10 +00:00
use proc_macro::TokenStream;
2021-01-20 17:04:27 +00:00
use quote::{quote, quote_spanned, ToTokens};
use syn::spanned::Spanned;
2021-01-21 07:25:44 +00:00
use syn::{
parse::{Parse, ParseStream},
Signature,
};
2021-01-20 17:04:27 +00:00
use syn::{
parse_macro_input, Attribute, Block, FnArg, Ident, Item, ItemFn, ReturnType, Type, Visibility,
};
mod fc;
2021-02-28 22:30:10 +00:00
mod htm;
mod ifmt;
// mod styles;
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 {
let html: htm::HtmlRender = match syn::parse(s) {
Ok(s) => s,
Err(e) => return e.to_compile_error().into(),
};
html.to_token_stream().into()
}
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.
#[proc_macro_attribute]
2021-02-28 22:30:10 +00:00
pub fn fc(attr: TokenStream, item: TokenStream) -> TokenStream {
use fc::{function_component_impl, FunctionComponent};
2021-01-21 07:25:44 +00:00
let item = parse_macro_input!(item as FunctionComponent);
function_component_impl(item)
.unwrap_or_else(|err| err.to_compile_error())
.into()
2021-01-20 17:04:27 +00:00
// function_component_impl(attr, item)
// let attr = parse_macro_input!(attr as FunctionComponentName);
2021-01-21 07:25:44 +00:00
}
2021-01-20 17:04:27 +00:00
#[proc_macro]
2021-02-28 22:30:10 +00:00
pub fn format_args_f(input: TokenStream) -> TokenStream {
use ifmt::*;
2021-01-21 07:25:44 +00:00
let item = parse_macro_input!(input as IfmtInput);
2021-01-21 07:25:44 +00:00
// #[allow(unused)]
// const FUNCTION_NAME: &str = "format_args_f";
2021-01-21 07:25:44 +00:00
// debug_input!(&input);
2021-01-21 07:25:44 +00:00
ifmt::format_args_f_impl(item)
// .unwrap_or_else(|err| err.to_compile_error())
// .into()
2021-01-20 17:04:27 +00:00
}