Mercurial > pub > Impl
annotate Lib/IMPL/Web/View/TTFactory.pm @ 288:3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
author | sergey |
---|---|
date | Tue, 19 Feb 2013 19:58:27 +0400 |
parents | 2d253e6e4a88 |
children | 85572f512abc |
rev | line source |
---|---|
181 | 1 package IMPL::Web::View::TTFactory; |
2 use strict; | |
3 | |
4 use Template::Context(); | |
5 | |
267 | 6 use IMPL::lang qw(:hash); |
181 | 7 use IMPL::Exception(); |
192 | 8 use Scalar::Util qw(weaken); |
181 | 9 |
10 | |
267 | 11 use IMPL::Const qw(:prop); |
12 use IMPL::declare { | |
13 base => [ | |
14 'IMPL::Object::Factory' => '@_' | |
15 ], | |
16 props => [ | |
17 template => PROP_RW, | |
18 context => PROP_RW, | |
19 instances => PROP_RW, | |
288
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
20 base => PROP_RW, |
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
21 require => PROP_RO |
267 | 22 ] |
23 }; | |
181 | 24 |
25 sub CTOR { | |
288
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
26 my ($this,$factory,$template,$context,$base,$require) = @_; |
194 | 27 |
28 die IMPL::ArgumentException("A template is required") unless $template; | |
29 | |
287 | 30 $context ||= new Template::Context(); |
194 | 31 |
32 $this->template($template); | |
33 $this->context($context); | |
267 | 34 $this->base($base); |
194 | 35 $this->instances(0); |
288
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
36 $this->require($require); |
181 | 37 } |
38 | |
39 our %CTOR = ( | |
194 | 40 'IMPL::Object::Factory' => sub { |
41 $_[0] | |
42 } | |
181 | 43 ); |
44 | |
45 sub MergeParameters { | |
194 | 46 my ($this,$name,$refProps) = @_; |
47 | |
267 | 48 my $base = $this->base; |
49 | |
287 | 50 $this->context->localise(); |
51 | |
52 my $ctx = new Template::Context({ %{$this->context} }); | |
53 | |
54 $this->context->delocalise(); | |
194 | 55 |
267 | 56 my $stash = $ctx->stash; |
288
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
57 my $require = $this->require; |
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
58 |
267 | 59 $stash->update({ |
60 require => sub { | |
61 my ($module) = @_; | |
62 | |
63 $module =~ s/^\.\//$base\//; | |
288
3a9cfea098dd
*TTView refactoring: removed RequireControl method, etc.
sergey
parents:
287
diff
changeset
|
64 return $require->($module); |
267 | 65 } |
66 }); | |
67 | |
68 return ($name, $this->template, $ctx, hashApply({ factory => $this },$refProps)); | |
181 | 69 } |
70 | |
71 sub CreateObject { | |
194 | 72 my $this = shift; |
73 | |
74 my $count = $this->instances; | |
75 | |
76 unless($count) { | |
77 # нужно выполнить именно блок INIT шаблона при создании первого экземпляра | |
78 if (my $init = $this->template->blocks->{INIT}) { | |
79 $this->context->process($init); | |
80 } | |
81 } | |
82 | |
83 my $instance = $this->SUPER::CreateObject(@_); | |
84 | |
85 $instance->InitInstance(); | |
86 | |
87 $count++; | |
88 $this->instances($count); | |
89 | |
90 return $instance; | |
181 | 91 } |
92 | |
93 sub save { | |
194 | 94 die new IMPL::NotImplementedException("This class doesn't support serialization"); |
181 | 95 } |
96 | |
97 sub restore { | |
194 | 98 die new IMPL::NotImplementedException("This class doesn't support serialization"); |
181 | 99 } |
100 | |
101 1; | |
102 | |
103 __END__ | |
104 | |
105 =pod | |
106 | |
107 =head1 NAME | |
108 | |
109 C<IMPL::Web::View::TTFactory> - фабрика элементов управления | |
110 | |
111 =head1 SYNOPSIS | |
112 | |
113 =begin code | |
114 | |
115 my $factory = new IMPL::Web::View::TTFactory( | |
280 | 116 'IMPL::Web::View::TTControl', |
194 | 117 $doc, |
118 $context, | |
119 { | |
120 TRIM => 1 | |
121 }, | |
122 { | |
123 myprop => 'my value' | |
124 }, | |
181 | 125 ); |
126 | |
127 my $input1 = $factory->new('login', { class => "required" } ); | |
128 | |
129 my $propval = $input->nodeProperty('myprop'); # 'my value' | |
130 | |
131 =end code | |
132 | |
133 =begin text | |
134 | |
135 [% | |
194 | 136 this.appendChild( |
137 my.org.input.new('login', class = this.errors('login') ? "invalid" : "" ) | |
138 ); | |
181 | 139 %] |
140 | |
141 =end text | |
142 | |
143 =head1 DESCRIPTION | |
144 | |
145 C< Inherits L<IMPL::Object::Factory> > | |
146 | |
147 =head1 MEMBERS | |
148 | |
149 =over | |
150 | |
151 =item C<[get,set]template> | |
152 | |
153 Документ C<Template::Document> который описывает элемент управления. См. C<IMPL::Web::View::TTControl>. | |
154 | |
155 =item C<[get,set]context> | |
156 | |
157 Контекст фабрики элементов управления, в этом контексте выполняет шаблон элемента управления при загрузке. | |
158 Далее в этом контексте будет выполнен блок инициализации при создании первого элемента управления. | |
159 | |
160 =item C<[get,set]opts> | |
161 | |
162 Параметры контекста элемента управления (ссылка на хеш). Каждый элемент управления при создании получает свой контекст, | |
163 который создает с данными параметрами и хранилищем переменных, дочерним к контексту фабрики. | |
164 | |
165 =item C<[get,set]nodeProperties> | |
166 | |
167 Ссылка на хеш со значениями свойств по умолчанию для создаваемого элемента управления. | |
168 | |
169 =item C<[get]instances> | |
170 | |
171 Количество созданных элементов управления данной фабрикой | |
172 | |
173 =item C<[override]MergeParameters($name,$nodeProps)> | |
174 | |
175 Превращает значения переданные методу C<new> фабрики в параметры для создания элемента управления. | |
176 | |
177 =over | |
178 | |
179 =item C<$name> | |
180 | |
181 Имя создаваемого узла (C<nodeName>). | |
182 | |
183 =item C<$nodeProps> | |
184 | |
185 Ссылка на шех со значениями свойств узла. Данные значения будут совмещены со значениями из свойства C<nodeProperties> | |
186 | |
187 =back | |
188 | |
189 =item C<[override]CreateObject(@params)> | |
190 | |
191 Создает экземпляр элемента управления стандартным образом. Учитывает количество экземпляров и если это первый, | |
192 то производит дополнительную инициализацию контекста выполнив блок шаблона C<INIT>. | |
193 | |
191 | 194 =item C<[inherited]new($name,$nodeProps)> |
181 | 195 |
196 Создает элемент управления с указанным именем и набором свойств. | |
197 | |
198 =back | |
199 | |
200 =cut |