diff --git a/assets/favicon.ico b/assets/favicon.ico
index 070d1da..adc9155 100644
Binary files a/assets/favicon.ico and b/assets/favicon.ico differ
diff --git a/assets/images/icon.png b/assets/images/icon.png
index 1c33866..8ea72ef 100644
Binary files a/assets/images/icon.png and b/assets/images/icon.png differ
diff --git a/assets/images/icon.svg b/assets/images/icon.svg
deleted file mode 100644
index 30bb299..0000000
--- a/assets/images/icon.svg
+++ /dev/null
@@ -1,203 +0,0 @@
-
-
-
-
diff --git a/assets/styles/input_range.css b/assets/styles/input_range.css
index a9338cd..1de33c2 100644
--- a/assets/styles/input_range.css
+++ b/assets/styles/input_range.css
@@ -15,6 +15,7 @@ input[type="range"]::-moz-range-thumb, input[type="range"]::-webkit-slider-thumb
filter: drop-shadow(0 var(--spacing) 0 var(--color-gray-500));
border: 0;
border-radius: 0.5rem;
+ cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
diff --git a/src/components/app.rs b/src/components/app.rs
index 9bbf89b..6e4204c 100644
--- a/src/components/app.rs
+++ b/src/components/app.rs
@@ -1,4 +1,5 @@
use crate::internationalization::get_language_identifier;
+
use crate::route::Route;
use dioxus::core_macro::rsx;
use dioxus::dioxus_core::Element;
@@ -41,7 +42,7 @@ pub(crate) fn App() -> Element {
document::Link { rel: "manifest", href: MANIFEST, crossorigin: "use-credentials" }
div {
- class: "min-h-screen pt-4 pb-36 flex flex-col text-gray-300 bg-gray-900",
+ class: "min-h-screen py-4 flex flex-col text-gray-300 bg-gray-900",
Router:: {}
}
}
diff --git a/src/components/bottom_panel.rs b/src/components/bottom_panel.rs
index 6d2f0b0..f230871 100644
--- a/src/components/bottom_panel.rs
+++ b/src/components/bottom_panel.rs
@@ -1,78 +1,22 @@
-use crate::components::error_boundary_message::ErrorBoundaryMessage;
use crate::components::navigation::Navigation;
-use crate::components::project_form::ProjectForm;
-use crate::components::task_form::TaskForm;
-use crate::models::project::Project;
-use crate::models::task::Task;
-use crate::route::Route;
use dioxus::prelude::*;
#[component]
-pub(crate) fn BottomPanel(display_form: Signal) -> Element {
- // A signal for delaying the application of styles.
- #[allow(clippy::redundant_closure)]
- let mut expanded = use_signal(|| display_form());
+pub(crate) fn BottomPanel() -> Element {
let navigation_expanded = use_signal(|| false);
- let current_route = use_route();
-
- let mut project_being_edited = use_context::>>();
- let mut task_being_edited = use_context::>>();
-
- use_effect(use_reactive(&display_form, move |display_form| {
- if display_form() {
- expanded.set(true);
- } else {
- spawn(async move {
- // Necessary for a smooth – not instant – height transition.
- #[cfg(not(feature = "server"))]
- async_std::task::sleep(std::time::Duration::from_millis(500)).await;
- /* The check is necessary for the situation when the user expands the panel while
- it is being closed. */
- if !display_form() {
- expanded.set(false);
- }
- });
- }
- }));
rsx! {
div {
class: format!(
"flex flex-col pointer-events-auto bg-gray-800 transition-[height] duration-[500ms] ease-[cubic-bezier(0.79,0.14,0.15,0.86)] overflow-y-scroll {}",
- match (display_form(), current_route, navigation_expanded()) {
- (false, _, false) => "h-[66px]",
- (false, _, true) => "h-[130px]",
- (true, Route::ProjectsPage, _) => "h-[130px]",
- (true, _, _) => "h-[506px]",
+ if navigation_expanded() {
+ "h-[130px]"
+ } else {
+ "h-[66px]"
}
),
- if expanded() {
- ErrorBoundaryMessage {
- match current_route {
- Route::ProjectsPage => rsx! {
- ProjectForm {
- project: project_being_edited(),
- on_successful_submit: move |_| {
- display_form.set(false);
- project_being_edited.set(None);
- }
- }
- },
- _ => rsx! {
- TaskForm {
- task: task_being_edited(),
- on_successful_submit: move |_| {
- display_form.set(false);
- task_being_edited.set(None);
- }
- }
- }
- }
- }
- } else {
- Navigation {
- is_expanded: navigation_expanded,
- }
+ Navigation {
+ is_expanded: navigation_expanded,
}
}
}
diff --git a/src/components/button_primary.rs b/src/components/button_primary.rs
new file mode 100644
index 0000000..7fe01c2
--- /dev/null
+++ b/src/components/button_primary.rs
@@ -0,0 +1,29 @@
+use dioxus::prelude::*;
+
+#[component]
+pub(crate) fn ButtonPrimary(
+ class: Option,
+ children: Element,
+ #[props(extends = GlobalAttributes, extends = button)] attributes: Vec,
+ // TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4019 gets resolved.
+ onclick: Option>>,
+) -> Element {
+ rsx! {
+ button {
+ class: format!(
+ "cursor-pointer pb-[6px] hover:pb-[7px] active:pb-[2px] mt-[1px] hover:mt-0 active:mt-[5px] hover:*:drop-shadow-[0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted)] active:*:drop-shadow-[0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted)] transition-all duration-150 {}",
+ class.unwrap_or("".to_owned())
+ ),
+ onclick: move |event| {
+ if let Some(onclick) = onclick {
+ onclick.call(event);
+ }
+ },
+ ..attributes,
+ div {
+ class: "py-3.5 px-4 flex flex-row justify-center items-center bg-amber-300-muted drop-shadow-[0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted)] text-amber-700-muted rounded-xl transition-all duration-150",
+ {children}
+ }
+ }
+ }
+}
diff --git a/src/components/button_secondary.rs b/src/components/button_secondary.rs
new file mode 100644
index 0000000..4be48a0
--- /dev/null
+++ b/src/components/button_secondary.rs
@@ -0,0 +1,29 @@
+use dioxus::prelude::*;
+
+#[component]
+pub(crate) fn ButtonSecondary(
+ class: Option,
+ children: Element,
+ #[props(extends = GlobalAttributes, extends = button)] attributes: Vec,
+ // TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4019 gets resolved.
+ onclick: Option>>,
+) -> Element {
+ rsx! {
+ button {
+ class: format!(
+ "cursor-pointer pb-[6px] hover:pb-[7px] active:pb-[2px] mt-[1px] hover:mt-0 active:mt-[5px] hover:*:drop-shadow-[0_7px_0_var(--color-gray-800)] active:*:drop-shadow-[0_2px_0_var(--color-gray-800)] transition-all duration-150 {}",
+ class.unwrap_or("".to_owned())
+ ),
+ onclick: move |event| {
+ if let Some(onclick) = onclick {
+ onclick.call(event);
+ }
+ },
+ ..attributes,
+ div {
+ class: "py-3.5 px-4 flex flex-row justify-center items-center bg-gray-600 drop-shadow-[0_6px_0_var(--color-gray-800)] rounded-xl transition-all duration-150",
+ {children}
+ }
+ }
+ }
+}
diff --git a/src/components/category_calendar_task_list.rs b/src/components/category_calendar_task_list.rs
index 5a61335..16df019 100644
--- a/src/components/category_calendar_task_list.rs
+++ b/src/components/category_calendar_task_list.rs
@@ -28,11 +28,12 @@ pub(crate) fn CategoryCalendarTaskList() -> Element {
div {
class: "flex flex-col gap-4",
div {
- class: "px-7 flex flex-row items-center gap-2 font-bold",
+ class: "px-7 flex flex-row items-center gap-2 text-gray-500 font-bold",
div {
class: "pt-1",
{
- date_current.format_localized(t!(
+ date_current.format_localized(
+ t!(
if date_current.year() == Local::now().year() {
"date-weekday-format"
} else {
diff --git a/src/components/category_input.rs b/src/components/category_input.rs
index 128a60a..9420271 100644
--- a/src/components/category_input.rs
+++ b/src/components/category_input.rs
@@ -3,9 +3,9 @@ use crate::models::category::Category;
use dioxus::core_macro::rsx;
use dioxus::dioxus_core::Element;
use dioxus::prelude::*;
-use dioxus_free_icons::Icon;
+use dioxus_free_icons::icons::fa_regular_icons::FaLightbulb;
use dioxus_free_icons::icons::fa_solid_icons::{
- FaCalendarDays, FaForward, FaHourglassHalf, FaInbox, FaQuestion, FaSignsPost, FaWater
+ FaCalendarDays, FaHourglassHalf, FaInbox, FaSignsPost, FaWater,
};
#[component]
@@ -17,7 +17,7 @@ pub(crate) fn CategoryInput(
div {
class: format!("grid grid-cols-3 gap-3 {}", class.unwrap_or("")),
SelectButton {
- icon: FaQuestion,
+ icon: FaLightbulb,
is_selected: matches!(selected_category(), Category::SomedayMaybe),
on_select: move |_| {
selected_category.set(Category::SomedayMaybe);
diff --git a/src/components/create_button.rs b/src/components/create_button.rs
new file mode 100644
index 0000000..a67576d
--- /dev/null
+++ b/src/components/create_button.rs
@@ -0,0 +1,31 @@
+use crate::components::project_form::PROJECT_BEING_EDITED;
+use crate::components::{button_primary::ButtonPrimary, task_form::TASK_BEING_EDITED};
+use crate::route::Route;
+use dioxus::prelude::*;
+use dioxus_free_icons::{Icon, icons::fa_solid_icons::FaGavel};
+
+#[component]
+pub(crate) fn CreateButton() -> Element {
+ let navigator = use_navigator();
+ let current_route = use_route();
+ rsx! {
+ ButtonPrimary {
+ class: "pointer-events-auto m-4 self-end *:rounded-full! *:p-4",
+ onclick: move |_| {
+ *TASK_BEING_EDITED.write() = None;
+ *PROJECT_BEING_EDITED.write() = None;
+ navigator.push(
+ match current_route {
+ Route::ProjectsPage => Route::ProjectFormPage,
+ _ => Route::TaskFormPage,
+ }
+ );
+ },
+ Icon {
+ icon: FaGavel,
+ height: 24,
+ width: 24
+ }
+ }
+ }
+}
diff --git a/src/components/form_open_button.rs b/src/components/form_open_button.rs
deleted file mode 100644
index 6142867..0000000
--- a/src/components/form_open_button.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-use crate::models::project::Project;
-use crate::models::task::Task;
-use dioxus::prelude::*;
-use dioxus_free_icons::{
- Icon,
- icons::fa_solid_icons::{FaGavel, FaPlus, FaXmark},
-};
-
-#[component]
-pub(crate) fn FormOpenButton(is_opened: Signal) -> Element {
- let mut project_being_edited = use_context::>>();
- let mut task_being_edited = use_context::>>();
-
- rsx! {
- button {
- class: "pointer-events-auto m-4 p-4 self-end bg-amber-300-muted drop-shadow-[0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted),0_1px_0_var(--color-amber-700-muted)] rounded-full text-amber-700-muted cursor-pointer",
- onclick: move |_| {
- if is_opened() {
- project_being_edited.set(None);
- task_being_edited.set(None);
- }
- is_opened.set(!is_opened());
- },
- if is_opened() {
- Icon {
- icon: FaXmark,
- height: 24,
- width: 24
- }
- } else {
- Icon {
- icon: FaGavel,
- height: 24,
- width: 24
- }
- }
- }
- }
-}
diff --git a/src/components/input.rs b/src/components/input.rs
index 72e434a..8a7d4d3 100644
--- a/src/components/input.rs
+++ b/src/components/input.rs
@@ -2,41 +2,46 @@ use dioxus::prelude::*;
#[component]
pub(crate) fn Input(
- name: String,
- required: Option,
- disabled: Option,
- initial_value: Option,
class: Option,
+ name: String,
r#type: String,
- inputmode: Option,
- min: Option,
+ id: Option,
+ #[props(extends = GlobalAttributes, extends = input)] attributes: Vec,
+ // TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/5271 gets resolved.
autofocus: Option,
+ // TODO: Remove this once https://github.com/DioxusLabs/dioxus/issues/4019 gets resolved.
oninput: Option>>,
+ onchange: Option>>,
) -> Element {
rsx! {
input {
- name: name.clone(),
- required,
- disabled,
- initial_value,
class: format!(
- "pt-3 pb-2.25 {} grow bg-gray-800-muted drop-shadow-[0_calc(0px_-_var(--spacing))_0_var(--color-gray-900-muted)] rounded-xl {}",
+ "pt-3 pb-2.25 {} bg-gray-800-muted enabled:hover:bg-gray-800 enabled:focus:bg-gray-800 drop-shadow-[0_calc(0px_-_var(--spacing))_0_var(--color-gray-900-muted)] rounded-xl outline-0 {} transition-all duration-150 {}",
match r#type.as_str() {
"date" => "ps-3.25 pe-3",
_ => "px-4"
},
+ match r#type.as_str() {
+ "text" | "number" => "",
+ _ => "enabled:cursor-pointer"
+ },
class.unwrap_or("".to_owned())
),
+ name: name.clone(),
r#type,
- inputmode,
- min,
+ id: id.unwrap_or(format!("input_{}", name)),
autofocus,
- id: "input_{name}",
oninput: move |event| {
if let Some(oninput) = oninput {
oninput.call(event);
}
- }
+ },
+ onchange: move |event| {
+ if let Some(onchange) = oninput {
+ onchange.call(event);
+ }
+ },
+ ..attributes
}
}
}
diff --git a/src/components/input_label.rs b/src/components/input_label.rs
index 6f5952c..b1b859d 100644
--- a/src/components/input_label.rs
+++ b/src/components/input_label.rs
@@ -4,12 +4,12 @@ use dioxus_free_icons::{Icon, IconShape};
#[component]
pub(crate) fn InputLabel(
icon: I,
- r#for: Option
+ r#for: Option,
) -> Element {
rsx! {
label {
r#for,
- class: "mt-0.5 min-w-6 flex flex-row justify-center items-center",
+ class: "mt-0.5 min-w-7 flex flex-row justify-center items-center",
Icon {
class: "text-gray-600",
icon,
diff --git a/src/components/mod.rs b/src/components/mod.rs
index 6deb488..4ca3745 100644
--- a/src/components/mod.rs
+++ b/src/components/mod.rs
@@ -1,10 +1,12 @@
pub(crate) mod app;
pub(crate) mod bottom_panel;
+pub(crate) mod button_primary;
+pub(crate) mod button_secondary;
pub(crate) mod category_calendar_task_list;
pub(crate) mod category_input;
pub(crate) mod category_today_task_list;
+pub(crate) mod create_button;
pub(crate) mod error_boundary_message;
-pub(crate) mod form_open_button;
pub(crate) mod input;
pub(crate) mod input_label;
pub(crate) mod navigation;
diff --git a/src/components/navigation.rs b/src/components/navigation.rs
index caeb75d..0ced100 100644
--- a/src/components/navigation.rs
+++ b/src/components/navigation.rs
@@ -2,9 +2,10 @@ use crate::components::navigation_item::NavigationItem;
use crate::route::Route;
use dioxus::prelude::*;
use dioxus_free_icons::Icon;
+use dioxus_free_icons::icons::fa_regular_icons::FaLightbulb;
use dioxus_free_icons::icons::fa_solid_icons::{
- FaBars, FaCalendarDay, FaCalendarDays, FaCheck, FaForward, FaHourglassHalf, FaInbox, FaList,
- FaQuestion, FaTrashCan,
+ FaBars, FaCalendarDay, FaCalendarDays, FaHourglassHalf, FaInbox, FaList, FaSignsPost,
+ FaTrashCan, FaVolcano,
};
#[component]
@@ -31,7 +32,7 @@ pub(crate) fn Navigation(is_expanded: Signal) -> Element {
},
NavigationItem {
route: Route::CategoryNextStepsPage,
- icon: FaForward
+ icon: FaSignsPost
},
NavigationItem {
route: Route::CategoryCalendarPage,
@@ -57,11 +58,11 @@ pub(crate) fn Navigation(is_expanded: Signal) -> Element {
},
NavigationItem {
route: Route::CategoryDonePage,
- icon: FaCheck
+ icon: FaVolcano
},
NavigationItem {
route: Route::CategorySomedayMaybePage,
- icon: FaQuestion
+ icon: FaLightbulb
},
NavigationItem {
route: Route::CategoryWaitingForPage,
diff --git a/src/components/navigation_item.rs b/src/components/navigation_item.rs
index f14674e..720c535 100644
--- a/src/components/navigation_item.rs
+++ b/src/components/navigation_item.rs
@@ -13,7 +13,7 @@ pub(crate) fn NavigationItem(
Link {
to: route.clone(),
class: format!(
- "py-2.5 flex flex-row justify-center items-center",
+ "py-2.5 flex flex-row justify-center items-center hover:*:bg-gray-900 active:*:text-gray-400",
),
div {
class: format!("pt-2.5 px-4 {} transition-all duration-150",
diff --git a/src/components/project_form.rs b/src/components/project_form.rs
index 07a2206..a3a3cfa 100644
--- a/src/components/project_form.rs
+++ b/src/components/project_form.rs
@@ -1,82 +1,113 @@
+use crate::components::button_primary::ButtonPrimary;
+use crate::components::button_secondary::ButtonSecondary;
+use crate::components::input::Input;
+use crate::components::input_label::InputLabel;
use crate::models::project::Project;
use crate::server::projects::{create_project, delete_project, edit_project};
use dioxus::core_macro::{component, rsx};
use dioxus::dioxus_core::Element;
use dioxus::prelude::*;
use dioxus_free_icons::Icon;
-use dioxus_free_icons::icons::fa_solid_icons::{FaFloppyDisk, FaPenClip, FaTrashCan};
+use dioxus_free_icons::icons::fa_solid_icons::{FaFeatherPointed, FaStamp, FaTrashCan, FaXmark};
+
+pub(crate) static PROJECT_BEING_EDITED: GlobalSignal