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