Version 6.1 by Andy Tripp on 2020/06/10

Show last authors
1 {{box cssClass="floatinginfobox" title="**Contents**"}}
2 {{toc/}}
3 {{/box}}
4
5 This tutorial will show you how to build a Contact Manager application.  It's very similar to the [[Documentation.DevGuide.Tutorials.FAQTutorial.FAQTutorialManual]] tutorial. The only difference (so far) is that the FAQ tutorial involves a very trivial object: a FAQ object contains just two things: a "question" and an "answer", while this example uses a Person object that has more fields ("name", "age", "sex", etc.) .This is a very simple application that makes use of XWiki's [[classes, properties, and objects>>platform:DevGuide.DataModel||anchor="HXWikiClasses2CObjects2CandProperties"]]. It also uses a technique that you may frequently use as the basis for several different kinds of applications.
6
7 Also, this tutorial explains things a little differently than the FAQ tutorial. If something here doesn't make sense to you, try going through the FAQ tutorial and maybe it will make more sense.
8
9 = Prerequisites for following the tutorial =
10
11 You should have [[installed XWiki>>platform:AdminGuide.Installation]] and have a [[basic understanding of how to use it>>platform:Features.WebHome]].
12
13 All through this tutorial you should refer to the [[XWiki Data Model>>platform:DevGuide.DataModel]] for information on XWiki's data model. You might also use the [[XWiki Scripting Guide>>platform:DevGuide.Scripting]] to get you started with scripting in XWiki and manipulating XWiki objects. In addition, this tutorial will introduce the concepts of Authoring Templates and Page Design Sheets, patterns that you will find particularly useful in creating XWiki applications. Completing this tutorial is a recommended prerequisite for anyone who wants to build custom applications on the XWiki engine. And by "custom application", we mean a huge variety of web applications.
14
15 {{warning}}
16 Make sure that your user is an [[Advanced user>>platform:Features.PageEditing||anchor="HAdvancedMode"]] before following this tutorial since you'll need for example to use the wiki editor (##Wiki > Edit## menu).
17 {{/warning}}
18
19 = Application Overview =
20
21 The Person Manager application will allow users to create a "Person object" by entering data (name, age, sex, etc) into a simple form field and then submitting the form. Let's sketch out what roughly what those two pages should look like on a "napkin", using [[Balsamiq>>https://balsamiq.com/]]:
22
23 image:personDialog.PNG
24
25 Our page won't look exactly like that, but the point is that a website user can create a Person by filling out a "form" page like this.
26
27 The Person then appears in a table with all other Person objects that have been previously created. Users can click on the Person in the table to see all the information about the Person. He may also edit that information or delete the Person. The table might look something like this:
28
29 image:personTable.PNG
30
31 When the user clicks on a row in the table, he will get a page that shows the information about the Person, which will look similar to the "Create Person" page, but without the ability to change anything.
32
33 == Objects Overview And Terminology ==
34 Next, let's summarize how "Objects" work. For full details, see [[Data Model>>https://www.xwiki.org/xwiki/bin/view/Documentation/DevGuide/DataModel/#HXWikiClasses2CObjects2CandProperties]]. There is nothing fancy happening here, but it's important to get our terminology straight.
35
36 A Person is an example of some "Object" or "class". We will use XWiki to define what "fields" are in a "Person" object. For example, we will say that there's a field called "name" of type "String". There's also a field called "age" of type "Number", and an "address" field that's type "TextArea" (a string that can be multiple lines.
37
38 When a user creates a new Person, we call that an "instance" of the "class". So we might say something like "I've created an instance of the Person class, with name 'Joe Smith'". And we would say that our table shows all the instances of the Person class. And instances can not only be created, but also edited or deleted.
39
40 == Overview Of What We Will Do ==
41 In this tutorial, we'll do the following steps:
42
43 * Define our Person class with all it's fields, using the XWiki "Class Editor".
44 * Define how a Person instance should be displayed, by creating a "Person Sheet" page.
45 * Create a Template and a Template Provider (whatever they are) for our Person class.
46 * Create a web page containing our table of people.
47 * Create a web page that displays a Person instance.
48
49 Note that we don't need to define a page for creating or editing a Person, just a page for *displaying* a Person. XWiki will automatically do that for you!
50
51 Once we are done with these steps, our application will be finished. A user of our website can see the table of Person objects, view the page for existing person, add a new Person, edit an existing Person, or delete a Person.
52
53 = Go to the Class Editor Wizard =
54
55 Five pages, which collectively make up a [[XClass application>>extensions:Extension.XClass Application]] (a.k.a Class Wizard or Class Editor Wizard), have been developed to assist you in this process. Those page are technical pages hidden by default. To navigate to the wizard home page, go to your profile page, select the Preferences tab, edit the page and choose to view Hidden Documents. Enter a search query for the keyword "XWikiClasses". This should return a document called ##XWikiClasses## in the ##XWiki## space (i.e. ##XWiki.XWikiClasses##). (Note that the //title// of this document is "Data types".) This is the homepage of the class wizard creator: you are now ready to start building your Person Manager application.
56
57 = Create the Person Class =
58
59 * On the Class Editor wizard entry page (XWiki.XWikiClasses), under the heading "Create a new data type", in the "Title" field, enter ##Person## as the name of the page to create:(((
60 {{image reference="CreateANewClass1.png"/}}
61 )))
62 * As you can see in the Breadcrumb below the new page will be created at location ##XWiki > FAQ##. In practice the Class Wizard will automatically prefix the page name with ##Class## (you could also enter ##FAQClass## as the page name directly).
63 * Now it would be nice to have it created in a new location such as ##FAQ > FAQ Class##. Since the ##FAQ## parent doesn't exist we cannot use the Tree picker button. Thus click the Pencil button as shown in the following image and replace ##XWiki## by ##FAQ##.(((
64 {{image reference="CreateANewClass2.png"/}}
65 )))
66 * In technical terms you're creating a page named ##FAQClass## (with a title of "FAQ Class") located in a space also called ##FAQ## and thus the technical reference is ##FAQ.FAQClass##.
67 * Click the "Create this Class" button. You should then see a page with the following content:(((
68 {{code language="none"}}
69 {{velocity}}
70 ## Replace the default space with the space where you want your documents to be created.
71 ## Replace the default parent with the one of your choice and save the document.
72 ##
73 #set($defaultSpace = $doc.space)
74 #set($defaultParent = $doc.fullName)
75 {{/velocity}}
76 {{/code}}
77 )))
78
79 In the code, change the word "$doc.space" with the name of the space where you want you FAQ pages to be created as the commented instructions in the page code suggest.
80 The line of code should look like this:
81
82 {{code language="none"}}
83 #set($defaultSpace = 'FAQ')
84 {{/code}}
85
86 You can also change the default parent of the new FAQ documents that are going to be created. To do so, replace the "$defaultParent" variable with the name of your document.
87 The line of code should look like this:
88
89 {{code language="none"}}
90 #set($defaultParent = 'FAQ.WebHome')
91 {{/code}}
92
93 Click the "Save & View" button. The class is now created and you should be looking at a page titled "Class: FAQ" that looks like this:
94
95 {{image reference="FAQClass1.PNG"/}}
96
97 = Add Properties to the Class =
98
99 Under the page title, you should see the words "The class does not have any properties yet. You can use the //__class editor__// to define them." Let's just follow those instructions!
100
101 * Click on the 'class editor' link
102 * Note that the link trail in the header is something like "Wiki Home / FAQ / FAQ Class". This shows you that you are indeed on the FAQ class page in Class edit mode.
103
104 In our document, we'll store both a //question// and an //answer//. So we need to create a property for each of them.
105
106 * Enter the text //question// in the "name" field
107 * Choose a TextArea type for the property and then click on "Add". The TextArea will ultimately give us a multi-line text field in our authoring template.(((
108 {{image reference="AddQuestionProperty.PNG"/}}
109 )))
110 * Click on the "+" icon to expand the options for the newly created property
111 * Change the value of the "Pretty Name" field to "Question"(capital Q):(((
112 {{image reference="QuestionProperty.PNG"/}}
113 )))
114 * Now create another property called //answer// the same way that you did for the previous "question" property (choose TextArea for the property type)
115 * Expand it from the property list and change the value of the "Pretty Name" field to "Answer"
116 * When you are done adding and configuring the properties, click the "Save & View" button
117
118 = Create the Page Design Sheet =
119
120 * After the previous step you are now on the FAQClass page which should look like this:(((
121 {{image reference="FAQClass2.PNG"/}}
122 )))
123 * Click the first button ("Create the document sheet") to create the document sheet (the Page Design Sheet). This sheet determines how your page's objects will be rendered to the user. The document is automatically created.
124 * You should see a warning message with the text "The sheet is not bound to the class so it won't be applied automatically when a page that has an object of this class is displayed". Click the "Bind the sheet to the class" link that appears after the text. **What this does is important**:
125 ** It adds an object of type ##XWiki.ClassSheetBinding## to the ##FAQ.FAQClass" document. Basically it ties the FAQ Class to the Sheet.##
126 ** **It's because of this object that users will be sent to form edition mode when editing FAQ entries**
127 * Now click on "View the sheet document". This takes you to the ##FAQ.FAQSheet## page which you can edit in wiki mode and see its default content:(((
128 {{code language="none"}}
129 {{velocity}}
130 ## You can modify this page to customize the presentation of your object.
131 ## At first you should keep the default presentation and just save the document.
132
133 ## We have to use wiki=true because $doc.display() can produce wiki syntax.
134 {{html wiki="true" clean="false"}}
135 ## Load the JavaScript code required to make the object properties editable in-place.
136 #set ($discard = $xwiki.jsfx.use('uicomponents/edit/editableProperty.js', {
137   'forceSkinAction': true,
138   'language': $xcontext.locale
139 }))
140 #set ($editing = $xcontext.action == 'edit')
141 ## The object to display.
142 #set ($xobject = $doc.getObject('FAQ.FAQClass'))
143 ## The class that describes the object properties.
144 #set ($xclass = $xobject.xWikiClass)
145 ## Make sure the following display* method calls use the right object.
146 #set ($discard = $doc.use($xobject))
147 ## Using the xform vertical form layout.
148 <div class="xform">
149   <dl>
150   #foreach ($property in $xclass.properties)
151     <dt #if (!$editing && $hasEdit)
152         class="editableProperty"
153         #set ($xobjectPropertyReference = $xobject.getProperty($property.name).reference)
154         data-property="$escapetool.xml($services.model.serialize($xobjectPropertyReference))"
155         data-property-type="object"#end>
156       ## This must match the id generated by the $doc.display() method below.
157       #set ($propertyId = "${xclass.name}_${xobject.number}_$property.name")
158       <label#if ($editing) for="$escapetool.xml($propertyId)"#end>
159         $escapetool.xml($property.translatedPrettyName)
160       </label>
161       ## Support for specifying a translation key as hint in the property definition.
162       <span class="xHint">$!escapetool.xml($services.localization.render($property.hint))</span>
163     </dt>
164     <dd>$doc.display($property.name)</dd>
165   #end
166   #if (!$xclass.properties || $xclass.properties.size() == 0)
167     ## Keep the empty definition term in order to have valid HTML.
168     <dt></dt>
169     <dd>$escapetool.xml($services.localization.render('xclass.defaultObjectSheet.noProperties'))</dd>
170   #end
171   </dl>
172 </div>
173 {{/html}}
174 {{/velocity}}
175 {{/code}}
176
177 Let's take a moment now and analyze this code:
178
179 * first, it loads the JavaScript required for in-place editing
180 * then it retrieves the FAQ object from the current page and the FAQ class defintion
181 * then it iterates through all the FAQ class properties displaying:
182 ** the translated pretty name
183 ** the translated hint
184 ** the value from the FAQ object in view mode, or the form field used to input or modify the value in edit mode
185 * it uses a definition list to display the FAQ object, following the [[Vertical Form>>xwiki:Documentation.DevGuide.FrontendResources.VerticalForms.WebHome]] layout
186
187 As we mentioned, XWiki provides a mechanism that helps us create sheets used for both view and edit mode. This is the ##display## function used in the line:
188
189 {{code language="none"}}
190 <dd>$doc.display($property.name)</dd>
191 {{/code}}
192
193 It detects the current mode (edit or view) and displays the property referenced by its argument as the mode dictates:
194
195 * in view mode it will display the value of the property
196 * in edit mode it will display a form field that will allow the user to edit it
197
198 This way we can use a single Design Sheet to both display and edit our FAQ entries. See the [[XWiki API reference>>platform:DevGuide.API]] and [[XWiki Scripting>>platform:DevGuide.Scripting]] pages for more details about this.
199 )))
200 * Click "Save & View"
201
202 = Create the Authoring Template =
203
204 * Navigate back to the ##FAQ.FAQClass## document (you can use the arrows in the breadcrumb to do so). The document should look like this:(((
205 {{image reference="FAQClass3.PNG"/}}
206 )))
207 * Click on the "Create the document template" button. The Authoring Template will be automatically created.
208
209 Note that earlier, we changed the space name preceding the page name because we wanted all of our FAQ pages to reside in a space named FAQ. Remember that all our documents will be copies of the Authoring Template used as a prototype so the content will be copied in all our FAQs documents and will execute the Design Sheet code in the context of the current document. See the [[dedicated page>>platform:DevGuide.IncludeInVelocity]] for more information regarding this technique.
210
211 Now we need to associate the prototype object with this document to turn it into a true authoring template:
212
213 * If you're on the template page, navigate back to the ##FAQ.FAQClass## document.
214 * At the bottom of the page, look for the following warning message: "The template does not contain an object of type FAQClass. Add a FAQ object to the template »."
215 * Click on "Add a FAQ object to the template »":(((
216 {{image reference="FAQObject.png"/}}
217 )))
218
219 Next, we want to remove the title for the newly created template:
220
221 * Navigate to the ##FAQ.FAQTemplate## document (you can click on the "View the template page (FAQ / FAQ Template)" link for doing that for example.
222 * Edit this document in Wiki mode
223 * Inside the Title field you have "FAQ Template" written -> delete this text
224 * Save & View
225
226 This step is needed so that all of our future entries don't have "FAQ Template" as their title.
227
228 Congratulations: you just created an Authoring Template! You're almost done now.
229
230 {{image reference="FAQClass4.PNG"/}}
231
232 = Create the Template Provider =
233
234 After the template was created and the object was added, a new section appears with a button to create a template provider to use the existing template.
235 The template provider is created with some default values, but those can be updated to match the needs.
236
237 {{gallery}}
238 image:3-missingTemplateProvider.png
239 image:4-addedTemplateProvider.png
240 image:5-templateProviderView.png
241 {{/gallery}}
242
243
244
245 = Create a home page for the FAQ application =
246
247 You want your users to be able to see a list of all existing questions and answers and to add new questions. The best way to do this is to put the FAQ application in its own space and to use that space's homepage to display existing questions.
248
249 Thus we now need to create the ##FAQ.WebHome## page
250
251 * Click on "FAQ" in the breadcrumb to navigate to ##FAQ.WebHome## and notice that the page doesn't exist.
252 * Edit it in wiki mode
253 * Type in the title "FAQs"
254
255 == Displaying existing FAQ entries ==
256
257 You have 2 options when it comes to displaying existing FAQ entries:
258
259 1. Use the livetable component
260 1. Write custom code in order to display them
261
262 === Using the Livetable component ===
263
264 In this section, we will show how to use the [[Livetable Macro>>extensions:Extension.Livetable Macro]] to display the existing questions and answers.
265
266 The livetable component will give users the ability to easily list and filter through existing FAQ documents. The macro is made of 3 parts:
267
268 * The list of columns: for each entry, we will display the question, the date when it was created and a special column that lets users quickly modify entries
269 * The properties of each column: for each column, we will define how it should be displayed, whether it should link to the entry and whether it should be filterable
270 * The livetable options: those are options related to the display of the livetable (in this case we will to display a tag cloud and 10 rows by default)
271
272 Here is the resulting code:
273
274 {{code language="none"}}
275 {{velocity}}
276 #set($columns = ["question", "doc.creationDate", "_actions"])
277 #set($columnsProperties = {
278     "question" : { "type" : "text", "link" : "view", "html" : "true", "sortable":true },
279     "_actions" : {"actions": ["edit","delete"]}
280 })
281 #set($options = {
282    "className":"FAQ.FAQClass",
283    "translationPrefix" : "faq.",
284    "tagCloud" : true,
285    "rowCount": 10
286 })
287 #livetable("faq" $columns $columnsProperties $options)
288 {{/velocity}}
289 {{/code}}
290
291 * Copy this code and paste it as Wiki content (inside ##FAQ.WebHome##)
292 * Click "Save and View"
293 * New FAQ entries will now be displayed on the page once you create them
294
295 The ##FAQ.WebHome## page should look similar to this:
296
297 {{image reference="FAQsLivetable.png"/}}
298
299 Notice how there are some translation keys displayed inside the livetable. Let's create a translations document and change those keys to actual text:
300
301 * Create a new page inside the FAQ space called Translations, i.e. at ##FAQ.Translations## (using the "+" button)
302 * Edit it in Wiki mode and paste this content inside:(((
303 {{code language="none"}}
304 faq.question=Question
305 faq.doc.creationDate=Creation Date
306 faq._actions=Actions
307 {{/code}}
308 )))
309 * Click "Save & View"
310 * Edit it again in Object mode and add a new ##XWiki.TranslationDocumentClass## object to mark the page as a page containing translations. Make sure to select the right scope. Using "Global" means the translations would be visible to all wikis (and it requires having Programming Rights!) and "Wiki" means it's visible to the current wiki only. Choose "Wiki" as the scope.
311 * Click "Save & View" again
312
313 Now the ##FAQ.WebHome## page should look like this (notice the translations instead of the keys):
314
315 {{image reference="FAQsLivetableWithTranslations.png"/}}
316
317 === Using custom code ===
318
319 You will need to write the following code:
320
321 * A XWQL query that will find all your FAQ documents. Check the [[Query API documentation>>extensions:Extension.Query Module]] to know more about it.
322 ** The XWQL query looks for all documents that have a ##FAQ.FAQClass## object other than the template
323 ** If no document has been created yet, a warning message is displayed
324 * A piece of velocity code to display all those documents
325 ** The velocity code loops in that list
326 ** For each item, the full document is loaded in memory so that values can be retrieved from it
327 ** For each document, the question is retrieved and displayed as a link towards the FAQ entry
328
329 Here is the resulting code:
330
331 {{code language="none"}}
332 = Existing FAQ entries =
333
334 {{velocity}}
335 #set($xwql = "from doc.object(FAQ.FAQClass) as faq where doc.fullName <> 'FAQ.FAQTemplate'")
336 #set($results = $services.query.xwql($xwql).execute())
337 #if($results.empty)
338   No FAQ has been created yet!
339 #else
340   #foreach ($item in $results)
341     #set($faq = $xwiki.getDocument($item))
342     * [[${faq.display("question").replace("<p>", "").replace("</p>", "")}>>${item}]]
343   #end
344 #end
345 {{/velocity}}
346 {{/code}}
347
348 * Copy this code and paste it as Wiki content inside ##FAQ.WebHome##
349 * Click "Save and View"
350 * New FAQ entries will now be displayed on the page once you create them
351
352 The ##FAQ.WebHome## page should look similar to this:
353
354 {{image reference="FAQsCustomCode.png"/}}
355
356 == Creating new FAQ entries ==
357
358 There are 2 ways for you to let your users create new FAQ entries:
359
360 1. Declare the FAQ as a template
361 1. Add a custom creation form
362
363 === Using a Template ===
364
365 You will have to define a template provider [[as explained on this page>>extensions:Extension.Administration Application||anchor="HCreatethetemplateprovider"]]
366
367 Go to your wiki's administration interface, in the "Templates" section (Administration -> Content -> Templates). Create a new template provider in the
368 ##FAQ## space and name it ##FAQTemplateProvider##
369
370 You can then use the following values:
371
372 * Provider name: ##FAQ Template Provider##
373 * Template name: ##New FAQ entry##
374 * Template to use: ##FAQ.FAQTemplate##
375
376 If you'd like, you can restrict FAQ entries so that they're created only in the ##FAQ## space. Once you're done, click "Save & View". Your template is now ready to be used! Users who click on the "Add >> Page" button will now have the option to create a new page using the FAQ template.
377
378 === Custom creation form ===
379
380 If you choose this option, you will need to write some code to let your users create new FAQ entries. To do this, you will have to create a form in which the user can enter the name of the questions she wants to create. Once typed in, the form calls the same page to trigger the new document creation based on the parameters entered by the user:
381
382 * The first part of the code checks whether the page has a parameter. If so:
383 ** The name of the document that will be created is computed
384 ** A check is done to verify the document doesn't exist yet
385 ** If everything's ok, the user is sent to the new document in inline edition mode
386 * The second part of the code is the actual FAQ creation form
387 ** It builds the name of the document to create it in the ##FAQ## space
388 ** It sets the document parent as being the current document
389 ** It defines the template to use to create the new document
390
391 {{code language="none"}}
392 {{velocity}}
393 #if("$!request.docName" != '')
394   ## Request for creating a new instance
395   #set($docName = ${request.docName})
396   #set($targetDocName = "${request.spaceName}.${docName}")
397   #if(!$xwiki.exists($targetDocName) && $xwiki.hasAccessLevel('edit', $xcontext.user, $targetDocName))
398     $response.sendRedirect($xwiki.getURL($targetDocName, 'inline', "template=${escapetool.url($request.template)}&parent=${escapetool.url($request.parent)}"))
399     ## Stop processing, since we already sent a redirect.
400     #stop
401   #end
402 #end
403
404 = Add a new question =
405
406 #if("$!targetDocName" != '' && $xwiki.exists($targetDocName))
407   {{warning}}The target document already exists. Please choose a different name, or [[view the existing document>>$targetDocName]]{{/warning}}
408 #elseif("$!targetDocName" != '')
409   {{warning}}You don't have permission to create that document{{/warning}}
410 #end
411
412 {{html}}
413   <form action="" id="newdoc" method="post">
414     <div>
415       <input type="hidden" name="parent" value="${doc.fullName}"/>
416       <input type="hidden" name="template" value="FAQ.FAQTemplate"/>
417       <input type="hidden" name="sheet" value="1"/>
418       <input type="hidden" name="spaceName" value="FAQ"/>
419       Document: <input type="text" name="docName" value="Enter your question here" class="withTip" size="50"/>
420       <span class="buttonwrapper"><input type="submit" value="Create this FAQ" class="button"/></span>
421     </div>
422   </form>
423 {{/html}}
424 {{/velocity}}
425 {{/code}}
426
427 * Copy this code and paste it as Wiki content inside ##FAQ.WebHome##, below the code that's already there
428 * Click "Save and View"
429 * A form to create new FAQ entries is now available on the page:(((
430 {{image reference="FAQsWithForm.png"/}}
431 )))
432
433 = Test the Application =
434
435 Now let's just create a new document in our application to test it out.
436
437 If you previously chose to use a "Custom creation form" for creating new FAQ entries, follow these steps:
438
439 * Go to ##FAQ.WebHome##
440 * Below the "Add a new question" header, enter a question (which will also be used as the document title) in the //Document// field
441 * Click //Create this FAQ//
442 * You can then enter your question in longer form using the //Question// field on the template, like this:(((
443 {{image reference="FAQSheetEdit.PNG"/}}
444 )))
445 * Click //Save & View// and then you will see the newly created document, like this:(((
446 {{image reference="FAQSheetView.PNG"/}}
447 )))
448 * Go back to the ##FAQ.WebHome## page (you can use the breadcrumbs) to see the list of existing questions(((
449 {{image reference="FAQsWithEntry.png"/}}
450 )))
451
452 = Conclusion =
453
454 This tutorial has taught you how to use the Class Wizard app and it has detailed the concepts of classes, objects and properties and introduced the authoring templates and page design sheets.
455
456 You may also have learned a little bit about Velocity scripting in documents. You can use these basic concepts to build custom applications at the document or presentation layer of XWiki without having to compile or deploy code.
457
458 As always, please take the time to make this document better for other users if you find ways that it can be improved as you read it for the first time.

Get Connected