mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-12 23:47:16 +00:00
feat: add stylesheet component to dioxus document (#3138)
* feat: add stylesheet component to dioxus document * fix asset path * add cache key to playwright
This commit is contained in:
parent
9ebcbc6bd9
commit
42f6b91390
3 changed files with 36 additions and 1 deletions
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
@ -254,6 +254,7 @@ jobs:
|
|||
with:
|
||||
cache-all-crates: "true"
|
||||
cache-on-failure: "true"
|
||||
key: "playwright-tests"
|
||||
|
||||
- name: Playwright
|
||||
working-directory: ./packages/playwright-tests
|
||||
|
@ -346,7 +347,7 @@ jobs:
|
|||
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
with:
|
||||
key: "${{ matrix.platform.target }}"
|
||||
key: "matrix-${{ matrix.platform.target }}"
|
||||
cache-all-crates: "true"
|
||||
cache-on-failure: "true"
|
||||
|
||||
|
|
|
@ -7,6 +7,8 @@ use dioxus_core_macro::*;
|
|||
|
||||
mod link;
|
||||
pub use link::*;
|
||||
mod stylesheet;
|
||||
pub use stylesheet::*;
|
||||
mod meta;
|
||||
pub use meta::*;
|
||||
mod script;
|
||||
|
|
32
packages/document/src/elements/stylesheet.rs
Normal file
32
packages/document/src/elements/stylesheet.rs
Normal file
|
@ -0,0 +1,32 @@
|
|||
use super::*;
|
||||
|
||||
/// Render a [`link`](crate::elements::link) tag into the head of the page with the stylesheet rel.
|
||||
/// This is equivalent to the [`Link`](crate::Link) component with a slightly more ergonomic API.
|
||||
///
|
||||
///
|
||||
/// # Example
|
||||
/// ```rust, no_run
|
||||
/// # use dioxus::prelude::*;
|
||||
/// fn RedBackground() -> Element {
|
||||
/// rsx! {
|
||||
/// document::Stylesheet {
|
||||
/// src: asset!("/assets/style.css")
|
||||
/// }
|
||||
/// }
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
/// <div class="warning">
|
||||
///
|
||||
/// Any updates to the props after the first render will not be reflected in the head.
|
||||
///
|
||||
/// </div>
|
||||
#[component]
|
||||
pub fn Stylesheet(props: LinkProps, src: Option<String>) -> Element {
|
||||
super::Link(LinkProps {
|
||||
href: src.or_else(|| props.href.clone()),
|
||||
rel: Some("stylesheet".into()),
|
||||
r#type: Some("text/css".into()),
|
||||
..props
|
||||
})
|
||||
}
|
Loading…
Reference in a new issue