Wiki source code of Live Table component

Version 124.1 by Oana Florea on 2009/09/24

Show last authors
1 = Live Table component =
2
3 {{velocity filter="indent"}}
4 {{html clean="false" wiki="true"}}
5 #warning("This document is a draft.")
6 #warning("This section documents a feature that is only available starting with XWiki Enterprise 1.9M2.")
7 {{/html}}
8 {{/velocity}}
9
10 {{toc start=2 depth=6 numbered=false scope=page /}}
11
12 == Summary ==
13
14 The **"Live Table"** component is a dynamic table loading data lazily using ajax requests as the user browse the table, in order to scale easily the display of very large amounts of data. Users can browse the table thanks to a pagination system. Filters on columns are available to search for specific entries. Columns can be made sortable in both direction. For a demonstration of the main capabilities of the live table component check out this [[video>>http://vimeo.com/4474332]].
15
16 == How to use ==
17
18 The Live Table component is made available in several ways to [[Applications>>code:Applications.WebHome]] developers and developers of the [[XWiki platform and products>>dev:Main.WebHome]], depending on their specific needs. The simplest, and most of the times preferred, way to embed a Live Table component is to use the <tt>livetable</tt> velocity macro, available in all pages of your wiki. With only one call to this macro, you will be able to display a live table of the data of your choice! For more specific needs, in the cases you need more control on the table behavior, or to build another component on top of the live table, it is possible to instantiate the live table from JavaScript. In this case, you, as opposed to the velocity macro, you will need to construct the HTML elements the JavaScript component expects yourself, either from JavaScript, either writing the [[HTML directly in your wiki page>>platform:Main.XWikiSyntax]]
19
20 === Using the Velocity livetable macro ===
21
22 Please refer [[Live Table Macro>>code:Macros.LiveTableMacro]] reference.
23
24 === HTML + JavaScript ===
25
26 This is a dynamic component which must me used carefully because of performance issues. The HTML content of the Live Table is automatically updated using Javascript and [[JSON>>http://www.json.org]] code generated with the [[Live Table Macro>>code:Macros.LiveTableMacro]].
27 The Live Table component is build using the Prototype library as a class representing an AJAX-populated live table. The default variable name generated in XWiki Enterprise is **ta** and you can use it, for example to manipulate the display of the component's rows by calling <tt>ta.showRows()</tt>.
28
29 For more details, check the Javascript file **livetable.js** on your wiki at **{{{http://localhost:8080/xwiki/bin/skin/resources/js/xwiki/table/livetable.js}}}**.
30
31 === Example ===
32
33 {{velocity filter="indent"}}
34 {{html clean="false" wiki="true"}}
35 #warning("You need the Ratings plugin in your wiki to make the most of the example below.")
36 {{/html}}
37 {{/velocity}}
38
39 The Live Table component could be extended with a special column containing the ratings of some documents from the wiki.
40 The first step would be to generate the JSON code of the column we want to add. In order to achieve this goal we need to modify the result page of the velocity live table macro with our custom page **TutorialsCode.LiveTableRatings**:
41
42 {{code}}
43
44 #set($collist = ["doc.name", "_ratings", "doc.date", "doc.author", "_actions"])
45
46 #set($colprops = {
47 "doc.name" : { "type" : "text" , "size" : 30, "sortable":true, "filterable":true},
48 "_ratings" : { "sortable":false},
49 "doc.date" : { "type" : "date" },
50 "doc.author" : { "type" : "text", "link" : "author"},
51 "_actions" : { "actions": ["copy","delete","rename","rights"]}
52 })
53 #set($options = { "resultPage":"TutorialsCode.LiveTableRatings",
54 "tagCloud" : true,
55 "translationPrefix" : "xe.index.",
56 "rowCount": 10 })
57 #set($ok = $xwiki.ssx.use("TutorialsCode.LiveTableRatings"))
58 #set($ok = $xwiki.jsx.use("TutorialsCode.LiveTableRatings"))
59 #livetable("alldocs" $collist $colprops $options)
60 {{/code}}
61
62 If we want to display the rated documents from a certain space, e.g. **Tutorials**, the last parameter of the <tt>#gridresultwithfilter</tt> must contain the query we need.
63
64 {{code}}
65 #includeMacros("TutorialsCode.LiveTableResultsMacros")
66
67 #gridresultwithfilter("" $request.collist.split(",") "" "doc.space='Tutorials' and doc.name<>'WebHome' and doc.name<>'WebPreferences'")
68
69 {{/code}}
70
71 The page at **TutorialsCode.LiveTableResultsMacros** should contain a copy of the default code (the page is located at **XWiki.LiveTableResultsMacro**) for the live table result page. The next step implies extracting the rating information from the wiki pages located the **Tutorials** space. We add a new velocity macro which will test the presence of the rating object with class **XWiki.AverageRatingsClass** and extract the rating value.
72
73 {{code}}
74 ##
75 ## list ratings
76 ##
77 #macro(grid_ratings $udoc)
78 #set($ratings = "")
79 #set($ratingObj = "")
80 #set($ratingObj = $udoc.getObject("XWiki.AverageRatingsClass"))
81 #if("$!ratingObj" != "")
82 #set($ratings = $ratingObj.get("averagevote"))
83 #end
84 #end
85 {{/code}}
86
87 The continue our extension of this component, we need to add a test for the presence of our custom column to call the <tt>grid_ratings</tt> macro when generating the JSON:
88
89 {{code}}
90 ...
91 #elseif($colname=="_images") ,
92 #grid_photolist($udoc)
93 "${colname}" : "${photolist}"
94 #elseif($colname=="_ratings"),
95 #grid_ratings($udoc)
96 "${colname}" : "${ratings}"
97 #else ,
98 ...
99 {{/code}}
100
101 {{velocity filter="indent"}}
102 {{html clean="false" wiki="true"}}
103 #info("Firebug can be a useful tool when testing the JSON code generated.")
104 {{/html}}
105 {{/velocity}}
106
107 Transforming the rating information to a nice star display requires using Javascript to replace the content of that column with the proper HTML. Attach the image below to your **TutorialsCode.LiveTableRatings** page to change the default white background when hovering on the stars.
108
109 [[image:star-table.gif||style="margin-right: 1em;"]]
110
111
112 Add an on-demand Javascript Extension with a content which can be parsed and use the code below to enrich your component:
113
114 {{code}}
115 /** Display ratings in the live table on row event */
116 document.observe("xwiki:livetable:newrow", function(ev) {
117 $$('._ratings').each(function (el) {
118 // update content
119 var avgvote = 0.0;
120 if (el.innerHTML !== "") {
121 avgvote = parseFloat(el.innerHTML);
122 }
123 var wstyle = 0;
124 if (avgvote > 0) {
125 wstyle = avgvote * 20;
126 el.innerHTML="<div class='avg-rating'><div class='rating-stars'><ul class='small-star-rating'><li style='width: " + wstyle +"%;' class='current-rating'/><li><a class='one-star' href='#' onclick='return false;'>1</a></li><li><a class='two-stars' href='#' onclick='return false;'>2</a></li><li><a class='three-stars' href='#' onclick='return false;'>3</a></li><li><a class='four-stars' href='#' onclick='return false;'>4</a></li><li><a class='five-stars' href='#' onclick='return false;'>5</a></li></ul></div></div>";
127 } else if(el.innerHTML === ""){
128 el.innerHTML="<div class='avg-rating'><div class='rating-stars'><ul class='small-star-rating'><li style='width: 0%;' class='current-rating'/><li><a class='one-star' href='#' onclick='return false;'>1</a></li> <li><a class='two-stars' href='#' onclick='return false;'>2</a></li><li><a class='three-stars' href='#' onclick='return false;'>3</a></li><li><a class='four-stars' href='#' onclick='return false;'>4</a></li><li><a class='five-stars' href='#' onclick='return false;'>5</a></li></ul></div></div>";
129 }
130 });
131 document.fire("xwiki:livetable:ready", {
132 });
133 });
134 /** Update ratings images on hover event aka mouse over and mouse out.*/
135 document.observe("xwiki:livetable:ready", function(levent) {
136 $$('.xwiki-livetable-display-body tr').each(function (elem) {
137 Event.observe(elem, 'mouseover', function (ev) {
138 var ratings = elem.down('._ratings');
139 if(ratings) {
140 // update default white stars background
141 var elt = ratings.down(2);
142 elt.setStyle({
143 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
144 backgroundPosition: '0% 0%'
145 });
146 // update votes background
147 elt = ratings.down(3);
148 elt.setStyle({
149 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
150 backgroundPosition: '0% 50%'
151 });
152 }
153 });
154 Event.observe(elem, 'mouseout', function (ev) {
155 var ratings = elem.down('._ratings');
156 if(ratings) {
157 // restore default white stars background
158 var elt = ratings.down(2);
159 elt.setStyle({
160 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
161 backgroundPosition: '0% 0%'
162 });
163 // restore votes background
164 elt = elem.down('._ratings').down(3);
165 elt.setStyle({
166 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
167 backgroundPosition: '0% 50%'
168 });
169 }
170 });
171
172 });
173 });
174 {{/code}}
175
176 Also, add some CSS in an on-demand Stylesheet extension with a content which can be parsed to polish the custom column display:
177
178 {{code}}
179 /* ratings for live table */
180 .small-star-rating,
181 .small-star-rating .current-rating {
182 background: url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif")) left -1000px repeat-x;
183 }
184 .small-star-rating{
185 position:relative;
186 width:125px;
187 height:25px;
188 overflow:hidden;
189 list-style:none;
190 margin:0px !important;
191 padding:0px !important;
192 background-position: left top;
193 }
194 .small-star-rating li{
195 display: inline;
196 }
197 .small-star-rating a,
198 .small-star-rating .current-rating{
199 position:absolute;
200 top:0;
201 left:0;
202 text-indent:-1000em;
203 height:25px;
204 line-height:25px;
205 outline:none;
206 overflow:hidden;
207 border: none;
208 }
209 .small-star-rating .current-rating{
210 z-index:1;
211 background-position: left center;
212 }
213 .small-star-rating:hover,
214 .small-star-rating:active,
215 .small-star-rating:focus {
216 background-image: url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"));
217 background-repeat: repeat-x;
218 background-position: top left;
219 }
220 .small-star-rating a.one-star{
221 width:20%;
222 z-index:6;
223 }
224 .small-star-rating a.two-stars{
225 width:40%;
226 z-index:5;
227 }
228 .small-star-rating a.three-stars{
229 width:60%;
230 z-index:4;
231 }
232 .small-star-rating a.four-stars{
233 width:80%;
234 z-index:3;
235 }
236 .small-star-rating a.five-stars{
237 width:100%;
238 z-index:2;
239 }
240 .rating-stars {
241 display: inline;
242 float: left;
243 clear: none;
244 }
245 {{/code}}
246
247 The final result should look like this:
248
249 [[image:livetabel.png||style="margin-right: 1em;"]]

Get Connected