-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPageFactory.php
248 lines (210 loc) · 5.54 KB
/
PageFactory.php
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
<?php
namespace Layout\Core;
use Layout\Core\Page\Layout;
use Layout\Core\Contracts\Profiler;
use Layout\Core\Contracts\Cacheable;
use Layout\Core\Contracts\ConfigResolver;
use Layout\Core\Contracts\EventsDispatcher as Dispatcher;
class PageFactory
{
const PROFILER_KEY = 'dispatch::route';
/**
* The event dispatcher instance.
*
* @var \Layout\Core\Contracts\EventsDispatcher
*/
protected $events;
/**
* The config instance.
*
* @var \Layout\Core\Contracts\ConfigResolver
*/
protected $config;
/**
* The profiler instance.
*
* @var \Layout\Core\Contracts\Profiler
*/
protected $profiler;
/**
* The cache instance.
*
* @var \Layout\Core\Contracts\Cacheable
*/
protected $cache;
/**
* The layout instance.
*
* @var \Layout\Core\Page\Layout
*/
protected $layout;
/**
* Holds the current handle for the layout.
*
* @var string
*/
protected $currentHandle;
/**
* Create a new view factory instance.
*
* @param \Layout\Core\Contracts\EventsDispatcher $events
* @param \Layout\Core\Contracts\ConfigResolver $config
* @param \Layout\Core\Contracts\Profiler $profiler
* @param \Layout\Core\Contracts\Cacheable $cache
*/
public function __construct(
Dispatcher $events,
ConfigResolver $config,
Profiler $profiler,
Cacheable $cache
) {
$this->events = $events;
$this->config = $config;
$this->profiler = $profiler;
$this->cache = $cache;
$this->layout = new Layout($events, $config, $profiler, $cache);
}
/**
* Get layout instance for current page
*
* @return \Layout\Core\Page\Layout
*/
public function layout()
{
return $this->layout;
}
/**
* Render current layout and return the resonse string
*
* @param string $handle
* @return array ['head' => [] ,'body' => '', 'bodyAttributes' => []]
*/
public function render($handle)
{
$this->currentHandle = $handle;
return $this->init()
->build()
->output();
}
/**
* reset the layout for the current page
*
* @return $this
*/
public function reset()
{
$this->layout()->reset();
return $this;
}
/**
* Set up default handles for current page
*
* @return $this
*/
public function init()
{
return $this->addHandle([
'default', $this->currentHandle()
]);
}
/**
* Build the layout for the current page
*
* @return $this
*/
public function build()
{
return $this->loadUpdates()
->generateXml()
->generateBlocks();
}
/**
* Render page template.
*
* @return array ['head' => [] ,'body' => '', 'bodyAttributes' => []]
*/
public function output()
{
$profilerKey = self::PROFILER_KEY.'::'.$this->currentHandle();
$this->profiler->start("$profilerKey::layout_render");
$this->events->fire('route.layout.render.before');
$this->events->fire('route.layout.render.before.'.$this->currentHandle());
$this->layout()->addBodyClass($this->currentHandle());
$output = $this->layout()->getOutput();
$this->profiler->stop("$profilerKey::layout_render");
return $output;
}
/**
* @param string|string[] $handleName
* @return $this
*/
public function addHandle($handleName)
{
$this->layout()->manager()->addHandle($handleName);
return $this;
}
/**
* Retrieve the default layout handle name for the current request
*
* @return string
*/
public function currentHandle()
{
return $this->currentHandle;
}
/**
* Load layout updates
*
* @return $this
*/
protected function loadUpdates()
{
$profilerKey = self::PROFILER_KEY.'::'.$this->currentHandle();
$this->events->fire(
'route.layout.load.before',
['layout' => $this->layout()]
);
$this->profiler->start("$profilerKey::layout_load");
$this->layout()->manager()->load();
$this->profiler->stop("$profilerKey::layout_load");
return $this;
}
/**
* Generate layout xml
*
* @return $this
*/
protected function generateXml()
{
$profilerKey = self::PROFILER_KEY.'::'.$this->currentHandle();
$this->events->fire(
'route.layout.generate.xml.before',
['layout' => $this->layout()]
);
$this->profiler->start("$profilerKey::layout_generate_xml");
$this->layout()->generateXml();
$this->profiler->stop("$profilerKey::layout_generate_xml");
return $this;
}
/**
* Generate layout blocks
*
* @return $this
*/
protected function generateBlocks()
{
$profilerKey = self::PROFILER_KEY.'::'.$this->currentHandle();
$this->profiler->start("$profilerKey::layout_generate_blocks");
$this->events->fire(
'route.layout.generate.blocks.before',
['layout' => $this->layout()]
);
$this->layout()->generatePageElements();
$this->events->fire(
'route.layout.generate.blocks.after',
['layout' => $this->layout()]
);
$this->profiler->stop("$profilerKey::layout_generate_blocks");
return $this;
}
}