-
Notifications
You must be signed in to change notification settings - Fork 16
/
chap-demoapp.lyx
2843 lines (1854 loc) · 47.6 KB
/
chap-demoapp.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
PocketChange
\begin_inset CommandInset label
LatexCommand label
name "cha:PocketChange"
\end_inset
\end_layout
\begin_layout Standard
As a way to demonstrate the concepts in the book, we're going to build a
basic application and then build on it as we go along.
As it evolves, so will your understanding of Lift.
The application we've picked is an Expense Tracker.
We call it
\shape italic
PocketChange.
\end_layout
\begin_layout Standard
\begin_inset Float figure
placement h
wide false
sideways false
status open
\begin_layout Plain Layout
\align center
\begin_inset Graphics
filename images/pocketchange.png
width 6in
\end_inset
\end_layout
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
The PocketChange App
\end_layout
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Standard
PocketChange will track your expenses, keep a running total of what you've
spent, allow you to organize your data using tags, and help you to visualize
the data.
During the later chapters of the book we'll add a few fun features, such
as AJAX charting and allowing multiple people per account (with Comet update
of entries).
Above all, we want to keep the interface lean and clean.
\end_layout
\begin_layout Standard
We're going to be using the
\emph on
View First
\emph default
pattern for the design of our app, because Lift's separation of presentation
and logic via templating, views, and snippets lends itself to the
\emph on
View First
\emph default
pattern so well.
For an excellent article on the design decisions behind Lift's approach
to templating and logic, read David Pollak's
\emph on
Lift View First
\emph default
article on the Wiki
\begin_inset Foot
status open
\begin_layout Plain Layout
\begin_inset Flex URL
status open
\begin_layout Plain Layout
http://www.assembla.com/wiki/show/liftweb/View_First
\end_layout
\end_inset
\end_layout
\end_inset
.
\end_layout
\begin_layout Standard
Another important thing to note is that we're going to breeze through the
app and touch on a lot of details.
We'll provide plenty of references to the chapters where things are covered.
This chapter is really intended just to give you a taste of Lift, so feel
free to read ahead if you want more information on how something works.
The full source for the entire PocketChange application is available at
GitHub
\begin_inset Foot
status open
\begin_layout Plain Layout
\begin_inset Flex URL
status open
\begin_layout Plain Layout
http://github.com/tjweir/pocketchangeapp
\end_layout
\end_inset
\end_layout
\end_inset
.
Enough chatter, let's go!
\end_layout
\begin_layout Section
Defining the Model
\end_layout
\begin_layout Standard
The first step we'll take is to define the database entities that we're
going to use for our app.
The base functionality of a categorized expense tracker is covered by the
following items:
\end_layout
\begin_layout Itemize
User: A user of the application
\end_layout
\begin_layout Itemize
Account: A specific expense account - we want to support more than one per
user
\end_layout
\begin_layout Itemize
Expense: A specific expense transaction tied to a particular account
\end_layout
\begin_layout Itemize
Tag: A word or phrase that permits us a to categorize each expense for later
searching and reporting
\end_layout
\begin_layout Standard
We'll start out with the User, as shown in listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:PocketChange-User-entity"
\end_inset
.
We leverage Lift's MegaProtoUser (Section
\begin_inset CommandInset ref
LatexCommand vref
reference "sub:ProtoUser-and-MegaProtoUser"
\end_inset
) class to handle pretty much everything we need for user management.
For example, with just the code you see, we define an entire user management
function for our site, including a signup page, a lost password page, and
a login page.
The accompanying SiteMap (Section
\begin_inset CommandInset ref
LatexCommand vref
reference "cha:SiteMap"
\end_inset
) menus are generated with a single call to
\family typewriter
User.siteMap
\family default
.
As you can see, we can customize the XHTML that's generated for the user
management pages with a few simple defs.
The opportunities for customization provided by MetaMegaProtoUser are extensive.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
The PocketChange User Entity
\begin_inset CommandInset label
LatexCommand label
name "lst:PocketChange-User-entity"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
package com.pocketchangeapp.model
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Import all of the mapper classes
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.mapper._
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Create a User class extending the Mapper base class
\end_layout
\begin_layout Plain Layout
// MegaProtoUser, which provides default fields and methods
\end_layout
\begin_layout Plain Layout
// for a site user.
\end_layout
\begin_layout Plain Layout
class User extends MegaProtoUser[User] {
\end_layout
\begin_layout Plain Layout
def getSingleton = User // reference to the companion object below
\end_layout
\begin_layout Plain Layout
def allAccounts : List[Account] =
\end_layout
\begin_layout Plain Layout
Account.findAll(By(Account.owner, this.id))
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Create a "companion object" to the User class (above).
\end_layout
\begin_layout Plain Layout
// The companion object is a "singleton" object that shares the same
\end_layout
\begin_layout Plain Layout
// name as its companion class.
It provides global (i.e.
non-instance)
\end_layout
\begin_layout Plain Layout
// methods and fields, such as find, dbTableName, dbIndexes, etc.
\end_layout
\begin_layout Plain Layout
// For more, see the Scala documentation on singleton objects
\end_layout
\begin_layout Plain Layout
object User extends User with MetaMegaProtoUser[User] {
\end_layout
\begin_layout Plain Layout
override def dbTableName = "users" // define the DB table name
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Provide our own login page template.
\end_layout
\begin_layout Plain Layout
override def loginXhtml =
\end_layout
\begin_layout Plain Layout
<lift:surround with="default" at="content">
\end_layout
\begin_layout Plain Layout
{ super.loginXhtml }
\end_layout
\begin_layout Plain Layout
</lift:surround>
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Provide our own signup page template.
\end_layout
\begin_layout Plain Layout
override def signupXhtml(user: User) =
\end_layout
\begin_layout Plain Layout
<lift:surround with="default" at="content">
\end_layout
\begin_layout Plain Layout
{ super.signupXhtml(user) }
\end_layout
\begin_layout Plain Layout
</lift:surround>
\end_layout
\begin_layout Plain Layout
}
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Note that we've also added a utility method,
\family typewriter
allAccounts
\family default
, to the User class to retrieve all of the accounts for a given user.
We use the MetaMapper.findAll method to do a query by owner ID (Section
\begin_inset CommandInset ref
LatexCommand vref
reference "sub:Querying-for-Entities"
\end_inset
) supplying this user's ID as the owner ID.
\end_layout
\begin_layout Standard
Defining the Account entity is a little more involved, as shown in Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:PocketChange-Account-entity"
\end_inset
.
Here we define a class with a Long primary key and some fields associated
with the accounts.
We also define some helper methods for object relationship joins (Section
\begin_inset CommandInset ref
LatexCommand vref
reference "sub:helper-joins"
\end_inset
).
The Expense and Tag entities (along with some ancillary entities) follow
suit, so we won't cover them here.
\end_layout
\begin_layout Standard
\begin_inset listings
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
The PocketChange Account Entity
\begin_inset CommandInset label
LatexCommand label
name "lst:PocketChange-Account-entity"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
package com.pocketchangeapp.model
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
import _root_.java.math.MathContext
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.mapper._
\end_layout
\begin_layout Plain Layout
import _root_.net.liftweb.util.Empty
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Create an Account class extending the LongKeyedMapper superclass
\end_layout
\begin_layout Plain Layout
// (which is a "mapped" (to the database) trait that uses a Long primary
key)
\end_layout
\begin_layout Plain Layout
// and mixes in trait IdPK, which adds a primary key called "id".
\end_layout
\begin_layout Plain Layout
class Account extends LongKeyedMapper[Account] with IdPK {
\end_layout
\begin_layout Plain Layout
// Define the singleton, as in the "User" class
\end_layout
\begin_layout Plain Layout
def getSingleton = Account
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Define a many-to-one (foreign key) relationship to the User class
\end_layout
\begin_layout Plain Layout
object owner extends MappedLongForeignKey(this, User) {
\end_layout
\begin_layout Plain Layout
// Change the default behavior to add a database index
\end_layout
\begin_layout Plain Layout
// for this column.
\end_layout
\begin_layout Plain Layout
override def dbIndexed_? = true
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Define an "access control" field that defaults to false.
We'll
\end_layout
\begin_layout Plain Layout
// use this in the SiteMap chapter to allow the Account owner to
\end_layout
\begin_layout Plain Layout
// share out an account view.
\end_layout
\begin_layout Plain Layout
object is_public extends MappedBoolean(this) {
\end_layout
\begin_layout Plain Layout
override def defaultValue = false
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Define the field to hold the actual account balance with up to 16
\end_layout
\begin_layout Plain Layout
// digits (DECIMAL64) and 2 decimal places
\end_layout
\begin_layout Plain Layout
object balance extends MappedDecimal(this, MathContext.DECIMAL64, 2)
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
object name extends MappedString(this,100)
\end_layout
\begin_layout Plain Layout
object description extends MappedString(this, 300)
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// Define utility methods for simplifying access to related classes.
We'll
\end_layout
\begin_layout Plain Layout
// cover how these methods work in the Mapper chapter
\end_layout
\begin_layout Plain Layout
def admins = AccountAdmin.findAll(By(AccountAdmin.account, this.id))
\end_layout
\begin_layout Plain Layout
def addAdmin (user : User) =
\end_layout
\begin_layout Plain Layout
AccountAdmin.create.account(this).administrator(user).save
\end_layout
\begin_layout Plain Layout
def viewers = AccountViewer.findAll(By(AccountViewer.account, this.id))
\end_layout
\begin_layout Plain Layout
def entries = Expense.getByAcct(this, Empty, Empty, Empty)
\end_layout
\begin_layout Plain Layout
def tags = Tag.findAll(By(Tag.account, this.id))
\end_layout
\begin_layout Plain Layout
def notes = AccountNote.findAll(By(AccountNote.account, this.id))
\end_layout
\begin_layout Plain Layout
}
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
// The companion object to the above Class
\end_layout
\begin_layout Plain Layout
object Account extends Account with LongKeyedMetaMapper[Account] {
\end_layout
\begin_layout Plain Layout
// Define a utility method for locating an account by owner and name
\end_layout
\begin_layout Plain Layout
def findByName (owner : User, name : String) : List[Account] =
\end_layout
\begin_layout Plain Layout
Account.findAll(By(Account.owner, owner.id.is), By(Account.name, name))
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
...
more utility methods ...
\end_layout
\begin_layout Plain Layout
}
\end_layout
\end_inset
\end_layout
\begin_layout Section
Our First Template
\end_layout
\begin_layout Standard
Our next step is to figure out how we'll present this data to the user.
We'd like to have a home page on the site that shows, depending on whether
the user is logged in, either a welcome message or a summary of account
balances with a place to enter new expenses.
Listing
\begin_inset CommandInset ref
LatexCommand ref
reference "lst:The-welcome-template"
\end_inset
shows a basic template to handle this.
We'll save this as
\family typewriter
index.html
\family default
.
The astute reader will notice that we have a head element but no body.
This is XHTML, so how does that work? This template uses the
\family typewriter
<lift:surround>
\family default
tag (Section
\begin_inset CommandInset ref
LatexCommand vref
reference "sub:surround-tag"
\end_inset
) to embed itself into a master template (
\family typewriter
/templates_hidden/default
\family default
).
Lift actually does what's called a
\begin_inset Quotes eld
\end_inset
head merge
\begin_inset Quotes erd
\end_inset
(Section
\begin_inset CommandInset ref
LatexCommand vref
reference "sec:Head-Merge"
\end_inset
) to merge the contents of the
\family typewriter
head
\family default
tag in our template below with the
\family typewriter
head
\family default
element of the master template.
The
\family typewriter
<lift:HomePage.summary>
\family default
and
\family typewriter
<lift:AddEntry.addentry>
\family default
tags are calls to snippet methods.
Snippets are the backing Scala code that provides the actual page logic.
We'll be covering them in the next section.
\end_layout
\begin_layout Standard
\begin_inset listings
lstparams "language=XML"
inline false
status open
\begin_layout Plain Layout
\begin_inset Caption
\begin_layout Plain Layout
The Welcome Template
\begin_inset CommandInset label
LatexCommand label
name "lst:The-welcome-template"
\end_inset
\end_layout
\end_inset
\end_layout
\begin_layout Plain Layout
<lift:surround with="default" at="content">
\end_layout
\begin_layout Plain Layout
<head>
\end_layout
\begin_layout Plain Layout
<!-- include the required plugins -->
\end_layout
\begin_layout Plain Layout
<script type="text/javascript" src="/scripts/date.js"></script>
\end_layout
\begin_layout Plain Layout
<!--[if IE]>
\end_layout
\begin_layout Plain Layout
<script type="text/javascript" src="/scripts/jquery.bgiframe.js">
\end_layout
\begin_layout Plain Layout
</script>
\end_layout
\begin_layout Plain Layout
<![endif]-->
\end_layout
\begin_layout Plain Layout
\end_layout
\begin_layout Plain Layout
<!-- include the jQuery DatePicker JavaScript and CSS -->
\end_layout
\begin_layout Plain Layout
<script type="text/javascript" src="/scripts/jquery.datePicker.js">
\end_layout
\begin_layout Plain Layout
</script>
\end_layout
\begin_layout Plain Layout
<link rel="stylesheet" type="text/css" href="/style/datePicker.css" />
\end_layout
\begin_layout Plain Layout
</head>
\end_layout
\begin_layout Plain Layout
<!-- The contents of this element will be passed to the summary method
\end_layout
\begin_layout Plain Layout
in the HomePage snippet.
The call to bind in that method will
\end_layout
\begin_layout Plain Layout
replace the XML tags below (e.g.
account:name) with the account
\end_layout
\begin_layout Plain Layout
data and return a NodeSeq to replace the lift:HomePage.summary
\end_layout
\begin_layout Plain Layout
element.
-->
\end_layout
\begin_layout Plain Layout
<lift:HomePage.summary>
\end_layout
\begin_layout Plain Layout
<div class="column span-24 bordered">
\end_layout
\begin_layout Plain Layout
<h2>Summary of accounts:</h2>
\end_layout
\begin_layout Plain Layout
<account:entry>
\end_layout