mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
updated examples with the new optional props
This commit is contained in:
parent
be55524e69
commit
a2825fb13c
3 changed files with 11 additions and 13 deletions
|
@ -14,37 +14,38 @@ fn app(cx: Scope) -> Element {
|
|||
cx.render(rsx! {
|
||||
Button {
|
||||
a: "asd".to_string(),
|
||||
c: Some("asd".to_string()),
|
||||
d: "asd".to_string(),
|
||||
c: "asd".to_string(),
|
||||
d: Some("asd".to_string()),
|
||||
e: "asd".to_string(),
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
type SthElse<T> = Option<T>;
|
||||
|
||||
#[derive(Props, PartialEq)]
|
||||
struct ButtonProps {
|
||||
a: String,
|
||||
|
||||
#[props(default)]
|
||||
b: Option<String>,
|
||||
b: String,
|
||||
|
||||
#[props(default)]
|
||||
c: Option<String>,
|
||||
|
||||
#[props(default, strip_option)]
|
||||
#[props(!optional)]
|
||||
d: Option<String>,
|
||||
|
||||
#[props(optional)]
|
||||
e: Option<String>,
|
||||
e: SthElse<String>,
|
||||
}
|
||||
|
||||
fn Button(cx: Scope<ButtonProps>) -> Element {
|
||||
cx.render(rsx! {
|
||||
button {
|
||||
"{cx.props.a}"
|
||||
"{cx.props.b:?}"
|
||||
"{cx.props.c:?}"
|
||||
"{cx.props.d:?}"
|
||||
"{cx.props.a} | "
|
||||
"{cx.props.b:?} | "
|
||||
"{cx.props.c:?} | "
|
||||
"{cx.props.d:?} | "
|
||||
"{cx.props.e:?}"
|
||||
}
|
||||
})
|
||||
|
|
|
@ -27,7 +27,6 @@ pub struct RedirectProps<'a> {
|
|||
/// // Relative path
|
||||
/// Redirect { from: "", to: "../" }
|
||||
/// ```
|
||||
#[props(optional)]
|
||||
pub from: Option<&'a str>,
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,6 @@ pub struct RouterProps<'a> {
|
|||
///
|
||||
/// This will be used to trim any latent segments from the URL when your app is
|
||||
/// not deployed to the root of the domain.
|
||||
#[props(optional)]
|
||||
pub base_url: Option<&'a str>,
|
||||
|
||||
/// Hook into the router when the route is changed.
|
||||
|
@ -33,7 +32,6 @@ pub struct RouterProps<'a> {
|
|||
///
|
||||
/// This is useful if you don't want to repeat the same `active_class` prop value in every Link.
|
||||
/// By default set to `"active"`.
|
||||
#[props(default, strip_option)]
|
||||
pub active_class: Option<&'a str>,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue