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
use dioxus_core::ScopeState;

pub struct UseRoute<'a> {
    cur_route: String,
    cx: &'a ScopeState,
}

impl<'a> UseRoute<'a> {
    /// Parse the query part of the URL
    pub fn param<T>(&self, param: &str) -> Option<&T> {
        todo!()
    }

    pub fn nth_segment(&self, n: usize) -> Option<&str> {
        todo!()
    }

    pub fn last_segment(&self) -> Option<&'a str> {
        todo!()
    }

    /// Parse the segments of the URL, using named parameters (defined in your router)
    pub fn segment<T>(&self, name: &str) -> Option<&T> {
        todo!()
    }
}

pub fn use_route<'a>(cx: &'a ScopeState) -> UseRoute<'a> {
    todo!()
}