1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
use dioxus_core::Component;
use freya_renderer::run_app;
use freya_renderer::{LaunchConfig, WindowConfig};
#[cfg(not(doctest))]
/// Launch a new Window with the default config.
/// - Width: `600.0`
/// - Height: `600.0`
/// - Decorations enabled
/// - Transparency disabled
/// - Window title: `Freya`
/// - Window background: white
///
/// # Example
/// ```rust
/// # use dioxus::prelude::*;
/// # use freya::{dioxus_elements, *};
/// launch(app);
///
/// fn app(cx: Scope) -> Element {
/// render!(
/// rect {
/// width: "100%",
/// height: "100%",
/// label {
/// "Hello World!"
/// }
/// }
/// )
/// }
/// ```
pub fn launch(app: Component<()>) {
launch_cfg(
app,
LaunchConfig {
window: WindowConfig::<()> {
width: 600.0,
height: 600.0,
decorations: true,
transparent: false,
title: "Freya",
..Default::default()
},
..Default::default()
},
)
}
#[cfg(not(doctest))]
/// Launch a new Window with a custom title and the default config.
/// - Width: `400`
/// - Height: `300`
/// - Decorations enabled
/// - Transparency disabled
/// - Window background: white
///
/// # Example
/// ```rust
/// # use dioxus::prelude::*;
/// # use freya::{dioxus_elements, *};
/// launch_with_title(app, "Whoah!");
///
/// fn app(cx: Scope) -> Element {
/// render!(
/// rect {
/// width: "100%",
/// height: "100%",
/// label {
/// "Hello World!"
/// }
/// }
/// )
/// }
/// ```
pub fn launch_with_title(app: Component<()>, title: &'static str) {
launch_cfg(
app,
LaunchConfig {
window: WindowConfig::<()> {
width: 400.0,
height: 300.0,
decorations: true,
transparent: false,
title,
..Default::default()
},
..Default::default()
},
)
}
#[cfg(not(doctest))]
/// Launch a new Window with a custom title, width and height and the default config.
/// - Decorations enabled
/// - Transparency disabled
/// - Window background: white
///
/// # Example
/// ```rust
/// # use dioxus::prelude::*;
/// # use freya::{dioxus_elements, *};
/// launch_with_props(app, "Whoah!", (400, 600));
///
/// fn app(cx: Scope) -> Element {
/// render!(
/// rect {
/// width: "100%",
/// height: "100%",
/// label {
/// "Hello World!"
/// }
/// }
/// )
/// }
/// ```
pub fn launch_with_props(app: Component<()>, title: &'static str, (width, height): (f64, f64)) {
launch_cfg(
app,
LaunchConfig {
window: WindowConfig::<()> {
width,
height,
decorations: true,
transparent: false,
title,
..Default::default()
},
..Default::default()
},
)
}
#[cfg(not(doctest))]
/// Launch a new Window with custom config.
/// - Width
/// - Height
/// - Decorations
/// - Transparency
/// - Window title
/// - Window background color
///
/// # Example
/// ```rust
/// # use dioxus::prelude::*;
/// # use freya::{dioxus_elements, *};
/// launch_cfg(
/// app,
/// WindowConfig::<()>::builder()
/// .with_width(500.0)
/// .with_height(400.0)
/// .with_decorations(true)
/// .with_transparency(false)
/// .with_title("Freya App")
/// .with_background("rgb(150, 100, 200")
/// .build()
/// );
///
/// fn app(cx: Scope) -> Element {
/// render!(
/// rect {
/// width: "100%",
/// height: "100%",
/// label {
/// "Hello World!"
/// }
/// }
/// )
/// }
/// ```
pub fn launch_cfg<T: 'static + Clone + Send>(app: Component, config: LaunchConfig<T>) {
use freya_dom::prelude::{FreyaDOM, SafeDOM};
let fdom = FreyaDOM::default();
let sdom = SafeDOM::new(fdom);
#[cfg(feature = "log")]
{
use tracing::Level;
use tracing_subscriber::FmtSubscriber;
let subscriber = FmtSubscriber::builder()
.with_max_level(Level::TRACE)
.finish();
tracing::subscriber::set_global_default(subscriber)
.expect("Setting default subscriber failed");
}
let (vdom, mutations_notifier, hovered_node) = {
#[cfg(feature = "devtools")]
#[cfg(debug_assertions)]
{
use freya_devtools::with_devtools;
use std::sync::{Arc, Mutex};
use tokio::sync::Notify;
let hovered_node = Some(Arc::new(Mutex::new(None)));
let mutations_notifier = Arc::new(Notify::new());
let vdom = with_devtools(
sdom.clone(),
app,
mutations_notifier.clone(),
hovered_node.clone(),
);
(vdom, Some(mutations_notifier), hovered_node)
}
#[cfg(any(not(feature = "devtools"), not(debug_assertions)))]
{
let vdom = with_accessibility(app);
(vdom, None, None)
}
};
run_app(vdom, sdom, config, mutations_notifier, hovered_node);
}
#[cfg(any(not(feature = "devtools"), not(debug_assertions)))]
use dioxus_core::VirtualDom;
#[cfg(any(not(feature = "devtools"), not(debug_assertions)))]
fn with_accessibility(app: Component) -> VirtualDom {
use dioxus_core::fc_to_builder;
use dioxus_core::{Element, Scope};
use dioxus_core_macro::render;
use freya_hooks::{use_init_accessibility, use_init_focus};
struct RootProps {
app: Component,
}
#[allow(non_snake_case)]
fn Root(cx: Scope<RootProps>) -> Element {
use_init_focus(cx);
use_init_accessibility(cx);
#[allow(non_snake_case)]
let App = cx.props.app;
render!(App {})
}
VirtualDom::new_with_props(Root, RootProps { app })
}