-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdynamic_classes.py
60 lines (51 loc) · 1.62 KB
/
dynamic_classes.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
from quasargui import *
is_large = Model(True)
def get_classes(ref):
return [
' (class="',
JSRaw("ref('{ref}') ? ref('{ref}').attributes.class.value : ''".format(ref=ref)),
'")'
]
text_sm_lg = Div(
classes='text-lg',
props={
'class': Computed(lambda x: '' if x else 'text-sm', is_large),
'ref': 'sm_lg'
},
children=[
'This text is ',
Computed(lambda x: 'large' if x else 'small, luckily', is_large),
*get_classes('sm_lg')
])
text_lg_sm = Div(
classes='text-sm',
props={
'class': Computed(lambda x: 'text-lg' if x else '', is_large),
'ref': 'lg_sm'
},
children=[
Computed(lambda x: 'This text "should" be large too, but it is not' if x else 'This text is small', is_large),
*get_classes('lg_sm')
])
text_no_conflict = Div(
props={
'class': Computed(lambda x: 'text-lg' if x else 'text-sm', is_large),
'ref': 'no_conflict'
},
children=[
'This text is ',
Computed(lambda x: 'large' if x else 'small', is_large),
*get_classes('no_conflict')
])
layout = QLayout([QPage(classes='q-ma-lg easyread', children=[
Heading(5, 'Dynamic vs static classes'),
"Be careful not to mix classes with overlapping meanings. <br>"
"Props's class always comes second in class html attribute.",
Rows(row_classes='justify-left', classes='q-gutter-y-sm q-my-sm', children=[
text_sm_lg,
text_lg_sm,
text_no_conflict
]),
QToggle('Make text large', is_large, props={'left-label': True})
])])
run(layout, 'Dynamic vs static classes')