blob: 6c8d80c8c302f09024c85e6ad6e29a6f1056348f (
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
|
Class {
#name : 'TBApplicationRootComponent',
#superclass : 'WAComponent',
#instVars : [
'main'
],
#category : 'TinyBlog-Components',
#package : 'TinyBlog-Components'
}
{ #category : 'testing' }
TBApplicationRootComponent class >> canBeRoot [
^ true
]
{ #category : 'initialization' }
TBApplicationRootComponent class >> initialize [
"self initialize"
| app |
app := WAAdmin register: self asApplicationAt: 'TinyBlog'.
app
preferenceAt: #sessionClass put: TBSession.
app
addLibrary: JQDeploymentLibrary;
addLibrary: JQUiDeploymentLibrary;
addLibrary: SBSDeploymentLibrary
]
{ #category : 'rendering' }
TBApplicationRootComponent >> children [
^ { main }
]
{ #category : 'initialization' }
TBApplicationRootComponent >> initialize [
super initialize.
main := TBPostsListComponent new
]
{ #category : 'initialization' }
TBApplicationRootComponent >> main: aComponent [
main := aComponent
]
{ #category : 'rendering' }
TBApplicationRootComponent >> renderContentOn: html [
html render: main.
SBSDeploymentLibrary addLoadScriptTo: html
]
{ #category : 'rendering' }
TBApplicationRootComponent >> updateRoot: anHtmlRoot [
super updateRoot: anHtmlRoot.
anHtmlRoot beHtml5.
anHtmlRoot title: 'TinyBlog'
]
|