-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskReminderWindow.xaml.cs
More file actions
211 lines (185 loc) · 6.8 KB
/
TaskReminderWindow.xaml.cs
File metadata and controls
211 lines (185 loc) · 6.8 KB
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Windows;
namespace TimeTask
{
public partial class TaskReminderWindow : Window, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private readonly bool _isDueReminderMode;
private ItemGrid _task;
private string _taskDescription;
private string _inactiveTime;
private string _reminderMessage;
private List<string> _suggestions;
private bool _hasDecompositionSuggestion;
public ItemGrid Task
{
get => _task;
set
{
_task = value;
OnPropertyChanged(nameof(Task));
UpdateTaskInfo();
}
}
public string TaskDescription
{
get => _taskDescription;
set
{
_taskDescription = value;
OnPropertyChanged(nameof(TaskDescription));
}
}
public string InactiveTime
{
get => _inactiveTime;
set
{
_inactiveTime = value;
OnPropertyChanged(nameof(InactiveTime));
}
}
public string ReminderMessage
{
get => _reminderMessage;
set
{
_reminderMessage = value;
OnPropertyChanged(nameof(ReminderMessage));
}
}
public List<string> Suggestions
{
get => _suggestions;
set
{
_suggestions = value;
OnPropertyChanged(nameof(Suggestions));
OnPropertyChanged(nameof(HasSuggestions));
}
}
public bool HasSuggestions => Suggestions != null && Suggestions.Any();
public bool CanDecompose
{
get => _hasDecompositionSuggestion;
set
{
_hasDecompositionSuggestion = value;
OnPropertyChanged(nameof(CanDecompose));
}
}
public TaskReminderResult Result { get; private set; } = TaskReminderResult.Dismissed;
public TaskReminderWindow()
{
InitializeComponent();
DataContext = this;
}
public TaskReminderWindow(ItemGrid task, string reminderMessage, List<string> suggestions) : this()
{
Task = task;
ReminderMessage = reminderMessage;
Suggestions = suggestions ?? new List<string>();
// 检查是否有分解建议
string[] decompositionKeywords = { "break it down", "decompose", "smaller pieces", "sub-tasks", "subtasks", "分解", "拆分" };
CanDecompose = Suggestions.Any(s => decompositionKeywords.Any(keyword =>
s.ToLowerInvariant().Contains(keyword.ToLowerInvariant())));
}
public TaskReminderWindow(ItemGrid task, DateTime dueTime) : this()
{
_isDueReminderMode = true;
Task = task;
ReminderMessage = I18n.Tf("TaskReminder_DueMessageFormat", dueTime);
Suggestions = new List<string>
{
I18n.T("TaskReminder_DueSuggestionConfirm"),
I18n.T("TaskReminder_DueSuggestionPostpone"),
I18n.T("TaskReminder_DueSuggestionEdit")
};
CanDecompose = false;
ApplyDueReminderMode(dueTime);
}
private void UpdateTaskInfo()
{
if (Task == null) return;
TaskDescription = Task.Task;
var inactiveDuration = DateTime.Now - Task.LastModifiedDate;
if (inactiveDuration.TotalDays >= 7)
{
int weeks = (int)(inactiveDuration.TotalDays / 7);
InactiveTime = I18n.Tf("TaskReminder_InactiveWeeksFormat", weeks);
}
else if (inactiveDuration.TotalDays >= 1)
{
InactiveTime = I18n.Tf("TaskReminder_InactiveDaysFormat", (int)inactiveDuration.TotalDays);
}
else if (inactiveDuration.TotalHours >= 1)
{
InactiveTime = I18n.Tf("TaskReminder_InactiveHoursFormat", (int)inactiveDuration.TotalHours);
}
else
{
InactiveTime = I18n.T("TaskReminder_InactiveLessThanHour");
}
}
private void ApplyDueReminderMode(DateTime dueTime)
{
WindowTitleText.Text = I18n.T("TaskReminder_DueHeader");
TaskMetaLabelText.Text = I18n.T("TaskReminder_DueOriginalTimeLabel");
InactiveTime = dueTime.ToString("yyyy-MM-dd HH:mm");
CompleteTaskButton.Content = I18n.T("TaskReminder_DueButtonConfirm");
UpdateTaskButton.Content = I18n.T("TaskReminder_DueButtonPostpone");
DecomposeTaskButton.Visibility = Visibility.Collapsed;
SnoozeButton.Content = I18n.T("TaskReminder_DueButtonEdit");
CloseButton.Content = I18n.T("TaskReminder_ButtonClose");
}
private void CompleteTaskButton_Click(object sender, RoutedEventArgs e)
{
Result = _isDueReminderMode ? TaskReminderResult.ReminderConfirmed : TaskReminderResult.Completed;
DialogResult = true;
Close();
}
private void UpdateTaskButton_Click(object sender, RoutedEventArgs e)
{
Result = _isDueReminderMode ? TaskReminderResult.ReminderPostponed : TaskReminderResult.Updated;
DialogResult = true;
Close();
}
private void DecomposeTaskButton_Click(object sender, RoutedEventArgs e)
{
Result = TaskReminderResult.Decompose;
DialogResult = true;
Close();
}
private void SnoozeButton_Click(object sender, RoutedEventArgs e)
{
Result = _isDueReminderMode ? TaskReminderResult.ReminderEditTime : TaskReminderResult.Snoozed;
DialogResult = true;
Close();
}
private void CloseButton_Click(object sender, RoutedEventArgs e)
{
Result = TaskReminderResult.Dismissed;
DialogResult = false;
Close();
}
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
public enum TaskReminderResult
{
Dismissed,
Completed,
Updated,
Decompose,
Snoozed,
ReminderConfirmed,
ReminderPostponed,
ReminderEditTime
}
}