-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathTuttle.py
562 lines (489 loc) · 15.1 KB
/
Tuttle.py
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
import os
import datetime
from loguru import logger
from textwrap import dedent
from pathlib import Path
import webbrowser
import pkgutil
import flet
from flet import (
Page,
Row,
Column,
Container,
Text,
Card,
NavigationRailDestination,
UserControl,
ElevatedButton,
TextButton,
Icon,
Dropdown,
Markdown,
FilePicker,
FilePickerResultEvent,
SnackBar,
)
from flet import icons, colors, dropdown
from layout import DesktopAppLayout
import views
import widgets
from tuttle.controller import Controller
from tuttle.preferences import Preferences
from tuttle.model import (
Contact,
Contract,
Project,
Client,
)
from tuttle_tests import demo
class App:
def __init__(
self,
controller: Controller,
page: Page,
):
self.con = controller
self.page = page
def snackbar_message(self, message):
self.page.snack_bar = SnackBar(
content=Text(message),
)
self.page.snack_bar.open = True
self.page.update()
class AppPage(UserControl):
def __init__(
self,
app: App,
):
super().__init__()
self.app = app
def build(self):
self.main_column = Column(
scroll="auto",
)
# self.view = Row([self.main_column])
return self.main_column
def update_content(self):
pass
class DemoPage(AppPage):
def __init__(
self,
app: App,
):
super().__init__(app)
def update(self):
super().update()
def on_click_load_demo_data(self, event):
"""Install the demo data on button click."""
demo.add_demo_data(self.app.con)
self.main_column.controls.clear()
self.main_column.controls.append(
Text("Demo data installed ☑️"),
)
logger.info("Demo data installed")
self.app.snackbar_message("Demo data installed")
self.update()
self.main_column.controls.append(
views.make_card(
[
Text(
dedent(
"""
2. Navigate the menu on the left to explore the demo data.
"""
)
)
]
)
)
self.main_column.controls.append(
views.make_card(
[
Text(
dedent(
"""
3. Navigate to the "Invoicing" page to generate some invoices.
"""
)
)
]
)
)
self.main_column.controls.append(
views.make_card(
[
Text(
dedent(
"""
4. Please use the help menu on the top right to tell us about issues or suggestions.
"""
)
)
]
)
)
self.update()
def build(self):
self.main_column = Column(
[
Text("Demo", style="titleMedium"),
Row(
[
views.make_card(
[
Text(
dedent(
"""
Welcome to the Tuttle demo.
1. Getting started: Press the button below to install some demo data and start exploring some of the functions of the app.
"""
)
)
]
)
]
),
Row(
[
ElevatedButton(
"Install demo data",
icon=icons.TOYS,
on_click=self.on_click_load_demo_data,
),
]
),
],
)
return self.main_column
class ContactsPage(AppPage):
def __init__(
self,
app: App,
):
super().__init__(app)
def update(self):
super().update()
def update_content(self):
super().update_content()
self.main_column.controls.clear()
contacts = self.app.con.query(Contact)
for contact in contacts:
self.main_column.controls.append(
views.make_contact_view(contact, self),
)
self.update()
class ContractsPage(AppPage):
def __init__(
self,
app: App,
):
super().__init__(app)
def update(self):
super().update()
def update_content(self):
super().update_content()
self.main_column.controls.clear()
contracts = self.app.con.query(Contract)
for contract in contracts:
self.main_column.controls.append(
# TODO: replace with view class
views.make_contract_view(contract, self)
)
self.update()
class ClientsPage(AppPage):
def __init__(
self,
app: App,
):
super().__init__(app)
def update(self):
super().update()
def update_content(self):
super().update_content()
self.main_column.controls.clear()
clients = self.app.con.query(Client)
for client in clients:
self.main_column.controls.append(
views.make_client_view(client, self),
)
self.update()
class ProjectsPage(AppPage):
def __init__(
self,
app: App,
):
super().__init__(app)
def update(self):
super().update()
def update_content(self):
super().update_content()
self.main_column.controls.clear()
projects = self.app.con.query(Project)
for project in projects:
self.main_column.controls.append(
# TODO: replace with view class
views.make_project_view(project, self)
)
self.update()
class InvoicingPage(AppPage):
"""A page for the invoicing workflow."""
def __init__(
self,
app: App,
):
super().__init__(app)
self.calendar_file_path = None
def update(self):
super().update()
def on_click_generate_invoices(self, event):
"""Generate invoices for the selected project and date range."""
self.app.snackbar_message(
f"generating invoice and timesheet for {self.project_select.value}"
)
logger.info("Generate invoices clicked")
if (self.calendar_file_path is None) and (self.calendar_data is None):
self.app.snackbar_message(f"Please select a calendar file")
logger.error("No calendar file selected!")
return
try:
if self.calendar_file_path:
self.app.con.billing(
project_tags=[self.project_select.value],
period_start=str(self.date_from_select.get_date()),
period_end=str(self.date_to_select.get_date()),
timetracking_method="file_calendar",
calendar_file_path=self.calendar_file_path,
)
elif self.calendar_data:
self.app.con.billing(
project_tags=[self.project_select.value],
period_start=str(self.date_from_select.get_date()),
period_end=str(self.date_to_select.get_date()),
timetracking_method="file_calendar",
calendar_file_content=self.calendar_data,
)
self.app.snackbar_message(
f"created invoice and timesheet for {self.project_select.value} - open the invoice folder to see the result"
)
except Exception as ex:
self.app.snackbar_message(
f"failed to create invoice and timesheet for {self.project_select.value}: {ex}"
)
raise ex
def on_pick_calendar_file(self, event: FilePickerResultEvent):
"""Handle the result of the calendar file picker."""
if event.files:
logger.info(f"Calendar file picked: {event.files[0].path}")
self.calendar_file_path = Path(event.files[0].path)
self.app.snackbar_message(f"Calendar file picked: {event.files[0].path}")
else:
logger.info("Cancelled!")
def on_click_open_invoice_folder(self, event):
invoice_dir = self.app.con.home / self.app.con.preferences.invoice_dir
logger.info(f"trying to open {invoice_dir}")
# os.system(f"open {invoice_dir}")
webbrowser.open(f"file:///{invoice_dir}")
def on_click_load_demo_calendar(self, event):
"""Load the demo calendar file."""
self.calendar_data = pkgutil.get_data(
"tuttle_tests", "data/TuttleDemo-TimeTracking.ics"
)
assert len(self.calendar_data) > 0
logger.info(f"Loaded demo calendar file")
self.app.snackbar_message(f"Loaded demo calendar file")
def update_content(self):
super().update_content()
self.main_column.controls.clear()
self.calendar_file_picker = FilePicker(on_result=self.on_pick_calendar_file)
self.app.page.overlay.append(self.calendar_file_picker)
# select project
projects = self.app.con.query(Project)
self.project_select = Dropdown(
label="Project",
hint_text="Select the project",
options=[dropdown.Option(project.tag) for project in projects],
autofocus=True,
)
self.date_from_select = widgets.DateSelector(preset=datetime.date(2022, 1, 1))
self.date_to_select = widgets.DateSelector(preset=datetime.date(2022, 12, 31))
self.main_column.controls = [
Row(
[
Text("Invoicing Workflow Demo", style="headlineMedium"),
]
),
Row(
[
views.make_card(
[
Text(
dedent(
"""
1. load the demo timetracking data, or select a time tracking calendar file
"""
)
)
]
)
]
),
Row(
[
ElevatedButton(
"Load demo calendar",
icon=icons.DATE_RANGE,
on_click=self.on_click_load_demo_calendar,
),
ElevatedButton(
"Pick Calendar File",
icon=icons.UPLOAD_FILE,
on_click=lambda _: self.calendar_file_picker.pick_files(
allow_multiple=False
),
),
]
),
Row(
[
views.make_card(
[
Text(
dedent(
"""
2. select a project and date range
"""
)
)
]
)
]
),
Row(
[
Icon(icons.WORK),
self.project_select,
]
),
Row(
[
# Icon(icons.DATE_RANGE),
self.date_from_select,
Icon(icons.ARROW_FORWARD),
self.date_to_select,
TextButton(
"Select",
on_click=lambda event: logger.info(
f"Selected date range: {self.date_from_select.get_date()} -> {self.date_to_select.get_date()}"
),
),
]
),
Row(
[
ElevatedButton(
"Generate invoice",
icon=icons.EDIT_NOTE,
on_click=self.on_click_generate_invoices,
),
ElevatedButton(
"Open invoice folder",
icon=icons.FOLDER_OPEN,
on_click=self.on_click_open_invoice_folder,
),
]
),
]
self.update()
def main(page: Page):
con = Controller(
in_memory=True,
verbose=False,
preferences=Preferences(
invoice_dir=Path("Invoices"),
),
)
app = App(
controller=con,
page=page,
)
pages = [
(
NavigationRailDestination(
icon=icons.TOYS_OUTLINED,
selected_icon=icons.TOYS,
label="Demo",
),
DemoPage(app),
),
(
NavigationRailDestination(
icon=icons.SPEED_OUTLINED,
selected_icon=icons.SPEED,
label="Dashboard",
),
AppPage(app),
),
(
NavigationRailDestination(
icon=icons.WORK,
label="Projects",
),
ProjectsPage(app),
),
(
NavigationRailDestination(
icon=icons.DATE_RANGE,
label="Time",
),
AppPage(app),
),
(
NavigationRailDestination(
icon=icons.CONTACT_MAIL,
label="Contacts",
),
ContactsPage(app),
),
(
NavigationRailDestination(
icon=icons.HANDSHAKE,
label="Clients",
),
ClientsPage(app),
),
(
NavigationRailDestination(
icon=icons.HISTORY_EDU,
label="Contracts",
),
ContractsPage(app),
),
(
NavigationRailDestination(
icon=icons.OUTGOING_MAIL,
label="Invoicing",
),
InvoicingPage(app),
),
(
NavigationRailDestination(
icon=icons.SETTINGS,
label_content=Text("Settings"),
),
AppPage(app),
),
]
layout = DesktopAppLayout(
page=page,
pages=pages,
title="Tuttle",
window_size=(1280, 720),
)
page.add(
layout,
)
if __name__ == "__main__":
flet.app(
target=main,
)