All checks were successful
actionlint check / actionlint check (pull_request) Successful in 6s
conventional pull request title check / conventional pull request title check (pull_request) Successful in 3s
conventional commit messages check / conventional commit messages check (pull_request) Successful in 5s
dotenv-linter check / dotenv-linter check (pull_request) Successful in 12s
GitLeaks check / GitLeaks check (pull_request) Successful in 11s
hadolint check / hadolint check (pull_request) Successful in 28s
markdownlint check / markdownlint check (pull_request) Successful in 52s
Prettier check / Prettier check (pull_request) Successful in 36s
htmlhint check / htmlhint check (pull_request) Successful in 55s
checkov check / checkov check (pull_request) Successful in 1m15s
Stylelint check / Stylelint check (pull_request) Successful in 31s
yamllint check / yamllint check (pull_request) Successful in 29s
ShellCheck check / ShellCheck check (pull_request) Successful in 1m9s
Rust check / Rust check (pull_request) Successful in 22m2s
39 lines
1.3 KiB
Rust
39 lines
1.3 KiB
Rust
use crate::components::bottom_panel::BottomPanel;
|
|
use crate::components::create_button::CreateButton;
|
|
use crate::components::sticky_bottom::StickyBottom;
|
|
use crate::components::task_form::LATEST_VISITED_CATEGORY;
|
|
use crate::models::category::Category;
|
|
use crate::route::Route;
|
|
use dioxus::core_macro::rsx;
|
|
use dioxus::dioxus_core::Element;
|
|
use dioxus::prelude::*;
|
|
|
|
#[component]
|
|
pub(crate) fn Navigation() -> Element {
|
|
let current_route = use_route();
|
|
use_effect(use_reactive(¤t_route, move |current_route| {
|
|
*LATEST_VISITED_CATEGORY.write() = match current_route {
|
|
Route::CategorySomedayMaybePage => Category::SomedayMaybe,
|
|
Route::CategoryWaitingForPage => Category::WaitingFor(String::new()),
|
|
Route::CategoryNextStepsPage => Category::NextSteps,
|
|
Route::CategoryCalendarPage | Route::CategoryTodayPage => Category::Calendar {
|
|
date: chrono::Local::now().date_naive(),
|
|
reoccurrence: None,
|
|
time: None,
|
|
},
|
|
_ => Category::Inbox,
|
|
};
|
|
}));
|
|
|
|
rsx! {
|
|
div {
|
|
class: "grow flex flex-col pb-36",
|
|
Outlet::<Route> {}
|
|
}
|
|
StickyBottom {
|
|
CreateButton {},
|
|
BottomPanel {}
|
|
}
|
|
}
|
|
}
|