rat_widget/calendar.rs
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 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484
//!
//! Render a month of a calendar.
//! Can be localized with a chrono::Locale.
//!
use crate::_private::NonExhaustive;
use crate::calendar::event::CalOutcome;
use crate::util::{block_size, revert_style};
use chrono::{Datelike, Days, Months, NaiveDate, Weekday};
use rat_event::util::MouseFlagsN;
use rat_event::{ct_event, flow, ConsumedEvent, HandleEvent, MouseOnly, Regular};
use rat_focus::{Focus, FocusBuilder, FocusFlag, HasFocus};
use rat_reloc::{relocate_area, relocate_areas, RelocatableState};
use ratatui::buffer::Buffer;
use ratatui::layout::{Alignment, Rect};
use ratatui::style::Style;
use ratatui::text::Span;
use ratatui::widgets::block::Title;
#[cfg(feature = "unstable-widget-ref")]
use ratatui::widgets::StatefulWidgetRef;
use ratatui::widgets::{Block, StatefulWidget, Widget};
use std::cmp::max;
use std::collections::HashMap;
use std::fmt::Debug;
/// Renders a month.
#[derive(Debug, Default, Clone)]
pub struct Month<'a> {
/// Start date of the month.
start_date: Option<NaiveDate>,
/// Base style.
style: Style,
/// Title style.
title_style: Option<Style>,
/// Title align.
title_align: Alignment,
/// Week number style.
week_style: Option<Style>,
/// Week day style.
weekday_style: Option<Style>,
/// Default day style.
day_style: Option<Style>,
/// Styling for a single date.
day_styles: Option<&'a HashMap<NaiveDate, Style>>,
/// Selection
select_style: Option<Style>,
/// Focus
focus_style: Option<Style>,
/// Selection
day_selection: bool,
week_selection: bool,
show_weekdays: bool,
/// Block
block: Option<Block<'a>>,
/// Locale
loc: chrono::Locale,
}
/// Composite style for the calendar.
#[derive(Debug, Clone)]
pub struct MonthStyle {
pub style: Style,
pub title: Option<Style>,
pub week: Option<Style>,
pub weekday: Option<Style>,
pub day: Option<Style>,
pub select: Option<Style>,
pub focus: Option<Style>,
pub block: Option<Block<'static>>,
pub non_exhaustive: NonExhaustive,
}
/// State & event-handling.
#[derive(Debug)]
pub struct MonthState {
/// Total area.
/// __readonly__. renewed for each render.
pub area: Rect,
/// Area inside the border.
/// __readonly__. renewed for each render.
pub inner: Rect,
/// Area for the days of the month.
/// __readonly__. renewed for each render.
pub area_days: [Rect; 31],
/// Area for the week numbers.
/// __readonly__. renewed for each render.
pub area_weeks: [Rect; 6],
/// Startdate
start_date: NaiveDate,
/// Day selection enabled
day_selection: bool,
/// Week selection enabled
week_selection: bool,
/// Selected week
selected_week: Option<usize>,
/// Selected day
selected_day: Option<usize>,
/// Focus
/// __read+write__
pub focus: FocusFlag,
/// Mouse flags
/// __read+write__
pub mouse: MouseFlagsN,
pub non_exhaustive: NonExhaustive,
}
impl Default for MonthStyle {
fn default() -> Self {
Self {
style: Default::default(),
title: None,
week: None,
weekday: None,
day: None,
select: None,
focus: None,
block: None,
non_exhaustive: NonExhaustive,
}
}
}
impl<'a> Month<'a> {
pub fn new() -> Self {
Self::default()
}
/// Sets the starting date. This can be any date of the month.
/// If no date is set, the start_date of the state is used.
#[inline]
pub fn date(mut self, s: NaiveDate) -> Self {
self.start_date = Some(s.with_day(1).expect("day"));
self
}
/// Locale for month-names, day-names.
#[inline]
pub fn locale(mut self, loc: chrono::Locale) -> Self {
self.loc = loc;
self
}
/// Date selection enabled
#[inline]
pub fn day_selection(mut self) -> Self {
self.day_selection = true;
self
}
/// Week selection enabled
#[inline]
pub fn week_selection(mut self) -> Self {
self.week_selection = true;
self
}
/// Show weekday titles
#[inline]
pub fn show_weekdays(mut self) -> Self {
self.show_weekdays = true;
self
}
/// Set the composite style.
#[inline]
pub fn styles(mut self, s: MonthStyle) -> Self {
self.style = s.style;
if s.title.is_some() {
self.title_style = s.title;
}
if s.week.is_some() {
self.week_style = s.week;
}
if s.weekday.is_some() {
self.weekday_style = s.weekday;
}
if s.day.is_some() {
self.day_style = s.day;
}
if s.select.is_some() {
self.select_style = s.select;
}
if s.focus.is_some() {
self.focus_style = s.focus;
}
if s.block.is_some() {
self.block = s.block;
}
self.block = self.block.map(|v| v.style(self.style));
self
}
/// Style for the selected tab.
pub fn select_style(mut self, style: Style) -> Self {
self.select_style = Some(style);
self
}
/// Style for a focused tab.
pub fn focus_style(mut self, style: Style) -> Self {
self.focus_style = Some(style);
self
}
/// Sets the default day-style.
#[inline]
pub fn day_style(mut self, s: impl Into<Style>) -> Self {
self.day_style = Some(s.into());
self
}
/// Sets all the day-styles.
#[inline]
pub fn day_styles(mut self, styles: &'a HashMap<NaiveDate, Style>) -> Self {
self.day_styles = Some(styles);
self
}
/// Set the week number style
#[inline]
pub fn week_style(mut self, s: impl Into<Style>) -> Self {
self.week_style = Some(s.into());
self
}
/// Set the week day style
#[inline]
pub fn weekday_style(mut self, s: impl Into<Style>) -> Self {
self.weekday_style = Some(s.into());
self
}
/// Set the month-name style.
#[inline]
pub fn title_style(mut self, s: impl Into<Style>) -> Self {
self.title_style = Some(s.into());
self
}
/// Set the mont-name align.
#[inline]
pub fn title_align(mut self, a: Alignment) -> Self {
self.title_align = a;
self
}
/// Block
#[inline]
pub fn block(mut self, b: Block<'a>) -> Self {
self.block = Some(b);
self.block = self.block.map(|v| v.style(self.style));
self
}
/// Inherent width of the widget.
#[inline]
pub fn width(&self) -> u16 {
8 * 3 + block_size(&self.block).width
}
/// Inherent height for the widget.
/// Can vary with the number of months.
#[inline]
pub fn height(&self, state: &MonthState) -> u16 {
let start_date = if let Some(start_date) = self.start_date {
start_date
} else {
state.start_date
};
let r = MonthState::count_weeks(start_date) as u16;
let w = if self.show_weekdays { 1 } else { 0 };
let b = max(1, block_size(&self.block).height);
r + w + b
}
}
#[cfg(feature = "unstable-widget-ref")]
impl<'a> StatefulWidgetRef for Month<'a> {
type State = MonthState;
fn render_ref(&self, area: Rect, buf: &mut Buffer, state: &mut Self::State) {
render_ref(self, area, buf, state);
}
}
impl StatefulWidget for Month<'_> {
type State = MonthState;
fn render(self, area: Rect, buf: &mut Buffer, state: &mut Self::State) {
render_ref(&self, area, buf, state);
}
}
fn render_ref(widget: &Month<'_>, area: Rect, buf: &mut Buffer, state: &mut MonthState) {
state.area = area;
if let Some(start_date) = widget.start_date {
state.start_date = start_date;
}
state.day_selection = widget.day_selection;
state.week_selection = widget.week_selection;
let mut day = state.start_date;
let focus_style = widget.focus_style.unwrap_or(revert_style(widget.style));
let select_style = if let Some(select_style) = widget.select_style {
if state.focus.get() {
focus_style
} else {
select_style
}
} else {
if state.focus.get() {
focus_style
} else {
revert_style(widget.style)
}
};
let day_style = widget.day_style.unwrap_or(widget.style);
let week_style = widget.week_style.unwrap_or(widget.style);
let weekday_style = widget.weekday_style.unwrap_or(widget.style);
let title_style = if let Some(title_style) = widget.title_style {
title_style
} else {
widget.style
};
let title_style = if state.is_focused() {
title_style.patch(focus_style)
} else {
title_style
};
let block = if let Some(block) = widget.block.clone() {
block
.title(Title::from(
day.format_localized("%B", widget.loc).to_string(),
))
.title_style(title_style)
.title_alignment(widget.title_align)
} else {
Block::new()
.style(widget.style)
.title(Title::from(
day.format_localized("%B", widget.loc).to_string(),
))
.title_style(title_style)
.title_alignment(widget.title_align)
};
state.inner = block.inner(area);
block.render(area, buf);
let month = state.start_date.month();
let mut w = 0;
let mut x = state.inner.x;
let mut y = state.inner.y;
// week days
if widget.show_weekdays {
x += 3;
buf.set_style(Rect::new(x, y, 3 * 7, 1), weekday_style);
for wd in [
Weekday::Mon,
Weekday::Tue,
Weekday::Wed,
Weekday::Thu,
Weekday::Fri,
Weekday::Sat,
Weekday::Sun,
] {
let area = Rect::new(x, y, 2, 1).intersection(state.inner);
let day = NaiveDate::from_weekday_of_month_opt(2024, 1, wd, 1).expect("date");
let day_name = day.format_localized("%a", widget.loc).to_string();
Span::from(format!("{:2} ", day_name)).render(area, buf);
x += 3;
}
x = state.inner.x;
y += 1;
}
// first line may omit a few days
state.area_weeks[w] = Rect::new(x, y, 2, 1).intersection(state.inner);
Span::from(day.format_localized("%V", widget.loc).to_string())
.style(week_style)
.render(state.area_weeks[w], buf);
let week_sel = if state.selected_week == Some(w) {
let week_bg = Rect::new(x + 3, y, 21, 1).intersection(state.inner);
buf.set_style(week_bg, select_style);
true
} else {
false
};
x += 3;
for wd in [
Weekday::Mon,
Weekday::Tue,
Weekday::Wed,
Weekday::Thu,
Weekday::Fri,
Weekday::Sat,
Weekday::Sun,
] {
if day.weekday() != wd {
x += 3;
} else {
let day_style = if let Some(day_styles) = widget.day_styles {
if let Some(day_style) = day_styles.get(&day) {
*day_style
} else {
day_style
}
} else {
day_style
};
let day_style = if week_sel || state.selected_day == Some(day.day0() as usize) {
day_style.patch(select_style)
} else {
day_style
};
state.area_days[day.day0() as usize] = Rect::new(x, y, 2, 1).intersection(state.inner);
Span::from(day.format_localized("%e", widget.loc).to_string())
.style(day_style)
.render(state.area_days[day.day0() as usize], buf);
x += 3;
day += chrono::Duration::try_days(1).expect("days");
}
}
w += 1;
x = state.inner.x;
y += 1;
while month == day.month() {
state.area_weeks[w] = Rect::new(x, y, 2, 1).intersection(state.inner);
Span::from(day.format_localized("%V", widget.loc).to_string())
.style(week_style)
.render(state.area_weeks[w], buf);
let week_sel = if state.selected_week == Some(w) {
let week_bg = Rect::new(x + 3, y, 21, 1).intersection(state.inner);
buf.set_style(week_bg, select_style);
true
} else {
false
};
x += 3;
for _ in 0..7 {
if day.month() == month {
let day_style = if let Some(day_styles) = widget.day_styles {
if let Some(day_style) = day_styles.get(&day) {
*day_style
} else {
day_style
}
} else {
day_style
};
let day_style = if week_sel || state.selected_day == Some(day.day0() as usize) {
day_style.patch(select_style)
} else {
day_style
};
state.area_days[day.day0() as usize] =
Rect::new(x, y, 2, 1).intersection(state.inner);
Span::from(day.format_localized("%e", widget.loc).to_string())
.style(day_style)
.render(state.area_days[day.day0() as usize], buf);
x += 3;
day += chrono::Duration::try_days(1).expect("days");
} else {
x += 3;
}
}
w += 1;
x = state.inner.x;
y += 1;
}
}
impl HasFocus for MonthState {
fn build(&self, builder: &mut FocusBuilder) {
builder.append_leaf(self);
}
#[inline]
fn focus(&self) -> FocusFlag {
self.focus.clone()
}
#[inline]
fn area(&self) -> Rect {
self.area
}
}
impl RelocatableState for MonthState {
fn relocate(&mut self, shift: (i16, i16), clip: Rect) {
self.area = relocate_area(self.area, shift, clip);
self.inner = relocate_area(self.inner, shift, clip);
relocate_areas(&mut self.area_days, shift, clip);
relocate_areas(&mut self.area_weeks, shift, clip);
}
}
impl Clone for MonthState {
fn clone(&self) -> Self {
Self {
area: self.area,
inner: self.inner,
area_days: self.area_days.clone(),
area_weeks: self.area_weeks.clone(),
start_date: self.start_date,
day_selection: self.day_selection,
week_selection: self.week_selection,
selected_week: self.selected_week,
selected_day: self.selected_day,
focus: FocusFlag::named(self.focus.name()),
mouse: Default::default(),
non_exhaustive: NonExhaustive,
}
}
}
impl Default for MonthState {
fn default() -> Self {
Self {
area: Default::default(),
inner: Default::default(),
area_days: [Rect::default(); 31],
area_weeks: [Rect::default(); 6],
start_date: Default::default(),
day_selection: false,
week_selection: false,
selected_week: Default::default(),
selected_day: Default::default(),
focus: Default::default(),
mouse: Default::default(),
non_exhaustive: NonExhaustive,
}
}
}
impl MonthState {
pub fn new() -> Self {
Self::default()
}
pub fn named(name: &str) -> Self {
Self {
focus: FocusFlag::named(name),
..Self::default()
}
}
/// Sets the start-date of the calendar. You can set every date, it
/// will always be changed to the first of the month.
///
/// Setting this will be useless if the date is set with the Month widget.
pub fn set_start_date(&mut self, date: NaiveDate) -> bool {
let old_value = self.start_date;
self.start_date = date.with_day(1).expect("date");
old_value != self.start_date
}
/// Start date of this month. Will always be the first.
pub fn start_date(&self) -> NaiveDate {
self.start_date
}
/// Removes all selection.
pub fn clear_selection(&mut self) {
self.selected_week = None;
self.selected_day = None;
}
/// Select a week.
pub fn select_week(&mut self, n: Option<usize>) {
self.selected_week = n;
self.selected_day = None;
}
/// Select a week by date
/// Returns true if the date is valid for this month.
/// If false it doesn't change the selection.
pub fn select_week_by_date(&mut self, d: Option<NaiveDate>) -> bool {
self.selected_day = None;
if let Some(d) = d {
if d.year() == self.start_date.year() {
if let Some(w) = self.date_as_week(d) {
self.selected_week = Some(w);
true
} else {
self.selected_week = None;
false
}
} else {
self.selected_week = None;
false
}
} else {
self.selected_week = None;
true
}
}
/// Selected week
pub fn selected_week(&self) -> Option<usize> {
self.selected_week
}
/// Selected week
pub fn selected_week_as_date(&self) -> Option<NaiveDate> {
self.selected_week.map(|v| self.week_day(v))
}
/// Select a day
pub fn select_day(&mut self, n: Option<usize>) {
self.selected_day = n;
self.selected_week = None;
}
/// Select by date.
/// Returns true if the date is valid for this month.
/// If false it doesn't change the selection.
pub fn select_date(&mut self, d: Option<NaiveDate>) -> bool {
self.selected_week = None;
if let Some(d) = d {
if d.year() == self.start_date.year() && d.month() == self.start_date.month() {
self.selected_day = Some(d.day0() as usize);
true
} else {
self.selected_day = None;
false
}
} else {
self.selected_day = None;
true
}
}
/// Selected day
pub fn selected_day(&self) -> Option<usize> {
self.selected_day
}
/// Selected day
pub fn selected_day_as_date(&self) -> Option<NaiveDate> {
self.selected_day.map(|v| self.month_day(v))
}
/// Select previous day.
pub fn prev_day(&mut self, n: usize) -> bool {
if let Some(sel) = self.selected_week {
let week_day = self.week_day(sel);
if week_day < self.start_date {
self.selected_day = Some(0);
} else {
self.selected_day = Some(week_day.day0() as usize);
}
self.selected_week = None;
}
if let Some(sel) = self.selected_day {
if sel >= n {
self.selected_day = Some(sel - n);
true
} else {
false
}
} else {
let mut d = 30;
loop {
if self.start_date.with_day0(d).is_some() {
break;
}
d -= 1;
}
self.selected_day = Some(d as usize);
true
}
}
/// Select next day.
pub fn next_day(&mut self, n: usize) -> bool {
if let Some(sel) = self.selected_week {
let week_day = self.week_day(sel);
if week_day < self.start_date {
self.selected_day = Some(0);
} else {
self.selected_day = Some(week_day.day0() as usize);
}
self.selected_week = None;
}
if let Some(sel) = self.selected_day {
if self.start_date.with_day0(sel as u32 + n as u32).is_some() {
self.selected_day = Some(sel + n);
true
} else {
false
}
} else {
self.selected_day = Some(0);
true
}
}
/// Select previous week.
pub fn prev_week(&mut self, n: usize) -> bool {
if let Some(sel) = self.selected_day {
self.selected_week = self.month_day_as_week(sel);
self.selected_day = None;
}
if let Some(sel) = self.selected_week {
if sel >= n {
self.selected_week = Some(sel - n);
true
} else {
false
}
} else {
let mut d = 30;
loop {
if self.start_date.with_day0(d).is_some() {
break;
}
d -= 1;
}
self.selected_week = self.month_day_as_week(d as usize);
true
}
}
/// Select next week.
pub fn next_week(&mut self, n: usize) -> bool {
if let Some(sel) = self.selected_day {
self.selected_week = self.month_day_as_week(sel);
self.selected_day = None;
}
if let Some(sel) = self.selected_week {
let sel_day = self.week_day(sel);
let new_day = sel_day + chrono::Duration::try_days(7 * n as i64).expect("days");
if self.start_date.month() == new_day.month() {
self.selected_week = self.month_day_as_week(new_day.day0() as usize);
true
} else {
false
}
} else {
self.selected_week = Some(0);
true
}
}
/// Monday of the nth displayed week
pub fn week_day(&self, n: usize) -> NaiveDate {
let mut day = self.start_date;
while day.weekday() != Weekday::Mon {
day -= chrono::Duration::try_days(1).expect("days");
}
day += chrono::Duration::try_days(7 * n as i64).expect("days");
day
}
/// Date of the nth displayed date
pub fn month_day(&self, n: usize) -> NaiveDate {
let mut day = self.start_date;
day += chrono::Duration::try_days(n as i64).expect("days");
day
}
/// Week of the nth displayed date
pub fn month_day_as_week(&self, n: usize) -> Option<usize> {
if let Some(day) = self.start_date.with_day0(n as u32) {
self.date_as_week(day)
} else {
None
}
}
/// Week of the given date
pub fn date_as_week(&self, d: NaiveDate) -> Option<usize> {
let mut day = self.start_date;
let month = day.month();
let mut w = 0;
while month == day.month() {
if day.week(Weekday::Mon).days().contains(&d) {
return Some(w);
}
day += chrono::Duration::try_days(7).expect("days");
w += 1;
}
// last week might be next month
let week = day.week(Weekday::Mon);
if week.first_day().month() == month {
if week.days().contains(&d) {
return Some(w);
}
}
None
}
/// Nr of weeks in this month.
pub fn week_len(&self) -> usize {
Self::count_weeks(self.start_date)
}
/// Nr of weeks for the given month
pub fn count_weeks(day: NaiveDate) -> usize {
let mut day = day.with_day0(0).expect("date");
let month = day.month();
let mut weeks = 1;
for weekday in [
Weekday::Mon,
Weekday::Tue,
Weekday::Wed,
Weekday::Thu,
Weekday::Fri,
Weekday::Sat,
Weekday::Sun,
] {
// run through first week
if day.weekday() == weekday {
day += chrono::Duration::try_days(1).expect("days");
}
}
// count mondays
while month == day.month() {
weeks += 1;
day += chrono::Duration::try_days(7).expect("days");
}
weeks
}
}
pub(crate) mod event {
use chrono::NaiveDate;
use rat_event::{ConsumedEvent, Outcome};
/// Result of event handling.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
pub enum CalOutcome {
/// The given event has not been used at all.
Continue,
/// The event has been recognized, but the result was nil.
/// Further processing for this event may stop.
Unchanged,
/// The event has been recognized and there is some change
/// due to it.
/// Further processing for this event may stop.
/// Rendering the ui is advised.
Changed,
/// Week selected. This is Monday of the selected week.
Week(NaiveDate),
/// Day selected.
/// Selected tab should be closed.
Day(NaiveDate),
}
impl ConsumedEvent for CalOutcome {
fn is_consumed(&self) -> bool {
*self != CalOutcome::Continue
}
}
// Useful for converting most navigation/edit results.
impl From<bool> for CalOutcome {
fn from(value: bool) -> Self {
if value {
CalOutcome::Changed
} else {
CalOutcome::Unchanged
}
}
}
impl From<Outcome> for CalOutcome {
fn from(value: Outcome) -> Self {
match value {
Outcome::Continue => CalOutcome::Continue,
Outcome::Unchanged => CalOutcome::Unchanged,
Outcome::Changed => CalOutcome::Changed,
}
}
}
impl From<CalOutcome> for Outcome {
fn from(value: CalOutcome) -> Self {
match value {
CalOutcome::Continue => Outcome::Continue,
CalOutcome::Unchanged => Outcome::Unchanged,
CalOutcome::Changed => Outcome::Changed,
CalOutcome::Week(_) => Outcome::Changed,
CalOutcome::Day(_) => Outcome::Changed,
}
}
}
}
impl HandleEvent<crossterm::event::Event, Regular, CalOutcome> for MonthState {
fn handle(&mut self, event: &crossterm::event::Event, _qualifier: Regular) -> CalOutcome {
if self.is_focused() {
flow!(match event {
ct_event!(keycode press Up) => {
if !self.day_selection {
return CalOutcome::Continue;
}
if self.prev_day(7) {
CalOutcome::Day(self.selected_day_as_date().expect("day"))
} else {
CalOutcome::Continue
}
}
ct_event!(keycode press Down) => {
if !self.day_selection {
return CalOutcome::Continue;
}
if self.next_day(7) {
CalOutcome::Day(self.selected_day_as_date().expect("day"))
} else {
CalOutcome::Continue
}
}
ct_event!(keycode press Left) => {
if !self.day_selection {
return CalOutcome::Continue;
}
if self.prev_day(1) {
CalOutcome::Day(self.selected_day_as_date().expect("day"))
} else {
CalOutcome::Continue
}
}
ct_event!(keycode press Right) => {
if !self.day_selection {
return CalOutcome::Continue;
}
if self.next_day(1) {
CalOutcome::Day(self.selected_day_as_date().expect("day"))
} else {
CalOutcome::Continue
}
}
ct_event!(keycode press ALT-Up) => {
if !self.week_selection {
return CalOutcome::Continue;
}
if self.prev_week(1) {
CalOutcome::Week(self.selected_week_as_date().expect("week"))
} else {
CalOutcome::Continue
}
}
ct_event!(keycode press ALT-Down) => {
if !self.week_selection {
return CalOutcome::Continue;
}
if self.next_week(1) {
CalOutcome::Week(self.selected_week_as_date().expect("week"))
} else {
CalOutcome::Continue
}
}
_ => CalOutcome::Continue,
})
}
self.handle(event, MouseOnly)
}
}
impl HandleEvent<crossterm::event::Event, MouseOnly, CalOutcome> for MonthState {
fn handle(&mut self, event: &crossterm::event::Event, _qualifier: MouseOnly) -> CalOutcome {
match event {
ct_event!(mouse drag Left for x, y) | ct_event!(mouse down Left for x, y) => {
if let Some(sel) = self.mouse.item_at(&self.area_weeks, *x, *y) {
if !self.week_selection {
return CalOutcome::Continue;
}
self.select_week(Some(sel));
CalOutcome::Week(self.week_day(sel))
} else if let Some(sel) = self.mouse.item_at(&self.area_days, *x, *y) {
if !self.day_selection {
return CalOutcome::Continue;
}
self.select_day(Some(sel));
CalOutcome::Day(self.month_day(sel))
} else {
CalOutcome::Continue
}
}
_ => CalOutcome::Continue,
}
}
}
#[allow(clippy::needless_range_loop)]
fn scroll_up_month_list(months: &mut [MonthState], delta: u32) {
// change start dates
let mut start = months[0]
.start_date
.checked_sub_months(Months::new(delta))
.expect("date");
for i in 0..months.len() {
months[i].start_date = start;
start = start.checked_add_months(Months::new(1)).expect("date");
}
}
#[allow(clippy::needless_range_loop)]
fn scroll_down_month_list(months: &mut [MonthState], delta: u32) {
// change start dates
let mut start = months[0]
.start_date
.checked_add_months(Months::new(delta))
.expect("date");
for i in 0..months.len() {
months[i].start_date = start;
start = start.checked_add_months(Months::new(1)).expect("date");
}
}
/// Multi-month event-handling.
///
/// The parameter gives the shift of the calendar in months, if
/// the newly selected date is not visible with the current settings.
///
/// This also needs the Focus, as it changes the focused month if necessary.
pub struct MultiMonth<'a>(pub &'a Focus, pub u32);
impl HandleEvent<crossterm::event::Event, MultiMonth<'_>, CalOutcome> for &mut [MonthState] {
fn handle(&mut self, event: &crossterm::event::Event, arg: MultiMonth<'_>) -> CalOutcome {
let r = 'f: {
for i in 0..self.len() {
let month = &mut self[i];
if month.is_focused() {
let r = match month.handle(event, Regular) {
CalOutcome::Week(date) => {
for j in 0..self.len() {
if i != j {
self[j].clear_selection();
}
}
if i > 0 {
self[i - 1].select_week_by_date(Some(date));
}
if i + 1 < self.len() {
self[i + 1].select_week_by_date(Some(date));
}
CalOutcome::Week(date)
}
CalOutcome::Day(date) => {
for j in 0..self.len() {
if i != j {
self[j].clear_selection();
}
}
CalOutcome::Day(date)
}
CalOutcome::Continue => match event {
ct_event!(keycode press PageUp) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i > 0 {
if let Some(date) = self[i]
.selected_day_as_date()
.or_else(|| self[i].selected_week_as_date())
{
let new_date =
date.checked_sub_months(Months::new(1)).expect("days");
self[i].select_day(None);
self[i - 1].select_date(Some(new_date));
arg.0.focus(&self[i - 1]);
CalOutcome::Day(new_date)
} else {
// ?? what is this. invalid day??
CalOutcome::Continue
}
} else {
if let Some(date) = self[i]
.selected_day_as_date()
.or_else(|| self[i].selected_week_as_date())
{
let new_date =
date.checked_sub_months(Months::new(1)).expect("days");
scroll_up_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
}
}
ct_event!(keycode press PageDown) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i + 1 < self.len() {
if let Some(date) = self[i]
.selected_day_as_date()
.or_else(|| self[i].selected_week_as_date())
{
let new_date =
date.checked_add_months(Months::new(1)).expect("days");
self[i].select_day(None);
self[i + 1].select_date(Some(new_date));
arg.0.focus(&self[i + 1]);
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
} else {
if let Some(date) = self[i]
.selected_day_as_date()
.or_else(|| self[i].selected_week_as_date())
{
let new_date =
date.checked_add_months(Months::new(1)).expect("days");
scroll_down_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
}
}
ct_event!(keycode press Up) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i > 0 {
if let Some(date) = self[i].selected_day_as_date() {
let new_date =
date - chrono::Duration::try_days(7).expect("days");
self[i].select_day(None);
self[i - 1].select_date(Some(new_date));
arg.0.focus(&self[i - 1]);
CalOutcome::Day(new_date)
} else {
// ?? what is this. invalid day??
CalOutcome::Continue
}
} else {
if let Some(date) = self[i].selected_day_as_date() {
let new_date =
date - chrono::Duration::try_days(7).expect("days");
scroll_up_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
}
}
ct_event!(keycode press Down) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i + 1 < self.len() {
if let Some(date) = self[i].selected_day_as_date() {
let new_date =
date + chrono::Duration::try_days(7).expect("days");
self[i].select_day(None);
self[i + 1].select_date(Some(new_date));
arg.0.focus(&self[i + 1]);
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
} else {
if let Some(date) = self[i].selected_day_as_date() {
let new_date =
date + chrono::Duration::try_days(7).expect("days");
scroll_down_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
} else {
CalOutcome::Continue
}
}
}
ct_event!(keycode press Left) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i > 0 {
let prev_day = self[i]
.start_date
.checked_sub_days(Days::new(1))
.expect("date");
self[i].select_day(None);
self[i - 1].select_date(Some(prev_day));
arg.0.focus(&self[i - 1]);
CalOutcome::Day(prev_day)
} else {
let new_date = self[i]
.start_date
.checked_sub_days(Days::new(1))
.expect("date");
scroll_up_month_list(self, 1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
}
}
ct_event!(keycode press Right) => {
if !self[i].day_selection {
return CalOutcome::Continue;
}
if i + 1 < self.len() {
let next_day = self[i]
.start_date
.checked_add_months(Months::new(1))
.expect("date");
self[i].select_day(None);
self[i + 1].select_date(Some(next_day));
arg.0.focus(&self[i + 1]);
CalOutcome::Day(next_day)
} else {
let new_date = self[i]
.start_date
.checked_add_months(Months::new(1))
.expect("date");
scroll_down_month_list(self, 1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_day_as_date().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Day(new_date)
}
}
ct_event!(keycode press ALT-Up) => {
if !self[i].week_selection {
return CalOutcome::Continue;
}
if i > 0 {
if let Some(date) = self[i].selected_week_as_date() {
let new_date =
date - chrono::Duration::try_days(7).expect("days");
self[i].select_week_by_date(Some(new_date));
self[i - 1].select_week_by_date(Some(new_date));
arg.0.focus(&self[i - 1]);
CalOutcome::Week(new_date)
} else {
// ?? invalid date
CalOutcome::Continue
}
} else {
if let Some(date) = self[i].selected_week_as_date() {
let new_date =
date - chrono::Duration::try_days(7).expect("days");
scroll_up_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_week_by_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_week().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Week(new_date)
} else {
// ?? invalid date
CalOutcome::Continue
}
}
}
ct_event!(keycode press ALT-Down) => {
if !self[i].week_selection {
return CalOutcome::Continue;
}
if i + 1 < self.len() {
if let Some(date) = self[i].selected_week_as_date() {
let new_date =
date + chrono::Duration::try_days(7).expect("days");
self[i].select_week_by_date(Some(new_date));
self[i + 1].select_week_by_date(Some(new_date));
arg.0.focus(&self[i + 1]);
CalOutcome::Week(new_date)
} else {
// ?? invalid date
CalOutcome::Continue
}
} else {
if let Some(date) = self[i].selected_week_as_date() {
let new_date =
date + chrono::Duration::try_days(7).expect("days");
scroll_down_month_list(self, arg.1);
// date may be anywhere (even nowhere) after the shift.
for i in 0..self.len() {
self[i].select_week_by_date(Some(new_date));
}
for i in 0..self.len() {
if self[i].selected_week().is_some() {
arg.0.focus(&self[i]);
}
}
CalOutcome::Week(new_date)
} else {
// ?? invalid date
CalOutcome::Continue
}
}
}
_ => CalOutcome::Continue,
},
r => r,
};
break 'f r;
}
}
CalOutcome::Continue
};
let s = 'f: {
for i in 0..self.len() {
if !self[i].is_focused() {
let r = match self[i].handle(event, MouseOnly) {
CalOutcome::Week(d) => {
if self[i].selected_week == Some(0) {
if i > 0 {
self[i - 1].select_week_by_date(Some(d));
}
} else if self[i].selected_week == Some(self[i].week_len() - 1) {
if i < self.len() {
self[i + 1].select_week_by_date(Some(d));
}
}
// transfer focus
for k in 0..self.len() {
if self[k].is_focused() {
self[k].select_day(None);
arg.0.focus(&self[i]);
} else if i != k {
self[k].select_day(None);
}
}
CalOutcome::Week(d)
}
CalOutcome::Day(d) => {
// transfer focus
for k in 0..self.len() {
if self[k].is_focused() {
self[k].select_day(None);
arg.0.focus(&self[i]);
} else if i != k {
self[k].select_day(None);
}
}
CalOutcome::Day(d)
}
r => r,
};
if r.is_consumed() {
break 'f r;
}
}
}
CalOutcome::Continue
};
let all_areas = self.iter().map(|v| v.area).reduce(|v, w| v.union(w));
let t = if let Some(all_areas) = all_areas {
match event {
ct_event!(scroll down for x,y) if all_areas.contains((*x, *y).into()) => {
scroll_down_month_list(self, arg.1);
'f: {
for m in self.iter() {
if let Some(d) = m.selected_week_as_date() {
break 'f CalOutcome::Week(d);
} else if let Some(d) = m.selected_day_as_date() {
break 'f CalOutcome::Day(d);
}
}
CalOutcome::Changed
}
}
ct_event!(scroll up for x,y) if all_areas.contains((*x, *y).into()) => {
scroll_up_month_list(self, arg.1);
'f: {
for m in self.iter() {
if let Some(d) = m.selected_week_as_date() {
break 'f CalOutcome::Week(d);
} else if let Some(d) = m.selected_day_as_date() {
break 'f CalOutcome::Day(d);
}
}
CalOutcome::Changed
}
}
_ => CalOutcome::Continue,
}
} else {
CalOutcome::Continue
};
max(r, max(s, t))
}
}