-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout.py
More file actions
1708 lines (1374 loc) · 49.7 KB
/
Copy pathlayout.py
File metadata and controls
1708 lines (1374 loc) · 49.7 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
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
from __future__ import annotations
import secrets
from functools import cached_property
from onegov.core.elements import Confirm, Intercooler, Link, LinkGroup
from onegov.core.static import StaticFile
from onegov.core.utils import append_query_param, to_html_ul
from onegov.chat.collections import ChatCollection
from onegov.chat.models import Chat
from onegov.directory import DirectoryCollection
from onegov.event import OccurrenceCollection
from onegov.form import FormCollection
from onegov.org.elements import QrCodeLink, IFrameLink
from onegov.org.layout import (
Layout as OrgLayout,
DefaultLayout as OrgDefaultLayout,
DefaultMailLayout as OrgDefaultMailLayout,
AdjacencyListLayout as OrgAdjacencyListLayout,
AllocationEditFormLayout as OrgAllocationEditFormLayout,
AllocationRulesLayout as OrgAllocationRulesLayout,
ArchivedTicketsLayout as OrgArchivedTicketsLayout,
DashboardLayout as OrgDashboardLayout,
DirectoryCollectionLayout as OrgDirectoryCollectionLayout,
DirectoryEntryCollectionLayout as OrgDirectoryEntryCollectionLayout,
DirectoryEntryLayout as OrgDirectoryEntryLayout,
EditorLayout as OrgEditorLayout,
EventLayout as OrgEventLayout,
ExportCollectionLayout as OrgExportCollectionLayout,
ExternalLinkLayout as OrgExternalLinkLayout,
FindYourSpotLayout as OrgFindYourSpotLayout,
FormCollectionLayout as OrgFormCollectionLayout,
SurveyCollectionLayout as OrgSurveyCollectionLayout,
FormEditorLayout as OrgFormEditorLayout,
FormSubmissionLayout as OrgFormSubmissionLayout,
SurveySubmissionLayout as OrgSurveySubmissionLayout,
SurveySubmissionWindowLayout as OrgSurveySubmissionWindowLayout,
FormDocumentLayout as OrgFormDocumentLayout,
HomepageLayout as OrgHomepageLayout,
ImageSetCollectionLayout as OrgImageSetCollectionLayout,
ImageSetLayout as OrgImageSetLayout,
MessageCollectionLayout as OrgMessageCollectionLayout,
NewsLayout as OrgNewsLayout,
NewsletterLayout as OrgNewsletterLayout,
PageLayout as OrgPageLayout,
PaymentCollectionLayout as OrgPaymentCollectionLayout,
PaymentProviderLayout as OrgPaymentProviderLayout,
PersonCollectionLayout as OrgPersonCollectionLayout,
PersonLayout as OrgPersonLayout,
PublicationLayout as OrgPublicationLayout,
OccurrenceLayout as OrgOccurrenceLayout,
OccurrencesLayout as OrgOccurrencesLayout,
RecipientLayout as OrgRecipientLayout,
ReservationLayout as OrgReservationLayout,
ResourceLayout as OrgResourceLayout,
ResourcesLayout as OrgResourcesLayout,
ResourceRecipientsLayout as OrgResourceRecipientsLayout,
ResourceRecipientsFormLayout as OrgResourceRecipientsFormLayout,
SettingsLayout as OrgSettingsLayout,
TextModuleLayout as OrgTextModuleLayout,
TextModulesLayout as OrgTextModulesLayout,
TicketChatMessageLayout as OrgTicketChatMessageLayout,
TicketLayout as OrgTicketLayout,
TicketNoteLayout as OrgTicketNoteLayout,
TicketsLayout as OrgTicketsLayout,
UserLayout as OrgUserLayout,
UserGroupLayout as OrgUserGroupLayout,
UserGroupCollectionLayout as OrgUserGroupCollectionLayout,
UserManagementLayout as OrgUserManagementLayout)
from onegov.org.models import PageMove
from onegov.org.models.directory import ExtendedDirectoryEntryCollection
from onegov.page import PageCollection
from onegov.parliament.collections import RISPartyCollection
from onegov.parliament.collections import MeetingCollection
from onegov.parliament.collections import PoliticalBusinessCollection
from onegov.parliament.collections.commission import (
RISCommissionCollection
)
from onegov.parliament.collections import RISParliamentarianCollection
from onegov.parliament.collections import (
RISParliamentaryGroupCollection
)
from onegov.stepsequence import step_sequences
from onegov.stepsequence.extension import StepsLayoutExtension
from onegov.town6 import _
from onegov.town6.theme import user_options
from typing import Any, NamedTuple, TypeVar, TYPE_CHECKING
if TYPE_CHECKING:
from collections.abc import Iterator
from onegov.event import Event
from onegov.form import FormDefinition, FormSubmission
from onegov.form.models.definition import SurveyDefinition
from onegov.form.models.submission import SurveySubmission
from onegov.org.models import ExtendedDirectoryEntry
from onegov.org.request import PageMeta
from onegov.page import Page
from onegov.reservation import Resource
from onegov.ticket import Ticket
from onegov.town6.app import TownApp
from onegov.town6.request import TownRequest
from typing import TypeAlias
NavigationEntry: TypeAlias = tuple[
PageMeta,
Link,
tuple['NavigationEntry', ...]
]
T = TypeVar('T')
class PartnerCard(NamedTuple):
url: str | None
image_url: str | None
lead: str | None
class Layout(OrgLayout):
app: TownApp
request: TownRequest
def __init__(self, model: Any, request: TownRequest,
edit_mode: bool = False) -> None:
super().__init__(model, request)
self.request.include('foundation6')
self.edit_mode = edit_mode
@property
def primary_color(self) -> str:
return (self.org.theme_options or {}).get(
'primary-color-ui', user_options['primary-color-ui'])
@cached_property
def font_awesome_path(self) -> str:
return self.request.link(StaticFile(
'font-awesome5/css/all.min.css',
version=self.app.version
))
@cached_property
def sentry_init_path(self) -> str:
static_file = StaticFile.from_application(
self.app, 'sentry/js/sentry-init.js'
)
return self.request.link(static_file)
@cached_property
def drilldown_back(self) -> str:
back = self.request.translate(_('back'))
return (
'<li class="js-drilldown-back">'
f'<a tabindex="0">{back}</a></li>'
)
@property
def on_homepage(self) -> bool:
return self.request.url == self.homepage_url
@property
def partners(self) -> list[PartnerCard]:
partner_attrs = [key for key in dir(self.org) if 'partner' in key]
partner_count = int(len(partner_attrs) / 3)
return [
PartnerCard(
url=url,
image_url=image_url,
lead=lead,
)
for ix in range(1, partner_count + 1)
if any((
(url := getattr(self.org, f'partner_{ix}_url')),
(image_url := getattr(self.org, f'partner_{ix}_img')),
(lead := getattr(self.org, f'partner_{ix}_name')),
))
]
@property
def show_partners(self) -> bool:
if self.on_homepage:
if '<partner' in (self.org.homepage_structure or ''):
# The widget is rendered
return False
if self.org.always_show_partners and not self.request.is_admin:
return True
return False
@cached_property
def search_keybindings_help(self) -> str:
return self.request.translate(
_('Press ${shortcut} to open Search',
mapping={'shortcut': 'Ctrl+Shift+F / Ctrl+Shift+S'})
)
@cached_property
def page_collection(self) -> PageCollection:
return PageCollection(self.request.session)
def page_by_path(self, path: str) -> Page | None:
return self.page_collection.by_path(path)
class DefaultLayout(OrgDefaultLayout, Layout):
if TYPE_CHECKING:
app: TownApp
request: TownRequest
def __init__(self, model: Any, request: TownRequest) -> None: ...
@cached_property
def top_navigation(self) -> tuple[NavigationEntry, ...]: # type:ignore
def yield_children(page: PageMeta) -> NavigationEntry:
if page.type != 'news':
children = tuple(
yield_children(p)
for p in page.children
)
else:
children = ()
return (
page,
Link(page.title, page.link(self.request)),
children
)
return tuple(yield_children(page) for page in self.root_pages)
@cached_property
def sortable_url_template(self) -> str:
return self.csrf_protected_url(
self.request.class_link(
PageMove,
{
'subject_id': '{subject_id}',
'target_id': '{target_id}',
'direction': '{direction}'
}
)
)
@cached_property
def ris_settings_url(self) -> str:
return self.request.link(self.request.app.org, 'ris-settings')
class DefaultMailLayout(OrgDefaultMailLayout, Layout):
""" A special layout for creating HTML E-Mails. """
app: TownApp
request: TownRequest
class AdjacencyListLayout(OrgAdjacencyListLayout, DefaultLayout):
app: TownApp
request: TownRequest
class SettingsLayout(OrgSettingsLayout, DefaultLayout):
app: TownApp
request: TownRequest
class PageLayout(OrgPageLayout, AdjacencyListLayout):
app: TownApp
request: TownRequest
@cached_property
def contact_html(self) -> str:
return self.model.contact_html or to_html_ul(
self.org.contact
)
class NewsLayout(OrgNewsLayout, AdjacencyListLayout):
app: TownApp
request: TownRequest
@cached_property
def contact_html(self) -> str:
return self.model.contact_html or to_html_ul(
self.org.contact, convert_dashes=False
)
class EditorLayout(OrgEditorLayout, DefaultLayout):
app: TownApp
request: TownRequest
class FormEditorLayout(OrgFormEditorLayout, DefaultLayout):
app: TownApp
request: TownRequest
@step_sequences.registered_step(
1, _('Form'), cls_after='FormSubmissionLayout')
@step_sequences.registered_step(
2, _('Check'),
cls_before='FormSubmissionLayout',
cls_after='TicketChatMessageLayout'
)
@step_sequences.registered_step(
2, _('Check'),
cls_before='DirectoryEntryCollectionLayout',
cls_after='TicketChatMessageLayout')
@step_sequences.registered_step(
2, _('Check'),
cls_before='EventLayout',
cls_after='TicketChatMessageLayout')
@step_sequences.registered_step(
2, _('Check'),
cls_before='DirectoryEntryLayout',
cls_after='TicketChatMessageLayout'
)
class FormSubmissionLayout(
StepsLayoutExtension,
OrgFormSubmissionLayout,
DefaultLayout
):
app: TownApp
request: TownRequest
model: FormSubmission | FormDefinition
if TYPE_CHECKING:
def __init__(
self,
model: FormSubmission | FormDefinition,
request: TownRequest,
title: str | None = None,
*,
hide_steps: bool = False
) -> None: ...
@property
def step_position(self) -> int | None:
if self.request.view_name == 'send-message':
return None
if self.model.__class__.__name__ == 'CustomFormDefinition':
return 1
return 2
class SurveySubmissionLayout(
StepsLayoutExtension,
OrgSurveySubmissionLayout,
DefaultLayout
):
app: TownApp
request: TownRequest
model: SurveySubmission | SurveyDefinition
if TYPE_CHECKING:
def __init__(
self,
model: SurveySubmission | SurveyDefinition,
request: TownRequest,
title: str | None = None,
*,
hide_steps: bool = False
) -> None: ...
@property
def step_position(self) -> int | None:
if self.request.view_name == 'send-message':
return None
if self.model.__class__.__name__ == 'SurveyDefinition':
return 1
return 2
class FormDocumentLayout(OrgFormDocumentLayout, DefaultLayout):
app: TownApp
request: TownRequest
class FormCollectionLayout(OrgFormCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
@property
def forms_url(self) -> str:
return self.request.class_link(FormCollection)
class SurveySubmissionWindowLayout(OrgSurveySubmissionWindowLayout,
DefaultLayout):
app: TownApp
request: TownRequest
class SurveyCollectionLayout(OrgSurveyCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class PersonCollectionLayout(OrgPersonCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class PersonLayout(OrgPersonLayout, DefaultLayout):
app: TownApp
request: TownRequest
class TicketsLayout(OrgTicketsLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ArchivedTicketsLayout(OrgArchivedTicketsLayout, DefaultLayout):
app: TownApp
request: TownRequest
class TicketLayout(OrgTicketLayout, DefaultLayout):
app: TownApp
request: TownRequest
@cached_property
def editbar_links(self) -> list[Link | LinkGroup] | None:
links = super().editbar_links
if links is not None and self.request.is_manager:
if self.request.app.org.gever_endpoint:
links.append(
Link(
text=_('Upload to Gever'),
url=self.request.link(self.model, 'send-to-gever'),
attrs={'class': 'upload'},
traits=(
Confirm(
_('Do you really want to upload this ticket?'),
_('This will upload this ticket to the '
'Gever instance, if configured.'),
_('Upload Ticket'),
_('Cancel')
)
)
)
)
return links
class TicketNoteLayout(OrgTicketNoteLayout, DefaultLayout):
app: TownApp
request: TownRequest
@step_sequences.registered_step(
3, _('Confirmation'),
cls_before='FormSubmissionLayout')
@step_sequences.registered_step(
3, _('Confirmation'),
cls_before='EventLayout')
@step_sequences.registered_step(
3, _('Confirmation'),
cls_before='ReservationLayout')
class TicketChatMessageLayout(
StepsLayoutExtension,
OrgTicketChatMessageLayout,
DefaultLayout
):
app: TownApp
request: TownRequest
if TYPE_CHECKING:
def __init__(
self,
model: Ticket,
request: TownRequest,
internal: bool = False,
*,
hide_steps: bool = False,
) -> None: ...
@property
def step_position(self) -> int:
return 3
class TextModulesLayout(OrgTextModulesLayout, DefaultLayout):
app: TownApp
request: TownRequest
class TextModuleLayout(OrgTextModuleLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ResourcesLayout(OrgResourcesLayout, DefaultLayout):
app: TownApp
request: TownRequest
class FindYourSpotLayout(OrgFindYourSpotLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ResourceRecipientsLayout(OrgResourceRecipientsLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ResourceRecipientsFormLayout(
OrgResourceRecipientsFormLayout,
DefaultLayout
):
app: TownApp
request: TownRequest
class ResourceLayout(OrgResourceLayout, DefaultLayout):
app: TownApp
request: TownRequest
@step_sequences.registered_step(
1, _('Form'), cls_after='ReservationLayout')
@step_sequences.registered_step(
2, _('Check'),
cls_before='ReservationLayout', cls_after='TicketChatMessageLayout')
class ReservationLayout(
StepsLayoutExtension,
OrgReservationLayout,
ResourceLayout
):
app: TownApp
request: TownRequest
editbar_links = None
if TYPE_CHECKING:
def __init__(
self,
model: Resource,
request: TownRequest,
*,
hide_steps: bool = False,
) -> None: ...
@property
def step_position(self) -> int | None:
""" Note the last step is the ticket status page with step 3. """
view_name = self.request.view_name
if view_name == 'form':
return 1
if view_name == 'confirmation':
return 2
return None
class AllocationRulesLayout(OrgAllocationRulesLayout, DefaultLayout):
app: TownApp
request: TownRequest
class AllocationEditFormLayout(OrgAllocationEditFormLayout, DefaultLayout):
""" Same as the resource layout, but with different editbar links, because
there's not really an allocation view, but there are allocation forms.
"""
app: TownApp
request: TownRequest
class OccurrencesLayout(OrgOccurrencesLayout, DefaultLayout):
app: TownApp
request: TownRequest
@cached_property
def editbar_links(self) -> list[Link | LinkGroup]:
links = super().editbar_links
if self.request.is_manager:
links.append(
LinkGroup(
title=_('Add'),
links=[
Link(
text=_('Event'),
url=self.request.link(self.model, 'enter-event'),
attrs={'class': 'new-form'}
),
]
)
)
return links
class OccurrenceLayout(OrgOccurrenceLayout, DefaultLayout):
app: TownApp
request: TownRequest
@cached_property
def editbar_links(self) -> list[Link | LinkGroup]:
links = super().editbar_links or []
if self.request.is_manager:
copy_url = self.request.link(
OccurrenceCollection(self.request.session), 'enter-event')
copy_url = append_query_param(copy_url,
'event_id', self.model.event.id.hex)
links.append(
Link(
text=_('Copy'),
url=copy_url,
attrs={'class': 'copy-link'}
)
)
return links
@step_sequences.registered_step(1, _('Form'), cls_after='FormSubmissionLayout')
@step_sequences.registered_step(
2, _('Check'),
cls_before='EventLayout',
cls_after='TicketChatMessageLayout'
)
class EventLayout(StepsLayoutExtension, OrgEventLayout, DefaultLayout):
app: TownApp
request: TownRequest
model: Event
if TYPE_CHECKING:
def __init__(
self,
model: Event,
request: TownRequest,
*,
hide_steps: bool = False
) -> None: ...
@property
def step_position(self) -> int:
if self.request.view_name == 'new':
return 1
return 2
class NewsletterLayout(OrgNewsletterLayout, DefaultLayout):
app: TownApp
request: TownRequest
class RecipientLayout(OrgRecipientLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ImageSetCollectionLayout(OrgImageSetCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ImageSetLayout(OrgImageSetLayout, DefaultLayout):
app: TownApp
request: TownRequest
class UserManagementLayout(OrgUserManagementLayout, DefaultLayout):
app: TownApp
request: TownRequest
class UserLayout(OrgUserLayout, DefaultLayout):
app: TownApp
request: TownRequest
class UserGroupCollectionLayout(OrgUserGroupCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class UserGroupLayout(OrgUserGroupLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ExportCollectionLayout(OrgExportCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class PaymentProviderLayout(OrgPaymentProviderLayout, DefaultLayout):
app: TownApp
request: TownRequest
class PaymentCollectionLayout(OrgPaymentCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class MessageCollectionLayout(OrgMessageCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
class DirectoryCollectionLayout(OrgDirectoryCollectionLayout, DefaultLayout):
app: TownApp
request: TownRequest
@step_sequences.registered_step(
1, _('Form'), cls_after='FormSubmissionLayout'
)
class DirectoryEntryCollectionLayout(
StepsLayoutExtension,
OrgDirectoryEntryCollectionLayout,
DefaultLayout
):
if TYPE_CHECKING:
app: TownApp
request: TownRequest
def __init__(
self,
model: ExtendedDirectoryEntryCollection,
request: TownRequest,
*,
hide_steps: bool = False,
) -> None: ...
@property
def step_position(self) -> int:
return 1
# FIXME: Is there a reason we don't add the export link in Town6?
# If not then just delete this method and use the one from Org
@cached_property
def editbar_links(self) -> list[Link | LinkGroup]:
export_link = Link(
text=_('Export'),
url=self.request.link(self.model, name='+export'),
attrs={'class': 'export-link'}
)
def links() -> Iterator[Link | LinkGroup]:
qr_link = None
if self.request.is_admin:
yield Link(
text=_('Configure'),
url=self.request.link(self.model, '+edit'),
attrs={'class': 'edit-link'}
)
if self.request.is_manager:
yield export_link
yield Link(
text=_('Import'),
url=self.request.class_link(
ExtendedDirectoryEntryCollection, {
'directory_name': self.model.directory_name
}, name='+import'
),
attrs={'class': 'import-link'}
)
qr_link = QrCodeLink(
text=_('QR'),
url=self.request.link(self.model),
attrs={'class': 'qr-code-link'}
)
if self.request.is_admin:
yield Link(
text=_('Delete'),
url=self.csrf_protected_url(
self.request.link(self.model)
),
attrs={'class': 'delete-link'},
traits=(
Confirm(
_(
'Do you really want to delete "${title}"?',
mapping={
'title': self.model.directory.title
}
),
_('All entries will be deleted as well!'),
_('Delete directory'),
_('Cancel')
),
Intercooler(
request_method='DELETE',
redirect_after=self.request.class_link(
DirectoryCollection
)
)
)
)
yield Link(
text=self.request.translate(_('Change URL')),
url=self.request.link(
self.model.directory,
'change-url'),
attrs={'class': 'internal-url'},
)
if self.request.is_manager:
yield LinkGroup(
title=_('Add'),
links=[
Link(
text=_('Entry'),
url=self.request.link(
self.model,
name='+new'
),
attrs={'class': 'new-directory-entry'}
)
]
)
if qr_link:
yield qr_link
if self.request.is_manager:
yield IFrameLink(
text=_('iFrame'),
url=self.request.link(self.model),
attrs={'class': 'new-iframe'}
)
return list(links())
@step_sequences.registered_step(1, _('Form'), cls_after='FormSubmissionLayout')
class DirectoryEntryLayout(
StepsLayoutExtension,
OrgDirectoryEntryLayout,
DefaultLayout
):
app: TownApp
request: TownRequest
if TYPE_CHECKING:
def __init__(
self,
model: ExtendedDirectoryEntry,
request: TownRequest,
*,
hide_steps: bool = False
) -> None: ...
@property
def step_position(self) -> int:
return 1
class PublicationLayout(OrgPublicationLayout, DefaultLayout):
app: TownApp
request: TownRequest
class DashboardLayout(OrgDashboardLayout, DefaultLayout):
app: TownApp
request: TownRequest
class GeneralFileCollectionLayout(DefaultLayout):
def __init__(self, model: Any, request: TownRequest) -> None:
"""
The order of assets differ from org where common.js must come first
including jquery. Here, the foundation6 assets contain jquery and must
come first.
"""
super().__init__(model, request)
request.include('upload')
request.include('prompt')
class ImageFileCollectionLayout(DefaultLayout):
def __init__(self, model: Any, request: TownRequest) -> None:
super().__init__(model, request)
request.include('upload')
request.include('editalttext')
class ExternalLinkLayout(OrgExternalLinkLayout, DefaultLayout):
app: TownApp
request: TownRequest
class HomepageLayout(OrgHomepageLayout, DefaultLayout):
app: TownApp
request: TownRequest
class ChatLayout(DefaultLayout):
def __init__(self, model: Any, request: TownRequest) -> None:
super().__init__(model, request)
token = self.make_websocket_token()
# Make token available to JavaScript when creating the WebSocket
# connection.
self.custom_body_attributes['data-websocket-token'] = token
# Store the WebSocket token in the session check when the connection is
# initiated.
request.browser_session['websocket_token'] = token
def make_websocket_token(self) -> str:
"""
A user (authenticated or anonymous) attempts to create a chat
connection. For the connection to succeed, they must present a one-time
token to the WebSocket server.
TODO: Add lifespan to the token?
"""
return secrets.token_hex(16)
class StaffChatLayout(ChatLayout):
def __init__(self, model: Any, request: TownRequest) -> None:
super().__init__(model, request)
self.request.include('websockets')
self.request.include('staff-chat')
self.custom_body_attributes['data-websocket-endpoint'] = (
self.app.websockets_client_url(request))
self.custom_body_attributes['data-websocket-schema'] = (
self.app.schema)
@cached_property
def breadcrumbs(self) -> list[Link]:
return [
Link(_('Homepage'), self.homepage_url),
Link(_('Chats'), self.request.link(
self.request.app.org, name='chats'
))
]
class ClientChatLayout(ChatLayout):
def __init__(self, model: Any, request: TownRequest) -> None:
super().__init__(model, request)
self.request.include('websockets')