Wiki source code of Live Table component

Version 128.1 by Thibaut Camberlin on 2009/11/12

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

Get Connected