Extension Point | Surf Dashlets (It is recommended to use Aikau Dashlets instead) |
---|---|
Architecture Information | Share Architecture. |
Description | The following picture shows a User Dashboard with a number of Dashlets, such as My Sites and My Tasks:
You can implement your own custom dashlets that can be added to either the User Dashboard or the Site Dashboard. Creating a Surf dashlet is the same thing as creating a Surf web script. Before continuing read through the Surf Web Scripts section.The controller of the dashlet presentation web script will usually call a Data web script on the repository side to get the content that should be displayed in the dashlet. Let's look at an example of a custom dashlet, the following picture shows a Member Directory dashlet that can be used to search the User/People directory:
This dashlet is implemented using a presentation web script, which in turn uses a Data web script to get the people matching the Search Filter parameter. The following picture illustrates:
In this case we have a Spring Surf Web Script on the Share side that will, in its controller, call a repository web script (that is Data Web Script) to get a list of person records in JSON format. The controller looks something like this: // Get args from the Share page URL var filterValue = page.url.args["filter"]; var connector = remote.connect("alfresco"); var peopleJSONString = connector.get("/api/people?filter=" + filterValue); // create json object from data var peopleJSON = jsonUtils.toObject(peopleJSONString); model.people = peopleJSON["people"]; The controller makes use of a special root object called remote, which is used to connect to a remote service, such as the repository, and get data. The JSON data is returned from a repository web script) (that is, a Data web script), which in its controller uses the public API to fetch person information matching passed in Search Filter (that is, filter). The repository web script uses a root object called people to search for person info. This root object is SkyVault Content Services specific and is only available in repository web scripts. Now, to create a dashlet web script you also need a descriptor, which is defined in XML and looks something like this: <webscript> <shortname>Member Directory</shortname> <description>Provide Search of people and display in a list</description> <family>user-dashlet</family> <url>/components/dashlets/member-directory</url> </webscript> The descriptor looks like any other web script descriptor except the family parameter, which can have the following values:
The Dashlet UI needs to be implemented in the web script template as follows: <#-- JavaScript Dependencies <@markup id="js"> </@> --> <#-- Stylesheet Dependencies <@markup id="css"> </@> --> <#-- Surf Widget creation <@markup id="widgets"> <@createWidgets group="dashlets"/> </@> --> <@markup id="html"> <@uniqueIdDiv> <#assign id = args.htmlid?html> <#assign dashboardconfig=config.scoped['Dashboard']['dashboard']> <div class="dashlet"> <div class="title">${msg("member.directory.dashletName")}</div> <div id="${id}-memberdir" class="body"> <div class="toolbar"> <div class="actions"> <form name="input" action="${url.context}/page/user/${context.user.id}/dashboard" method="get"> ${msg("member.directory.searchFilter")}: <input type="text" name="filter" /> <input type="submit" value="Search" /> </form> </div> </div> <p valign="top"> <span>${msg("member.directory.searchResult")}</span> <#list people as p> <br/> <a href="${url.context}/page/user/${p.userName}/profile"> ${p.firstName} ${p.lastName} (${p.email}) </a> </#list> </p> </div> </div> </@> </@> Here we are not using any custom client side JavaScript or CSS. Instead we use a simple HTML only based UI with default out-of-the-box styling. In the markup you will see references to i18n labels such ${msg("member.directory.searchResult")}. These messages are defined in the web script properties file as follows: member.directory.dashletName=Member Directory member.directory.searchFilter=Search Filter member.directory.searchResult=Search Result |
Deployment - App Server |
Best practice is to put the files in a directory that explains what they are for, such as for example: tomcat/shared/classes/alfresco/web-extension/site-webscripts/org/alfresco/training/components/dashlets |
Deployment - SDK Project |
|
More Information |
|
Sample Code | |
Tutorials |
|
You are here
Surf Dashlets
The Share web
application has a special page called Dashboard, which contains windows (think Portlets) of
content called dashlets. Currently most of these dashlets are Spring Surf dashlets, but they
will eventually be converted to Aikau dashlets.
© 2017 TBS-LLC. All Rights Reserved. Follow @twitter