Wiki source code of Live Table component

Version 131.2 by Vincent Massol on 2010/12/10

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc start="2" depth="6"/}}{{/box}}
2
3 = Livetable component =
4
5 == Summary ==
6
7 The **"Livetable"** 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, check out the [[XWiki livetable component video>>http://vimeo.com/4474332]].
8
9 == How to use ==
10
11 The Livetable component is made available in several ways to [[Extensions>>extensions:Main.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 Livetable component is to use the ##livetable## velocity macro, available in all pages of your wiki. With only one call to this macro, you will be able to display a Livetable 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 Livetable, it is possible to instantiate the Livetable 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]]
12
13 === Using the Velocity Livetable macro ===
14
15 Please refer to [[XWiki Livetable Macro>>extensions:Extension.Livetable Macro]] reference.
16
17 === HTML + JavaScript ===
18
19 This is a dynamic component which must me used carefully because of performance issues. The HTML content of the Livetable is automatically updated using Javascript and [[JSON>>http://www.json.org]] code generated with the [[Livetable Macro>>extensions:Extension.Livetable Macro]].
20 The Livetable component is build using the Prototype library as a class representing an AJAX-populated Livetable:
21 * 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 ##ta.showRows()##.
22 * Take a look at the [[code snippet>>extensions:Extension.Refresh Livetable With Changed URL]] for refreshing the Livetable.
23 * 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}}}**.
24
25 === Example ===
26
27 {{warning}}You need the Ratings plugin in your wiki to make the most of the example below.{{/warning}}
28
29 The Livetable component could be extended with a special column containing the ratings of some documents from the wiki.
30 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 Livetable macro with our custom page **TutorialsCode.LiveTableRatings**:
31
32 {{code language="none"}}
33 #set($collist = ["doc.name", "_ratings", "doc.date", "doc.author", "_actions"])
34 #set($colprops = {
35 "doc.name" : { "type" : "text" , "size" : 30, "sortable":true, "filterable":true},
36 "_ratings" : { "sortable":false},
37 "doc.date" : { "type" : "date" },
38 "doc.author" : { "type" : "text", "link" : "author"},
39 "_actions" : { "actions": ["copy","delete","rename","rights"]}
40 })
41 #set($options = { "resultPage":"TutorialsCode.LiveTableRatings",
42 "tagCloud" : true,
43 "translationPrefix" : "xe.index.",
44 "rowCount": 10 })
45 #set($ok = $xwiki.ssx.use("TutorialsCode.LiveTableRatings"))
46 #set($ok = $xwiki.jsx.use("TutorialsCode.LiveTableRatings"))
47 #livetable("alldocs" $collist $colprops $options)
48 {{/code}}
49
50 If we want to display the rated documents from a certain space, e.g. **Tutorials**, the last parameter of the ###gridresultwithfilter## must contain the query we need.
51
52 {{code language="none"}}
53 #includeMacros("TutorialsCode.LiveTableResultsMacros")
54
55 #gridresultwithfilter("" $request.collist.split(",") "" "and doc.space='Tutorials' and doc.name<>'WebHome' and doc.name<>'WebPreferences'")
56 {{/code}}
57
58 The page at **TutorialsCode.LiveTableResultsMacros** should contain a copy of the default code (the page is located at **XWiki.LiveTableResultsMacro**) for the Livetable 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.
59
60 {{code language="none"}}
61 ##
62 ## list ratings
63 ##
64 #macro(grid_ratings $udoc)
65 #set($ratings = "")
66 #set($ratingObj = "")
67 #set($ratingObj = $udoc.getObject("XWiki.AverageRatingsClass"))
68 #if("$!ratingObj" != "")
69 #set($ratings = $ratingObj.get("averagevote"))
70 #end
71 #end
72 {{/code}}
73
74 The continue our extension of this component, we need to add a test for the presence of our custom column to call the ##grid_ratings## macro when generating the JSON:
75
76 {{code language="none"}}
77 ...
78 #elseif($colname=="_images") ,
79 #grid_photolist($udoc)
80 "${colname}" : "${photolist}"
81 #elseif($colname=="_ratings"),
82 #grid_ratings($udoc)
83 "${colname}" : "${ratings}"
84 #else ,
85 ...
86 {{/code}}
87
88 {{info}}Firebug can be a useful tool when testing the JSON code generated.{{/info}}
89
90 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.
91
92 [[image:star-table.gif||style="margin-right: 1em;"]]
93
94 Add an on-demand Javascript Extension with a content which can be parsed and use the code below to enrich your component:
95
96 {{code language="javascript"}}
97 /** Display ratings in the Livetable on row event */
98 document.observe("xwiki:livetable:newrow", function(ev) {
99 $$('._ratings').each(function (el) {
100 // update content
101 var avgvote = 0.0;
102 if (el.innerHTML !== "") {
103 avgvote = parseFloat(el.innerHTML);
104 }
105 var wstyle = 0;
106 if (avgvote > 0) {
107 wstyle = avgvote * 20;
108 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>";
109 } else if(el.innerHTML === ""){
110 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>";
111 }
112 });
113 document.fire("xwiki:livetable:ready", {
114 });
115 });
116 /** Update ratings images on hover event aka mouse over and mouse out.*/
117 document.observe("xwiki:livetable:ready", function(levent) {
118 $$('.xwiki-livetable-display-body tr').each(function (elem) {
119 Event.observe(elem, 'mouseover', function (ev) {
120 var ratings = elem.down('._ratings');
121 if(ratings) {
122 // update default white stars background
123 var elt = ratings.down(2);
124 elt.setStyle({
125 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
126 backgroundPosition: '0% 0%'
127 });
128 // update votes background
129 elt = ratings.down(3);
130 elt.setStyle({
131 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
132 backgroundPosition: '0% 50%'
133 });
134 }
135 });
136 Event.observe(elem, 'mouseout', function (ev) {
137 var ratings = elem.down('._ratings');
138 if(ratings) {
139 // restore default white stars background
140 var elt = ratings.down(2);
141 elt.setStyle({
142 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
143 backgroundPosition: '0% 0%'
144 });
145 // restore votes background
146 elt = elem.down('._ratings').down(3);
147 elt.setStyle({
148 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
149 backgroundPosition: '0% 50%'
150 });
151 }
152 });
153
154 });
155 });
156 {{/code}}
157
158 Also, add some CSS in an on-demand Stylesheet extension with a content which can be parsed to polish the custom column display:
159
160 {{code language="none"}}
161 /* ratings for Livetable */
162 .small-star-rating,
163 .small-star-rating .current-rating {
164 background: url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif")) left -1000px repeat-x;
165 }
166 .small-star-rating{
167 position:relative;
168 width:125px;
169 height:25px;
170 overflow:hidden;
171 list-style:none;
172 margin:0px !important;
173 padding:0px !important;
174 background-position: left top;
175 }
176 .small-star-rating li{
177 display: inline;
178 }
179 .small-star-rating a,
180 .small-star-rating .current-rating{
181 position:absolute;
182 top:0;
183 left:0;
184 text-indent:-1000em;
185 height:25px;
186 line-height:25px;
187 outline:none;
188 overflow:hidden;
189 border: none;
190 }
191 .small-star-rating .current-rating{
192 z-index:1;
193 background-position: left center;
194 }
195 .small-star-rating:hover,
196 .small-star-rating:active,
197 .small-star-rating:focus {
198 background-image: url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"));
199 background-repeat: repeat-x;
200 background-position: top left;
201 }
202 .small-star-rating a.one-star{
203 width:20%;
204 z-index:6;
205 }
206 .small-star-rating a.two-stars{
207 width:40%;
208 z-index:5;
209 }
210 .small-star-rating a.three-stars{
211 width:60%;
212 z-index:4;
213 }
214 .small-star-rating a.four-stars{
215 width:80%;
216 z-index:3;
217 }
218 .small-star-rating a.five-stars{
219 width:100%;
220 z-index:2;
221 }
222 .rating-stars {
223 display: inline;
224 float: left;
225 clear: none;
226 }
227 {{/code}}
228
229 The final result should look like this:
230
231 [[image:livetabel.png||style="margin-right: 1em;"]]

Get Connected