61 lines
1.8 KiB
Rust
Raw Normal View History

2022-03-06 20:34:20 -05:00
// Copyright 2022 Jeremy Wall
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use sycamore::prelude::*;
2022-10-29 10:15:22 -04:00
use tracing::debug;
2022-03-06 20:34:20 -05:00
2022-11-01 20:38:14 -04:00
#[derive(Props)]
pub struct TabState<'a, G: Html> {
pub children: Children<'a, G>,
2022-10-29 10:15:22 -04:00
pub selected: Option<String>,
tablist: Vec<(String, &'static str)>,
2022-03-06 20:34:20 -05:00
}
#[component]
pub fn TabbedView<'a, G: Html>(cx: Scope<'a>, state: TabState<'a, G>) -> View<G> {
let TabState {
children,
selected,
tablist,
} = state;
let children = children.call(cx);
2022-11-01 20:38:14 -04:00
let menu = View::new_fragment(
tablist
.iter()
.map(|&(ref href, show)| {
let href = href.clone();
2022-11-01 20:38:14 -04:00
debug!(?selected, show, "identifying tab");
let class = if selected.as_ref().map_or(false, |selected| selected == show) {
"no-print selected"
} else {
"no-print"
};
view! {cx,
li(class=class) { a(href=href) { (show) } }
}
// TODO
})
.collect(),
);
view! {cx,
2022-10-29 10:15:22 -04:00
nav {
ul(class="tabs") {
2022-11-01 20:38:14 -04:00
(menu)
}
2022-10-29 10:15:22 -04:00
}
main(class=".conatiner-fluid") {
(children)
2022-03-07 16:22:51 -05:00
}
}
2022-03-06 20:34:20 -05:00
}