Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laurentj/xuljsdatasource
A query processor for XUL templates, using javascript object as datasource
https://github.com/laurentj/xuljsdatasource
Last synced: 29 days ago
JSON representation
A query processor for XUL templates, using javascript object as datasource
- Host: GitHub
- URL: https://github.com/laurentj/xuljsdatasource
- Owner: laurentj
- Created: 2012-04-01T11:56:50.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-04-01T12:07:45.000Z (over 12 years ago)
- Last Synced: 2023-03-12T08:54:16.670Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 94.7 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
Awesome Lists containing this project
README
# jsDatasource 1.0
jsDatasource is an XPCOM component for any XUL applications. It can be useful
for extensions for Firefox or any other Mozilla-based applications, or XulRunner
based application.XUL templates allow to generate XUL elements from a list of data. With it, you
can fill a listbox for example.See [the template guide on MDC](https://developer.mozilla.org/en/XUL/Template_Guide)
to know more about it.Natively, the XUL template engine can retrieve data coming from a RDF content,
an XML file, or a SQLite database. It can also retrieve from other kind of
datasources, if you provide a component implementing this datasource (called a
Query Processor).jsDatasource is a Query Processor. It allows you to use javascript objects as
datasource for your XUL Templates.For example, you may have this data:
var jsdata = [
{name:'something'},
{name:'hello'},
{name:'world'},
];You notice that the variable is an array containing JS objects. It may be also an
nsIEnumerator object or an nsIArray object.You can then use this array as a datasource for your XUL Template:
## SECURITY WARNING
-----------------------------------------------------------------------------------------
**WARNING**: DON'T USE IT WITH UNTRUSTED DATA, COMING FROM A WEB SERVICE OR FROM THE USER.
YOU COULD HAVE SECURITY ISSUES!!-----------------------------------------------------------------------------------------
If you retrieve for example js objects from an unprivileged script, or if you "eval" some source code
from a web service (you MUST NOT do this kind of code anyway), objects could implement getters that
do unsafe things during the content generation...If you want to use external data, retrieve them in JSON format for example, and use the JSON
object to parse data.## Licence
This component is released under an opensource licence : Mozilla Public Licence.
## Features
This datasource provider supports:
- sorting
- filters
- recursion## Installation
The component should work at least for Firefox 3.6/Gecko 1.9.2 and higher.
Copy the jsDatasource.js file into the components/ directory of your extension or
your xul application.If your project targets only Firefox 3.6/Gecko 1.9.2 and lower, installation is finished.
If your project targets Firefox 4/Gecko 2.0 and higher, you should add these lines
into your chrome.manifest file:component {EA696B77-AF80-4063-89AD-4985B14D0EBC} components/jsDatasource.js
contract @mozilla.org/xul/xul-query-processor;1?name=javascript {EA696B77-AF80-4063-89AD-4985B14D0EBC}## Basic use
On the root element of your template:
- Indicate in the **datasources** attribute "javascript:" followed by the name
of the javascript variable name, containing the data. You can indicate a
property of an object: "javascript:myobject.jsdata"
- The **querytype** attribute should be equal to "javascript".And that's all. The javascript variable should be a Javascript array (or a js
iterator/generator). This array should contains javascript objects as item. In
your template, indicate where to put values of items properties, with the usual
syntax: "?propertyname".Note: even if the ref attribute is not used by jsDatasource, you must set it on
the root element, with a random value, typically `ref="."`. Else content won't be
generated.Example:
## Id of generated elements
Like other datasources providers (sqlite, xml, rdf), jsDatasource create an id
attribute on generated elements. By default, the value of this attribute is an
UUID number.If the root element have an id, generated elements will have this id as prefix
and a counter value as suffix. With the previous example, generated buttons are:
...
You can indicate to use the value of a property of objects. On the ``
element, indicate the property name in the **idproperty** attribute.If this property contain only numbers, it's better to have real name (for
`document.getElementById`, etc..). In this case, you can indicate a prefix to
add to the value, in the **idprefix** attribute on the root element of the template.For example:
The result will be:
...
## Sorting
The XUL template engine can sort results before using it to generate the content.
[As usual](https://developer.mozilla.org/en/XUL/Template_Guide/Sorting_Results),
use the **sort** and **sortDirection** attributes:- **sort** to indicate the property on which the sort is applying. Ex: `sort="?name"`
- **sortDirection** to indicate the direction, "ascending" or "descending"You can indicate also the type of data, with the **sortType** attribute, specific
to jsDatasource. Possible values are "int", "float" or "string" (default).## Data from an nsISimpleEnumerator or nsIArray object
Instead of using a javascript array,you can use an nsISimpleEnumerator or nsIArray
object.Since these kind of objects contain necessarly XPCom objects, jsDatasource should
know the interface to query on these items.You must indicate the interface with the **iteminterface** attribute on the ``
element.
It items have no interface, and are only javascript objects with a **wrappedJSObject**
property, indicate **wrappedJSObject** in **iteminterface**.## Filtering results
You may provide a function which will filter results. Indicate its name into the
**filterfunc** attribute on ``. This function is the same kind of function as
callback for Array.filter(). It should accepts 4 arguments:1. the object containing results (null if the datasource is not an Array object)
2. the current value
3. the current index
4. the Array object (null if the datasource is not an Array object)## Recursion
Your data may have some properties which contain themselves array of data, and you may want
to iterate over them.To activate recursion, just indicate the property name into the **uri** attribute.
Example:
here is some data, with a "subcat" property containing other data.
var datatest2 = [
{id:1, title:'aaaa'},
{id:3, title:'ccc', subcat:[
{id:6, title:'ccc1'},
{id:8, title:'ccc3'},
{id:7, title:'ccc2', subcat:[
{id:10, title:'ccc22'},
{id:9, title:'ccc21'},
]},
]},
{id:5, title:'eee'},
{id:4, title:'ddd', subcat:[
{id:12, title:'ddd2'},
{id:11, title:'ddd1'},
]},
{id:2, title:'bbb', subcat:[]},
]You may want display this data into a tree:
Remember that the uri attribute should be on the element that will be the "start" element
for the recursion.