Wiki source code of Live Table component

Version 131.2 by Vincent Massol on 2010/12/10

Hide last authors
Vincent Massol 125.2 1 {{box cssClass="floatinginfobox" title="**Contents**"}}{{toc start="2" depth="6"/}}{{/box}}
2
Vincent Massol 131.2 3 = Livetable component =
fkorteby 27.1 4
ElenaOanaTabaranu 58.1 5 == Summary ==
fkorteby 27.1 6
Vincent Massol 131.2 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]].
ElenaOanaTabaranu 65.1 8
ElenaOanaTabaranu 58.1 9 == How to use ==
fkorteby 27.1 10
Vincent Massol 131.2 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]]
fkorteby 27.1 12
Vincent Massol 131.2 13 === Using the Velocity Livetable macro ===
fkorteby 27.1 14
Vincent Massol 131.2 15 Please refer to [[XWiki Livetable Macro>>extensions:Extension.Livetable Macro]] reference.
fkorteby 27.1 16
ElenaOanaTabaranu 58.1 17 === HTML + JavaScript ===
fkorteby 27.1 18
Vincent Massol 131.2 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:
Oana Florea 130.1 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()##.
Vincent Massol 131.2 22 * Take a look at the [[code snippet>>extensions:Extension.Refresh Livetable With Changed URL]] for refreshing the Livetable.
Oana Florea 130.1 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}}}**.
fkorteby 27.1 24
ElenaOanaTabaranu 58.1 25 === Example ===
Oana Florea 123.1 26
Vincent Massol 125.2 27 {{warning}}You need the Ratings plugin in your wiki to make the most of the example below.{{/warning}}
ElenaOanaTabaranu 103.1 28
Vincent Massol 131.2 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**:
ElenaOanaTabaranu 32.1 31
Vincent Massol 125.2 32 {{code language="none"}}
ElenaOanaTabaranu 55.1 33 #set($collist = ["doc.name", "_ratings", "doc.date", "doc.author", "_actions"])
ElenaOanaTabaranu 57.1 34 #set($colprops = {
ElenaOanaTabaranu 32.1 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"},
ElenaOanaTabaranu 51.1 39 "_actions" : { "actions": ["copy","delete","rename","rights"]}
ElenaOanaTabaranu 57.1 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"))
Oana Florea 122.1 47 #livetable("alldocs" $collist $colprops $options)
ElenaOanaTabaranu 58.1 48 {{/code}}
ElenaOanaTabaranu 32.1 49
Vincent Massol 125.2 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.
ElenaOanaTabaranu 34.1 51
Vincent Massol 125.2 52 {{code language="none"}}
ElenaOanaTabaranu 34.1 53 #includeMacros("TutorialsCode.LiveTableResultsMacros")
ElenaOanaTabaranu 59.1 54
Raluca Stavro 126.1 55 #gridresultwithfilter("" $request.collist.split(",") "" "and doc.space='Tutorials' and doc.name<>'WebHome' and doc.name<>'WebPreferences'")
ElenaOanaTabaranu 60.1 56 {{/code}}
ElenaOanaTabaranu 73.1 57
Vincent Massol 131.2 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.
ElenaOanaTabaranu 90.1 59
Vincent Massol 125.2 60 {{code language="none"}}
ElenaOanaTabaranu 81.1 61 ##
62 ## list ratings
63 ##
ElenaOanaTabaranu 73.1 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
ElenaOanaTabaranu 74.1 72 {{/code}}
ElenaOanaTabaranu 90.1 73
Vincent Massol 125.2 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:
ElenaOanaTabaranu 93.1 75
Vincent Massol 125.2 76 {{code language="none"}}
ElenaOanaTabaranu 75.1 77 ...
ElenaOanaTabaranu 79.1 78 #elseif($colname=="_images") ,
79 #grid_photolist($udoc)
80 "${colname}" : "${photolist}"
ElenaOanaTabaranu 75.1 81 #elseif($colname=="_ratings"),
82 #grid_ratings($udoc)
83 "${colname}" : "${ratings}"
ElenaOanaTabaranu 79.1 84 #else ,
ElenaOanaTabaranu 75.1 85 ...
86 {{/code}}
ElenaOanaTabaranu 87.1 87
Vincent Massol 125.2 88 {{info}}Firebug can be a useful tool when testing the JSON code generated.{{/info}}
ElenaOanaTabaranu 87.1 89
ElenaOanaTabaranu 107.1 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.
ElenaOanaTabaranu 75.1 91
ElenaOanaTabaranu 109.1 92 [[image:star-table.gif||style="margin-right: 1em;"]]
ElenaOanaTabaranu 108.1 93
ElenaOanaTabaranu 107.1 94 Add an on-demand Javascript Extension with a content which can be parsed and use the code below to enrich your component:
95
Vincent Massol 125.2 96 {{code language="javascript"}}
Vincent Massol 131.2 97 /** Display ratings in the Livetable on row event */
ElenaOanaTabaranu 98.1 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 });
ElenaOanaTabaranu 75.1 153
ElenaOanaTabaranu 98.1 154 });
155 });
156 {{/code}}
157
ElenaOanaTabaranu 110.1 158 Also, add some CSS in an on-demand Stylesheet extension with a content which can be parsed to polish the custom column display:
Vincent Massol 121.2 159
Vincent Massol 125.2 160 {{code language="none"}}
Vincent Massol 131.2 161 /* ratings for Livetable */
ElenaOanaTabaranu 98.1 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}}
ElenaOanaTabaranu 111.1 228
229 The final result should look like this:
ElenaOanaTabaranu 114.1 230
ElenaOanaTabaranu 113.1 231 [[image:livetabel.png||style="margin-right: 1em;"]]

Get Connected