blob: 4a95f2a0a7dd65d5f23af52faca8d8b02e8b62f6 (
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
|
Class {
#name : 'TBHeaderComponent',
#superclass : 'SBSComponent',
#instVars : [
'component'
],
#category : 'TinyBlog-Components',
#package : 'TinyBlog-Components'
}
{ #category : 'instance creation' }
TBHeaderComponent class >> from: aComponent [
^ self new
component: aComponent;
yourself
]
{ #category : 'accessing' }
TBHeaderComponent >> component [
^ component
]
{ #category : 'accessing' }
TBHeaderComponent >> component: anObject [
component := anObject
]
{ #category : 'rendering' }
TBHeaderComponent >> renderBrandOn: html [
html navigationBarBrand
url: self application url;
with: 'TinyBlog'
]
{ #category : 'rendering' }
TBHeaderComponent >> renderButtonsOn: html [
self session isLogged
ifTrue: [ self renderSimpleAdminButtonOn: html ]
ifFalse: [ self renderModalLoginButtonOn: html ]
]
{ #category : 'rendering' }
TBHeaderComponent >> renderContentOn: html [
| bar |
bar := html navigationBar.
bar background beLight.
bar with: [
html container: [
self renderBrandOn: html.
self renderButtonsOn: html
]
]
]
{ #category : 'rendering' }
TBHeaderComponent >> renderModalLoginButtonOn: html [
html render: (TBAuthenticationComponent from: component).
html formButton beSecondary;
dataTarget: '#myAuthDialog';
dataToggle: 'modal';
with: [
html span class: 'glyphicon glyphicon-lock'.
html text: 'Login' ]
]
{ #category : 'rendering' }
TBHeaderComponent >> renderSimpleAdminButtonOn: html [
html form: [
html formButton
beSecondary;
callback: [ component goToAdministrationView ];
with: [
html span class: 'glyphicon glyphicon-list-alt'.
html text: ' Admin View' ]]
]
|