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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
use super::*;
use std::fmt::Debug;
use yew::prelude::*;

use std::collections::HashMap;

use yew::html::ChildrenRenderer;
use yew::virtual_dom::{VChild, VComp};
use yew_router::{
    agent::RouteRequest::GetCurrentRoute, components::RouterAnchor, prelude::RouteAgentBridge,
    Switch,
};

// nav router item

#[cfg(feature = "router")]
#[derive(Clone, PartialEq, Properties)]
pub struct NavRouterItemProps<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    #[prop_or_default]
    pub children: Children,
    pub to: SWITCH,
    #[prop_or_default]
    pub active: bool,

    #[prop_or_default]
    pub on_active: Callback<bool>,
}

/// A navigation item, using the Router.
#[cfg(feature = "router")]
pub struct NavRouterItem<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    props: NavRouterItemProps<SWITCH>,
    active: bool,
    _router: RouteAgentBridge,
}

#[cfg(feature = "router")]
#[derive(Clone)]
pub enum NavRouterMsg<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    RouteChange(Option<SWITCH>),
}

#[cfg(feature = "router")]
impl<SWITCH> Component for NavRouterItem<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    type Message = NavRouterMsg<SWITCH>;
    type Properties = NavRouterItemProps<SWITCH>;

    fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self {
        let callback = link.callback(|route: yew_router::route::Route| {
            NavRouterMsg::RouteChange(Switch::switch(route))
        });
        let active = props.active;
        let mut bridge = RouteAgentBridge::new(callback);
        bridge.send(GetCurrentRoute);
        Self {
            props,
            active,
            _router: bridge,
        }
    }

    fn update(&mut self, msg: Self::Message) -> ShouldRender {
        match msg {
            NavRouterMsg::RouteChange(ref route) => {
                self.active = route
                    .as_ref()
                    .map(|sw| sw == &self.props.to)
                    .unwrap_or_default();

                self.props.on_active.emit(self.active);
            }
        }
        true
    }

    fn change(&mut self, props: Self::Properties) -> ShouldRender {
        if self.props != props {
            self.props = props;
            true
        } else {
            false
        }
    }

    fn view(&self) -> Html {
        let mut classes = Classes::from("pf-c-nav__link");

        if self.active {
            classes.push("pf-m-current");
        }

        return html! {
            <li class="pf-c-nav__item">
                <RouterAnchor<SWITCH> route=self.props.to.clone() classes=classes.to_string()>
                    { for self.props.children.iter() }
                </RouterAnchor<SWITCH>>
            </li>
        };
    }
}

// nav router group children

#[derive(Clone, PartialEq)]
pub enum NavRouterExpandableChild<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    Item(<NavItem as Component>::Properties),
    RouterItem(<NavRouterItem<SWITCH> as Component>::Properties),
}

impl<SWITCH> NavRouterExpandableChild<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    fn set_on_active(&mut self, callback: Callback<bool>) {
        match self {
            Self::RouterItem(props) => props.on_active = callback,
            _ => {}
        }
    }
}

impl<SWITCH> From<NavItemProps> for NavRouterExpandableChild<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    fn from(props: NavItemProps) -> Self {
        NavRouterExpandableChild::Item(props)
    }
}

impl<SWITCH> From<NavRouterItemProps<SWITCH>> for NavRouterExpandableChild<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    fn from(props: NavRouterItemProps<SWITCH>) -> Self {
        NavRouterExpandableChild::RouterItem(props)
    }
}

// nav router group variant

#[derive(PartialEq, Clone)]
pub struct NavRouterExpandableVariant<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    props: NavRouterExpandableChild<SWITCH>,
}

impl<SWITCH, CHILD> From<VChild<CHILD>> for NavRouterExpandableVariant<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
    CHILD: Component,
    CHILD::Properties: Into<NavRouterExpandableChild<SWITCH>>,
{
    fn from(vchild: VChild<CHILD>) -> Self {
        Self {
            props: vchild.props.into(),
        }
    }
}

impl<SWITCH> Into<Html> for NavRouterExpandableVariant<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    fn into(self) -> Html {
        match self.props {
            NavRouterExpandableChild::Item(props) => {
                VComp::new::<NavItem>(props, NodeRef::default(), None).into()
            }
            NavRouterExpandableChild::RouterItem(props) => {
                VComp::new::<NavRouterItem<SWITCH>>(props, NodeRef::default(), None).into()
            }
        }
    }
}

// nav router group

#[derive(Clone, Properties)]
pub struct NavRouterExpandableProps<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    #[prop_or_default]
    pub children: ChildrenRenderer<NavRouterExpandableVariant<SWITCH>>,
    #[prop_or_default]
    pub title: String,
}

/// A navigation item, using the Router.
pub struct NavRouterExpandable<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    props: NavRouterExpandableProps<SWITCH>,
    link: ComponentLink<Self>,

    state: HashMap<usize, bool>,
    active: bool,
}

#[derive(Clone)]
pub enum NavRouterExpandableMsg {
    ChildActive(usize, bool),
}

impl<SWITCH> Component for NavRouterExpandable<SWITCH>
where
    SWITCH: Switch + Clone + PartialEq + Debug + 'static,
{
    type Message = NavRouterExpandableMsg;
    type Properties = NavRouterExpandableProps<SWITCH>;

    fn create(props: Self::Properties, link: ComponentLink<Self>) -> Self {
        Self {
            props,
            link,
            state: HashMap::new(),
            active: false,
        }
    }

    fn update(&mut self, msg: Self::Message) -> ShouldRender {
        match msg {
            Self::Message::ChildActive(idx, active) => {
                self.state.insert(idx, active);
                self.active = self.state.iter().any(|(_, v)| *v);
            }
        }
        true
    }

    fn change(&mut self, props: Self::Properties) -> ShouldRender {
        self.props = props;
        true
    }

    fn view(&self) -> Html {
        return html! {
            <NavExpandable
                title=&self.props.title
                expanded=&self.active
                >
                { for self.props.children.iter().enumerate().map(|(i, mut c)|{
                    let on_active = self
                        .link
                        .callback(move |active| NavRouterExpandableMsg::ChildActive(i, active));
                    c.props.set_on_active(on_active);
                    c
                }) }
            </NavExpandable>
        };
    }
}