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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo <script id="t-user" type="text/x-handlebars-template">
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo <script id="t-user-edit" type="text/x-handlebars-template">
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo <input id="f-fullname" type="text" name="fullname" value="{{fullname}}" />
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo <input id="f-username" type="text" name="username" value="{{username}}" />
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo YUI({filter: 'raw'}).use('app', 'handlebars', function (Y) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- Presenter --------------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.Presenter = Y.Base.create('presenter', Y.Base, [], {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo initializer: function (config) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo config || (config = {});
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.viewType = Y.Object.getValue(Y, config.viewType.split('.'));
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.after('containerChange', this._afterContainerChange);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.after('modelChange', this._afterModelChange);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.after('viewChange', this._afterViewChange);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('model').addTarget(this);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('view').addTarget(this);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo destroy: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo var model = this.get('model'),
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view = this.get('view');
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo model.destroy.apply(model, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view.destroy.apply(view, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo return Y.Presenter.superclass.destroy.apply(this, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo remove: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo var view = this.get('view');
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view.remove.apply(view, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo render: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo var view = this.get('view');
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view.render.apply(view, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _getContainer: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo return this.get('view').get('container');
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _setModel: function (model) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo if (!(model && model._isYUIModel)) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo model = new Y.Model(model);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo return model;
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _setView: function (view) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo if (!view instanceof Y.View) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view = new this.view(view);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _afterContainerChange: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('view').set('container', e.newVal);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _afterViewChange: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo _afterModelChange: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo getter: '_getContainer',
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo setter: '_setContainer'
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo setter: '_setModel',
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo setter: '_setView',
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- User -------------------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.namespace('MyApp').User = Y.Base.create('user', Y.Model, [], {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo idAttribute: 'username'
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo fullname: {value: null},
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo username: {value: null}
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- UserView -------------------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.namespace('MyApp').UserView = Y.Base.create('userView', Y.View, [], {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo template: Y.Handlebars.compile(Y.one('#t-user').getContent()),
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo render: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo var content = this.template(this.get('model').toJSON());
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('container').setContent(content);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- UserEditView ---------------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.namespace('MyApp').UserEditView = Y.Base.create('userEditView', Y.View, [], {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo template: Y.Handlebars.compile(Y.one('#t-user-edit').getContent()),
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo 'form' : {submit: 'saveUser'},
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo 'input[name=fullname]': {change: 'updateFullname'},
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo 'input[name=username]': {change: 'updateUsername'}
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo disableUsername: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('container').one('input[name=username]').set('disabled', true);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo render: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo var content = this.template(this.get('model').toJSON());
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('container').setContent(content);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo saveUser: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.fire('saveUser', {user: this.get('model')});
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo updateFullname: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.fire('updateFullname', {fullname: e.target.get('value')});
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo updateUsername: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.fire('updateUsername', {username: e.target.get('value')});
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- UserPresenter ----------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.namespace('MyApp').UserPresenter = Y.Base.create('userPrsenter', Y.Presenter, [], {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo initializer: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.on('userEditView:saveUser', this.saveUser);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.on('userEditView:updateFullname', this.updateFullname);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.on('userEditView:updateUsername', this.updateUsername);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo render: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo Y.MyApp.UserPresenter.superclass.render.apply(this, arguments);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo if (!this.get('model').get('allowEditUsername')) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('view').disableUsername();
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo saveUser: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo model = this.get('model');
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo user.set('fullname', model.get('fullname'));
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo if (model.get('allowEditUsername')) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo user.set('username', model.get('username'));
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo updateFullname: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('model').set('fullname', e.fullname);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo updateUsername: function (e) {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo this.get('model').set('username', e.username);
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // -- App --------------------------------------------------------------
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo serverRouting: false,
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo show: {type: 'MyApp.UserView'},
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo {path: '/', callback: 'showUser'},
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo {path: '/edit/', callback: 'editUser'}
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo app.showUser = function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo app.editUser = function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo // Uses a Presenter!
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo view : new Y.MyApp.UserEditView({model: user}),
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo allowEditUsername: user.isNew()
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo save: function () {
e8dfb26643f16b792ffe029dc404d89ce35b64b6Eric Ferraiuolo app.render().replace('/');