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
use std::fmt;
use std::rc::Rc;

use yew::prelude::*;
use yew::suspense::SuspensionResult;

use crate::hooks::{
    use_bridged_mutation, use_bridged_query, UseBridgedMutationHandle, UseBridgedQueryHandle,
};
use crate::links::Link;
use crate::routines::{BridgedMutation, BridgedQuery};

/// The Bridge.
pub struct Bridge<L> {
    pub(crate) link: L,
}

impl<L> Clone for Bridge<L>
where
    L: Clone,
{
    fn clone(&self) -> Self {
        Self {
            link: self.link.clone(),
        }
    }
}

impl<L> fmt::Debug for Bridge<L> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_struct("Bridge").finish_non_exhaustive()
    }
}

impl<L> PartialEq for Bridge<L>
where
    L: Link,
{
    fn eq(&self, other: &Self) -> bool {
        self.link == other.link
    }
}
impl<L> Eq for Bridge<L> where L: Link {}

impl<L> Bridge<L>
where
    L: Link,
{
    /// Creates a new Bridge.
    pub fn new(link: L) -> Self {
        Self { link }
    }

    /// Returns the link used by current instance.
    pub fn link(&self) -> &L {
        &self.link
    }

    /// Bridges a mutation.
    pub fn use_mutation<T>() -> impl Hook<Output = UseBridgedMutationHandle<T, L>>
    where
        T: 'static + BridgedMutation,
        L: 'static,
    {
        use_bridged_mutation()
    }

    /// Bridges a query.
    pub fn use_query<T>(
        input: Rc<T::Input>,
    ) -> impl Hook<Output = SuspensionResult<UseBridgedQueryHandle<T, L>>>
    where
        T: 'static + BridgedQuery,
        L: 'static,
    {
        use_bridged_query(input)
    }
}