mod theme; use crate::{ chrono::{Datelike, Days, Local, NaiveDate}, use_theme, utils::{class_list::class_list, mount_style}, Button, ButtonGroup, ButtonVariant, Theme, }; use chrono::{Month, Months}; use icondata::AiIcon; use leptos::*; use std::ops::Deref; pub use theme::CalendarTheme; #[component] pub fn Calendar( #[prop(optional, into)] class: MaybeSignal, #[prop(optional, into)] value: RwSignal>, ) -> impl IntoView { mount_style("calendar", include_str!("./calendar.css")); let theme = use_theme(Theme::light); let css_vars = create_memo(move |_| { let mut css_vars = String::new(); theme.with(|theme| { css_vars.push_str(&format!( "--thaw-background-color-today: {};", theme.common.color_primary )); css_vars.push_str(&format!( "--thaw-font-color-other-month: {};", theme.calendar.other_month_font_color, )); css_vars.push_str(&format!( "--thaw-border-color: {};", theme.calendar.border_color )); css_vars.push_str(&format!( "--thaw-background-color-hover: {};", theme.calendar.background_color_hover )); }); css_vars }); let show_date = create_rw_signal(value.get_untracked().unwrap_or(now_date())); create_effect(move |_| { if let Some(selected_date) = value.get() { let show_date_data = show_date.get_untracked(); if selected_date.year() != show_date_data.year() || selected_date.month() != show_date_data.month() { show_date.set(selected_date); } } }); let dates = create_memo(move |_| { let show_date = show_date.get(); let show_date_month = show_date.month(); let mut dates = vec![]; let mut current_date = show_date; let mut current_weekday_number = None::; loop { let date = current_date - Days::new(1); if date.month() != show_date_month { if current_weekday_number.is_none() { current_weekday_number = Some(current_date.weekday().num_days_from_sunday()); } let weekday_number = current_weekday_number.unwrap(); if weekday_number == 0 { break; } current_weekday_number = Some(weekday_number - 1); dates.push(CalendarItemDate::Previous(date)); } else { dates.push(CalendarItemDate::Current(date)); } current_date = date; } dates.reverse(); dates.push(CalendarItemDate::Current(show_date)); current_date = show_date; current_weekday_number = None; loop { let date = current_date + Days::new(1); if date.month() != show_date_month { if current_weekday_number.is_none() { current_weekday_number = Some(current_date.weekday().num_days_from_sunday()); } let weekday_number = current_weekday_number.unwrap(); if weekday_number == 6 { break; } current_weekday_number = Some(weekday_number + 1); dates.push(CalendarItemDate::Next(date)); } else { dates.push(CalendarItemDate::Current(date)); } current_date = date; } dates }); let previous_month = move |_| { show_date.update(|date| { *date = *date - Months::new(1); }); }; let today = move |_| { show_date.set(Local::now().date_naive()); }; let next_month = move |_| { show_date.update(|date| { *date = *date + Months::new(1); }); }; view! {
{move || { show_date .with(|date| { format!( "{} {}", Month::try_from(date.month() as u8).unwrap().name(), date.year(), ) }) }}
{move || { dates .get() .into_iter() .enumerate() .map(|(index, date)| { view! { } }) .collect_view() }}
} } #[component] fn CalendarItem( value: RwSignal>, index: usize, date: CalendarItemDate, ) -> impl IntoView { let is_selected = create_memo({ let date = date.clone(); move |_| value.with(|value_date| value_date.as_ref() == Some(date.deref())) }); let weekday_str = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]; let on_click = { let date = date.clone(); move |_| { value.set(Some(*date.deref())); } }; view! {
{date.day()} {if index < 7 { view! { {weekday_str[index]} } .into() } else { None }}
} } #[derive(Clone, PartialEq)] pub(crate) enum CalendarItemDate { Previous(NaiveDate), Current(NaiveDate), Next(NaiveDate), } impl CalendarItemDate { pub fn is_other_month(&self) -> bool { match self { CalendarItemDate::Previous(_) | CalendarItemDate::Next(_) => true, CalendarItemDate::Current(_) => false, } } pub fn is_today(&self) -> bool { let date = self.deref(); let now_date = now_date(); &now_date == date } } impl Deref for CalendarItemDate { type Target = NaiveDate; fn deref(&self) -> &Self::Target { match self { CalendarItemDate::Previous(date) | CalendarItemDate::Current(date) | CalendarItemDate::Next(date) => date, } } } pub(crate) fn now_date() -> NaiveDate { Local::now().date_naive() }