summaryrefslogtreecommitdiffstats
path: root/girok/calendar_cli/calendar_container.py
blob: 58c39fcff310351d0e9e77f83e311f85b99aabf4 (plain)
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
from collections import defaultdict
from typing import List, Dict, Optional
import asyncio
import calendar
from calendar import monthrange
from datetime import datetime, timedelta

from rich.markdown import Markdown
from rich.panel import Panel
from rich.segment import Segment
from rich.style import Style
from rich.text import Text
from textual import log
from textual.app import App, ComposeResult
from textual.containers import Container, Horizontal, Vertical
from textual.messages import Message
from textual.reactive import var
from textual.widget import Widget
from textual.widgets import (
    Button,
    DataTable,
    Footer,
    Header,
    Label,
    Placeholder,
    Static,
    Tree,
)

import girok.api.category as category_api
import girok.api.task as task_api
import girok.calendar_cli.utils as calendar_utils
from girok.calendar_cli.sidebar import CategoryTree
from girok.utils.time import get_year_and_month_by_month_offset
from girok.constants import CALENDAR_HEADER_DATE_COLOR, CALENDAR_TODAY_COLOR, CALENDAR_WEEKDAY_NAME_COLOR
from girok.calendar_cli.entity import Category
from girok.commands.task.command import map_to_event_entities
from girok.commands.task.entity import Event
from girok.utils.time import convert_iso_date_str_to_date_obj


class WeekdayBarContainer(Horizontal):
    pass


class CalendarHeader(Vertical):
    year = datetime.now().year
    month = datetime.now().month
    cat_path = ""
    category: Category = None
    tag = ""

    def on_mount(self):
        self.display_date()

    def compose(self):
        month_name = calendar.month_name[self.month]

        with Horizontal():
            with Container(id="calendar-header-category-container"):
                yield Static(self.cat_path, id="calendar-header-category")
            with Container(id="calendar-header-date-container"):
                yield Static(
                    Text(
                        f"{month_name} {self.year}",
                        style=Style(
                            color=CALENDAR_HEADER_DATE_COLOR, bold=True
                        ),
                    ),
                    id="calendar-header-date",
                )
            with Container(id="calendar-header-tag-container"):
                yield Static(f"{self.tag}", id="calendar-header-tag")
        yield Horizontal()
        with WeekdayBarContainer(id="weekday-bar"):
            yield Static(
                Text(
                    "Monday",
                    style=Style(color=CALENDAR_WEEKDAY_NAME_COLOR, bold=True),
                ),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text(
                    "Tuesday",
                    style=Style(color=CALENDAR_WEEKDAY_NAME_COLOR, bold=True),
                ),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text(
                    "Wednesday",
                    style=Style(color=CALENDAR_WEEKDAY_NAME_COLOR, bold=True),
                ),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text(
                    "Thursday",
                    style=Style(color=CALENDAR_WEEKDAY_NAME_COLOR, bold=True),
                ),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text(
                    "Friday",
                    style=Style(color=CALENDAR_WEEKDAY_NAME_COLOR, bold=True),
                ),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text("Saturday", style=Style(color="#87C5FA", bold=True)),
                classes="calendar-weekday-name",
            )
            yield Static(
                Text("Sunday", style=Style(color="#DB4455", bold=True)),
                classes="calendar-weekday-name",
            )

    def update_year_and_month(self, year, month):
        self.year, self.month = year, month
        self.display_date()

    def update_category(self, category: Category):
        self.cat_path = category.path
        self.display_date()

    def update_tag(self, new_tag: Optional[str]):
        self.tag = new_tag if new_tag else "All"
        self.display_date()

    def display_date(self):
        month_name = calendar.month_name[self.month]
        calendar_header_category = self.query_one("#calendar-header-category")
        calendar_header_date = self.query_one("#calendar-header-date")
        calendar_header_tag = self.query_one("#calendar-header-tag")
        calendar_weekday_bar = self.query_one("#weekday-bar")

        calendar_header_category.update(
            Text(
                f"Category: /{self.cat_path}",
                style=Style(color=CALENDAR_HEADER_DATE_COLOR),
            )
        )
        calendar_header_date.update(
            Text(
                f"{month_name} {self.year}",
                style=Style(color=CALENDAR_HEADER_DATE_COLOR, bold=True),
            )
        )
        calendar_header_tag.update(
            Text(
                f"Tag: {self.tag}",
                style=Style(color=CALENDAR_HEADER_DATE_COLOR),
            )
        )


class CalendarCell(Vertical):
    pass


class Calendar(Container):
    year = datetime.now().year
    month = datetime.now().month
    cat_path = ""  # If "", show all categories
    cat_id: int = None
    category: Category = None
    tag = ""
    tasks = []
    events: List[Event] = []
    can_focus = True
    cur_month_first_day_cell_num = None
    cur_focused_cell_cord = (None, None)
    cur_focused_cell = None
    day_to_events_map: Dict[str, List[Event]] = defaultdict(list)
    m = 5
    n = 7
    grid = [[False for _ in range(7)] for _ in range(5)]
    is_pop_up = False

    class TaskCellSelected(Message):
        def __init__(self, cell_events: List[Event], year: int, month: int, day: int):
            super().__init__()
            self.cell_events = cell_events
            self.year = year
            self.month = month
            self.day = day

    def on_mount(self):
        self.update_calendar()

    def compose(self):
        for i in range(35):
            yield CalendarCell(classes="calendar-cell", id=f"cell{i}")

    def on_key(self, event):
        if self.is_pop_up:
            return
        x, y = self.cur_focused_cell_cord
        if event.key == "h":  # left
            next_cell_coord = (x, y - 1)
        elif event.key == "j":  # down
            next_cell_coord = (x + 1, y)
        elif event.key == "k":  # up
            next_cell_coord = (x - 1, y)
        elif event.key == "l":  # right
            next_cell_coord = (x, y + 1)
        elif event.key == "o":
            pass
        else:
            return

        if event.key in ["h", "j", "k", "l"]:  # moving on cells
            nx, ny = next_cell_coord
            if nx < 0 or ny < 0 or nx >= self.m or ny >= self.n:  # Out of matrix
                return

            if not self.grid[nx][ny]:  # Out of boundary of the current month
                return

            prev_cell_num = calendar_utils.convert_coord_to_cell_num(
                *self.cur_focused_cell_cord
            )
            prev_cell = self.query_one(f"#cell{prev_cell_num}")
            calendar_utils.remove_left_arrow(prev_cell)

            cur_cell_num = calendar_utils.convert_coord_to_cell_num(nx, ny)
            next_cell = self.query_one(f"#cell{cur_cell_num}")
            calendar_utils.add_left_arrow(next_cell)

            self.cur_focused_cell_cord = (nx, ny)
            self.cur_focused_cell = next_cell
        elif event.key == "o":  # select a cell
            cur_cell_num = calendar_utils.convert_coord_to_cell_num(x, y)
            cur_cell = self.query_one(f"#cell{cur_cell_num}")
            # cell_events = cur_cell.children[1:]  # task data

            # Retrieve tasks for the selected day
            selected_day = calendar_utils.convert_cell_num_to_day(
                self.year, self.month, cur_cell_num
            )

            self.post_message(
                self.TaskCellSelected(self.day_to_events_map[selected_day], self.year, self.month, selected_day)
            )
            self.is_pop_up = True

    def on_focus(self):
        x, y = calendar_utils.convert_cell_num_to_coord(
            self.cur_month_first_day_cell_num
        )
        target_cell = self.query_one(f"#cell{self.cur_month_first_day_cell_num}")
        calendar_utils.add_left_arrow(target_cell)
        self.cur_focused_cell_cord = (x, y)
        self.cur_focused_cell = target_cell

    def update_year_and_month(self, year, month):
        self.year, self.month = year, month
        self.update_calendar()

    def update_category(self, category: Category):
        self.cat_path = category.path
        self.cat_id = category.id
        self.category = category
        self.update_calendar(show_arrow=False)

    def update_tag(self, new_tag: Optional[str]):
        self.tag = new_tag
        self.update_calendar(show_arrow=False)

    def refresh_cell_days(self):
        self.grid = [[False for _ in range(7)] for _ in range(5)]
        first_weekday, total_days = calendar.monthrange(self.year, self.month)
        self.cur_month_first_day_cell_num = first_weekday
        now = datetime.now()
        for i in range(35):
            cell = self.query_one(f"#cell{i}")
            for child in cell.walk_children():
                child.remove()
            if i >=