-
Notifications
You must be signed in to change notification settings - Fork 16
/
chap-ajax_comet.lyx
2771 lines (2055 loc) · 52.5 KB
/
chap-ajax_comet.lyx
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#LyX 1.6.7 created this file. For more info see http://www.lyx.org/
\lyxformat 345
\begin_document
\begin_header
\textclass book
\use_default_options false
\language english
\inputencoding auto
\font_roman default
\font_sans default
\font_typewriter default
\font_default_family default
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_amsmath 1
\use_esint 1
\cite_engine basic
\use_bibtopic false
\paperorientation portrait
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\defskip medskip
\quotes_language english
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\author ""
\author ""
\end_header
\begin_body
\begin_layout Chapter
AJAX and Comet in Lift
\begin_inset CommandInset label
LatexCommand label
name "cha:AJAX-and-COMET"
\end_inset
\end_layout
\begin_layout Standard
In this chapter we're going to discuss AJAX and Comet, two approaches to
improving the user experience through dynamic web pages.
While a full treatment of the techniques and technologies behind these
approaches is beyond the scope of this book
\begin_inset Foot
status open
\begin_layout Plain Layout
There are a number of good resources on the web that you can find by searching
for
\begin_inset Quotes eld
\end_inset
AJAX
\begin_inset Quotes erd
\end_inset
.
\end_layout
\end_inset
, we're going to cover the basics of how AJAX and Comet work.
In particular, we're going to look at how Lift handles them behind the
scenes to simplify your work.
\end_layout
\begin_layout Section
What are AJAX and Comet, really?
\end_layout
\begin_layout Standard
AJAX and Comet are variations on the traditional model of the web application
request/response lifecycle.
In the traditional model, the user starts by making a request for a page.
The server receives this request, performs processing, then sends a response
back to the user.
The response is then rendered by the user's browser.
At this point there are no further interactions between the user and the
server until the user clicks on a link or performs some other action that
starts a completely new request/response lifecycle.
AJAX and Comet extend this model to allow for asynchronous updates from
either the user to the server (AJAX), or from the server back to the user
(Comet).
\end_layout
\begin_layout Standard
If we take the example of adding a comment to a blog post, the traditional
model has the user fill in a form, hit the submit button, and send the
request to the server.
The server processes and adds the comment and then sends the updated blog
post back to the user with the newly added comment.
At the same time, if other people are viewing the blog post, they won't
see the new comment until they reload the page.
\end_layout
\begin_layout Standard
The AJAX model of this session changes such that the display of the new
comment is not tied to the response from the server.
When the user hits submit, the request to add the comment is sent to the
server
\emph on
in the background
\emph default
.
While it's being processed by the server, a JavaScript fragment (the
\begin_inset Quotes eld
\end_inset
J
\begin_inset Quotes erd
\end_inset
in AJAX) updates the user's page via DOM
\begin_inset Foot
status open
\begin_layout Plain Layout
Document Object Model.
More information can be found at
\begin_inset CommandInset href
LatexCommand href
target "http://www.w3.org/DOM/"
\end_inset
\end_layout
\end_inset
and adds the comment without the need for a full page reload.
\end_layout
\begin_layout Standard
Comet changes the traditional model by using a long-polling HTTP request
in the background that allows the server to push data to the browser without
requiring additional requests.
Essentially this is like AJAX, except in the opposite direction.
\end_layout
\begin_layout Standard
While the AJAX model increases the richness of the User Experience for a
single client at a time, Comet can do the same for multiple users.
Going back to our example of a blog post, Comet would enable the server
to notify anyone viewing the current blog post to automatically have their
pages updated when the new comment is added.
\end_layout
\begin_layout Standard
Figures
\begin_inset CommandInset ref
LatexCommand ref
reference "subfig:Traditional-Application-Model"
\end_inset
,
\begin_inset CommandInset ref
LatexCommand ref
reference "subfig:AJAX-Application-Model"
\end_inset
, and
\begin_inset CommandInset ref
LatexCommand ref
reference "subfig:COMET-Application-Model"
\end_inset
show graphical representations of how the models differ in terms of timeline
and server interaction.
\end_layout
\begin_layout Standard
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\align center
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Traditional Application Model
\begin_inset CommandInset label
LatexCommand label
name "subfig:Traditional-Application-Model"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Graphics
filename images/Traditional_Model.pdf
width 3in
\end_inset
\end_layout
\end_inset
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
AJAX Application Model
\begin_inset CommandInset label
LatexCommand label
name "subfig:AJAX-Application-Model"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Graphics
filename images/Ajax_Model.pdf
width 3in
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Float figure
wide false
sideways false
status open
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
Comet Application Model
\begin_inset CommandInset label
LatexCommand label
name "subfig:COMET-Application-Model"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Graphics
filename images/COMET_Model.pdf
width 3in
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
\begin_inset CommandInset label
LatexCommand label
name "fig:model-comparisons"
\end_inset
Application Model Comparisons
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Section
Using AJAX in Lift
\end_layout
\begin_layout Standard
In previous chapters we've shown how to synchronously process forms (chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "cha:Forms-in-Lift"
\end_inset
) and use JavaScript to perform client-side behavior (chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "cha:Lift-and-Javascript"
\end_inset
).
AJAX blends these Lift techniques to give you powerful support for asynchronous
client-server interaction.
As with standard form and link elements, Lift uses methods on the
\family typewriter
SHtml
\family default
object to generate AJAX components in a concise manner.
We'll cover each of the AJAX-specific
\family typewriter
SHtml
\family default
methods in a later section, but for now we want to cover the high-level
aspects of using AJAX in Lift.
\end_layout
\begin_layout Standard
The first thing we want to point out is that AJAX generators take callback
methods just like regular element generators.
The major difference is that while standard
\family typewriter
SHtml
\family default
generator callbacks return
\family typewriter
scala.Any
\family default
, AJAX callbacks must return a
\family typewriter
net.liftweb.http.js.JsCmd
\family default
.
The reason is that the return from the callback is itself a client-side
callback that can be used to update the client content.
An example is shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:A-simple-AJAX-example"
\end_inset
.
In this example we generate a button, that when clicked, will log a message
and then set the contents of the div named
\family typewriter
my-div
\family default
to a
\family typewriter
Text
\family default
element.
As you can see, adding client-side content changes is trivial.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
A simple AJAX example
\begin_inset CommandInset label
LatexCommand label
name "lst:A-simple-AJAX-example"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.http.SHtml._
\end_layout
\begin_layout Plain Layout
// The next two imports are used to get some implicit conversions
\end_layout
\begin_layout Plain Layout
// in scope.
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.http.JE._
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.http.JsCmds._
\end_layout
\begin_layout Plain Layout
// Use logging facilities
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.util.Log
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// define a snippet method
\end_layout
\begin_layout Plain Layout
def myFunc(html: NodeSeq) : NodeSeq = {
\end_layout
\begin_layout Plain Layout
bind("hello", html, "button" -> ajaxButton(Text("Press me"), {() =>
\end_layout
\begin_layout Plain Layout
Log.info("Got an AJAX call")
\end_layout
\begin_layout Plain Layout
SetHtml("my-div", Text("That's it"))
\end_layout
\begin_layout Plain Layout
})
\end_layout
\begin_layout Plain Layout
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
The second important aspect of Lift's AJAX support is that behind the scenes
Lift provides a robust mechanism for AJAX submission.
For example, Lift provides its own JavaScript that handles retrying when
the submission times out.
You can control the timeout duration and retry count through
\family typewriter
LiftRule
\family default
's
\family typewriter
ajaxPostTimeout
\family default
(in milliseconds) and
\family typewriter
ajaxRetryCount
\family default
variables, respectively.
\end_layout
\begin_layout Standard
The third aspect of Lift's AJAX support is that it's so easy to enable.
Lift automatically takes care of adding the proper JavaScript libraries
to your templates when they're rendered, and sets up the proper callback
dispatch for you.
By default, dispatch is done relative to the
\family typewriter
/ajax_request
\family default
path in your web context, but Lift allows you change this via the
\family typewriter
LiftRules.ajaxPath
\family default
variable.
\end_layout
\begin_layout Standard
The final aspect is the flexibility the library provides.
Besides standard form elements and links that can be AJAXified, Lift also
provides the
\family typewriter
SHtml.ajaxCall
\family default
method which constructs a
\family typewriter
JsExp
\family default
that you can use directly on
\emph on
any
\emph default
element.
In addition, it allows you to construct a
\family typewriter
String
\family default
argument to your callback function via JavaScript so that you have full
access to client-side data.
\end_layout
\begin_layout Section
A more complex AJAX example
\begin_inset CommandInset label
LatexCommand label
name "sub:A-more-complex-ajax-example"
\end_inset
\end_layout
\begin_layout Standard
Let's take a look on a comparison example.
We've seen how to use
\family typewriter
SHtml.ajaxButton
\family default
, so let's see in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Ajax-comparison-example"
\end_inset
how can we achieve the same effect using
\family typewriter
SHtml.ajaxCall
\family default
and
\family typewriter
SHtml.ajaxInvoke
\family default
:
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
AJAX comparison example
\begin_inset CommandInset label
LatexCommand label
name "lst:Ajax-comparison-example"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
class SimpleSnippet {
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.http.js.{JE,JsCmd,JsCmds}
\end_layout
\begin_layout Plain Layout
import JsCmds._ // For implicits
\end_layout
\begin_layout Plain Layout
import JE.{JsRaw,Str}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def ajaxFunc1() : JsCmd = JsRaw("alert('Button1 clicked')")
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def ajaxFunc2(str: String) : JsCmd = {
\end_layout
\begin_layout Plain Layout
println("Received " + str)
\end_layout
\begin_layout Plain Layout
JsRaw("alert('Button2 clicked')")
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def ajaxFunc3() : JsCmd = JsRaw("alert('Button3 clicked')")
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
def renderAJAXButtons(xhtml: Group): NodeSeq = {
\end_layout
\begin_layout Plain Layout
bind("ex", xhtml,
\end_layout
\begin_layout Plain Layout
"button1" -> SHtml.ajaxButton("Press me", ajaxFunc1 _),
\end_layout
\begin_layout Plain Layout
"button2" ->
\end_layout
\begin_layout Plain Layout
// ajaxCall and ajaxInvoke actually returns a pair (String,
JsExp).
\end_layout
\begin_layout Plain Layout
// The String is used for garbage collection, so we only need
\end_layout
\begin_layout Plain Layout
// to use the JsExp element (_2).
\end_layout
\begin_layout Plain Layout
<button onclick={SHtml.ajaxCall(Str("Button-2"), ajaxFunc2
_)._2}>
\end_layout
\begin_layout Plain Layout
Press me 2</button>,
\end_layout
\begin_layout Plain Layout
"button3" ->
\end_layout
\begin_layout Plain Layout
<button onclick={SHtml.ajaxInvoke(ajaxFunc3 _)._2}>
\end_layout
\begin_layout Plain Layout
Press me 3</button>)
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Basically, in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:Ajax-comparison-example"
\end_inset
, we created three AJAX buttons using three different SHtml functions.
The difference between
\family typewriter
ajaxCall
\family default
and
\family typewriter
ajaxInvoke
\family default
is that for
\family typewriter
ajaxCall
\family default
you can specify a
\family typewriter
JsExp
\family default
parameter that will be executed on the client side.
The result of this
\family typewriter
JsExp
\family default
will be sent to the server.
In our case this parameter is simply a static String,
\family typewriter
Str(
\begin_inset Quotes eld
\end_inset
Button-2
\begin_inset Quotes erd
\end_inset
)
\family default
, but you can provide any
\family typewriter
JsExp
\family default
code here to calculate a client-side value to be passed to your callback.
For an overview of the rest of the
\family typewriter
SHtml
\family default
generator functions please see Chapter
\begin_inset CommandInset ref
LatexCommand ref
reference "cha:Forms-in-Lift"
\end_inset
.
\end_layout
\begin_layout Section
AJAX Generators in Detail
\begin_inset CommandInset label
LatexCommand label
name "sub:AJAX-Generators-in-detail"
\end_inset
\end_layout
\begin_layout Standard
The following table provides a brief synopsis of the AJAX generator methods
on the
\begin_inset Newline linebreak
\end_inset
\family typewriter
net.liftweb.http.SHtml
\family default
object:
\end_layout
\begin_layout Standard
\begin_inset Tabular
<lyxtabular version="3" rows="15" columns="2">
<features islongtable="true" headBottomDL="true">
<column alignment="left" valignment="top" width="0">
<column alignment="left" valignment="top" width="4in">
<row endhead="true">
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Function name
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" bottomline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Description
\end_layout
\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
ajaxButton
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Renders a button that will submit an AJAX request to server
\end_layout
\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
a
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Renders an anchor tag that when clicked will submit an AJAX request
\end_layout
\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
makeAJAXCall
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Renders the JavaScript code that will submit an AJAX request
\end_layout
\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
span
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
Renders a span element that when clicked will execute a
\family typewriter
JsCmd
\end_layout
\end_inset
</cell>
</row>
<row>
<cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
\begin_inset Text
\begin_layout Plain Layout
ajaxCall
\end_layout
\end_inset
</cell>
<cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">