Mercurial > pub > Impl
annotate Lib/IMPL/Web/View/TTControl.pm @ 303:a5eb64c6e6f7
TTDocument.GetTemplate corrected to work with document blocks
author | cin |
---|---|
date | Mon, 08 Apr 2013 02:18:47 +0400 |
parents | 673581380e79 |
children | 2da2564f115d |
rev | line source |
---|---|
181 | 1 package IMPL::Web::View::TTControl; |
2 use strict; | |
3 | |
234 | 4 use IMPL::Const qw(:prop); |
241
f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
sergey
parents:
238
diff
changeset
|
5 use IMPL::lang qw(:hash); |
299 | 6 use Scalar::Util qw(blessed reftype); |
234 | 7 use IMPL::declare { |
8 require => { | |
296 | 9 TemplateDocument => 'Template::Document', |
234 | 10 TTContext => 'Template::Context', |
11 Exception => 'IMPL::Exception', | |
238 | 12 ArgumentException => '-IMPL::InvalidArgumentException', |
13 OperationException => '-IMPL::InvalidOperationException' | |
234 | 14 }, |
15 base => [ | |
241
f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
sergey
parents:
238
diff
changeset
|
16 'IMPL::Object' => undef |
234 | 17 ], |
18 props => [ | |
19 id => PROP_RO, | |
238 | 20 attributes => PROP_RW, |
234 | 21 context => PROP_RO, |
22 template => PROP_RO | |
23 ] | |
24 }; | |
25 | |
181 | 26 |
187 | 27 { |
194 | 28 my $nextId = 1; |
29 sub _GetNextId { | |
299 | 30 return '_' . $nextId++; |
194 | 31 } |
187 | 32 } |
181 | 33 |
300 | 34 our $AUTOLOAD_REGEX = qr/^[a-z]/; |
238 | 35 |
181 | 36 sub CTOR { |
299 | 37 my ($this,$template,$context,$attrs) = @_; |
194 | 38 |
299 | 39 |
194 | 40 $this->template( $template ) or die new IMPL::ArgumentException("A template is required"); |
41 $this->context( $context ) or die new IMPL::ArgumentException("A context is required"); | |
42 | |
238 | 43 $this->attributes({}); |
194 | 44 |
301 | 45 if(ref($attrs) eq 'HASH') { |
299 | 46 while (my($key,$value) = each %$attrs) { |
47 $this->SetAttribute($key,$value); | |
48 } | |
238 | 49 } |
241
f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
sergey
parents:
238
diff
changeset
|
50 |
299 | 51 $this->id(_GetNextId()) unless $this->id; |
191 | 52 } |
53 | |
238 | 54 sub GetAttribute { |
55 my ($this,$name) = (shift,shift); | |
56 | |
57 if (my $method = $this->can($name)) { | |
58 unshift @_,$this; | |
59 goto &$method; | |
60 } else { | |
61 return $this->attributes->{$name}; | |
62 } | |
63 } | |
64 | |
65 sub SetAttribute { | |
66 my $this = shift; | |
67 my $name = shift; | |
68 | |
69 if (my $method = $this->can($name)) { | |
70 unshift @_, $this; | |
71 goto &$method; | |
72 } else { | |
73 return $this->attributes->{$name} = shift; | |
74 } | |
75 } | |
76 | |
187 | 77 sub Render { |
194 | 78 my ($this,$args) = @_; |
79 | |
80 $args = {} unless ref $args eq 'HASH'; | |
81 | |
299 | 82 return $this->context->include( |
301 | 83 $this->template->block, |
299 | 84 { |
85 %$args, | |
86 this => $this, | |
87 template => $this->template | |
88 } | |
89 ); | |
267 | 90 } |
91 | |
302 | 92 sub GetTemplate { |
93 my ($this,$name) = @_; | |
94 | |
95 return eval { $this->context->template($name) }; | |
96 } | |
97 | |
98 sub Include { | |
99 my ($this,$template, $args) = @_; | |
100 | |
101 my $tpl = $this->GetTemplate($template) | |
102 or die OperationException->new("The specified template isn't found", $template); | |
103 | |
104 return $this->context->include( | |
105 $tpl, | |
106 $args | |
107 ); | |
108 } | |
109 | |
185 | 110 sub AUTOLOAD { |
194 | 111 our $AUTOLOAD; |
112 | |
113 my $method = ($AUTOLOAD =~ m/(\w+)$/)[0]; | |
114 | |
115 return if $method eq 'DESTROY'; | |
116 | |
300 | 117 if ($method =~ /$AUTOLOAD_REGEX/) { |
238 | 118 my $this = shift; |
241
f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
sergey
parents:
238
diff
changeset
|
119 |
f48a1a9f4fa2
+Added ViewResult to allow implementation of the view environment.
sergey
parents:
238
diff
changeset
|
120 die OperationException->new("can't invoke method '$method' on an unblessed reference") unless blessed $this; |
238 | 121 |
122 return @_ ? $this->SetAttribute($method,@_) : $this->GetAttribute($method); | |
123 } else { | |
124 die OperationException->new("The specified method '$method' doesn't exists"); | |
125 } | |
181 | 126 } |
127 | |
128 1; | |
129 | |
130 __END__ | |
131 | |
132 =pod | |
133 | |
134 =head1 NAME | |
135 | |
136 C<IMPL::Web::View::TTControl> | |
137 | |
138 =head1 SYNPOSIS | |
139 | |
265 | 140 =begin text |
141 | |
142 [% | |
143 META version = 1; | |
144 BLOCK INIT; | |
145 # this is a document scope | |
299 | 146 dojo.modules.push( 'dijit/form/Input' ); |
265 | 147 END; |
299 | 148 |
149 # local to this block | |
150 TPreview = require('My/Org/TextPreview'); | |
265 | 151 |
299 | 152 # init control props |
153 visualClass = this.visualClass || 'classic'; | |
154 %] | |
155 <div id="$id" class="$visualClass" data-dojo-type="dijit/form/Input"> | |
156 [% FOREACH item IN model %] | |
157 <div class="itemContainer"> | |
158 [% Display(item) %] | |
159 </div> | |
265 | 160 [% END %] |
161 </div> | |
162 | |
163 =end text | |
164 | |
181 | 165 =head1 DESCRIPTION |
166 | |
299 | 167 Легкая обертка вокруг шаблона, позволяет изолировать пространство имен шаблона, |
168 а также реализовать собственные методы по представлению данных (в случае если | |
169 это проще сделать в виде методов класса). | |
265 | 170 |
181 | 171 =head2 BLOCKS |
172 | |
265 | 173 =head3 META |
174 | |
175 Атрибуты C<META> C<layout>, C<title> будут перенесены в свойства элемента | |
176 управления. | |
177 | |
181 | 178 =head3 INIT |
179 | |
265 | 180 Данный блок шаблона управления выполняется один раз при создании первого |
181 экземпляра элемента управления, в пространстве имен документа. Может | |
182 использоваться для формирования заголовочной части документа, скрипта | |
183 подключающего C<js> модули и т.п. | |
184 | |
185 Выполнение данного блока производится фабрикой элементов управления. | |
181 | 186 |
187 | 187 =head2 TEMPLATE VARS |
188 | |
265 | 189 Каждый шаблон имеет собственное пространство имен, вложенное в пространство имен |
190 фабрики элементов (которая разделяет пространство имен документа). В шаблоне | |
191 могут определяться новые переменные, однако они останутся локальными для блоков. | |
192 | |
193 Чтобы передать данные между блоками следует использовать ссылку на элемент | |
194 управления C<this>. | |
195 | |
196 =begin text | |
197 | |
198 [% | |
199 BLOCK CTOR; | |
200 this.extraCssClass = 'active'; | |
201 text = "this text will gone"; | |
202 END; | |
203 %] | |
204 | |
205 <div class="$this.extraCssClass">some text $text</div> | |
206 | |
207 =end text | |
208 | |
209 В примере выше переменная C<$text> установленная в конструкторе шаблона, при | |
210 отображении элемента управления будет неопределена. | |
187 | 211 |
212 =over | |
213 | |
265 | 214 =item * C<this> |
215 | |
216 ссылка на объект элемента управления | |
217 | |
218 =item * C<component> | |
187 | 219 |
265 | 220 ссылка на текущий шаблон, устанавливается автоматически в методе |
221 C<Template::Context::process>. | |
187 | 222 |
265 | 223 =item * C<template> |
224 | |
225 ссылка на шаблон элемента управления, для совместимости с C<TT> | |
187 | 226 |
227 =back | |
228 | |
229 =head1 MEMBERS | |
230 | |
300 | 231 =head2 C<[get]context> |
187 | 232 |
300 | 233 Контекст элемента управления, хранит пременные шаблона. Фабрика элементов |
234 управления создает новый контекст пространство имен которого вложено в | |
235 пространство имен документа. | |
187 | 236 |
300 | 237 Контекст следует использовать только при рендеринге документа. |
238 | |
239 =head2 C<[get,set]template> | |
187 | 240 |
241 C<Template::Document> Шаблон элемента управления. | |
242 | |
300 | 243 =head2 C<AUTOLOAD> |
187 | 244 |
265 | 245 Для удобства работы с шаблоном, элементы управления предоставляю доступ к своим |
246 свойствам через метод C<AUTOLOAD>. Имена свойств должны начинаться со строчной | |
247 буквы. | |
187 | 248 |
181 | 249 =cut |