ODS Widgets =========== **ODS-Widgets** is a library of web components that can be used to build rich and interactive pages of datavisualization, live from data available on a remote API.
npm install ods-widgetsODS Widgets
===========
ODS-Widgets is a library of web components that can be used to build rich and
interactive pages of datavisualization, live from data available on a remote API.
In more concrete terms, it is a set of AngularJS directives that can be directly
plugged on a remote data API (currently OpenDataSoft only); those directives
can interact with each others using shared contexts (for example a "calendar"
directive could refine the data displayed by a "table" directive). It is
designed to work without the need for a local backend, and to be efficient to
build data visualization pages and dashboards by just manipulating HTML markup (AngularJS
directive tags). Since it is regular HTML, it can be integrated in your current
pages, supports CSS styling, and generally works in a way that will feel familiar
if you know HTML. It does not require knowing AngularJS to be used.
This library is used in production as a part of the OpenDataSoft platform, a
Software-as-a-Service data portal. It is essentially the current core of our
front-end data visualization features.
Here are a few ideas of things you could do with all this:
- integrate a simple visualization (or a more complete visualization tool using
more widgets) from a public dataset into a blog article (it is worth noting that,
as more and more search engines are understanding JS applications like Google is,
your integrated visualizations will be referenced, which can be very beneficial to your SEO)
- within your application, allow your users to design and build complex and interactive dashboard or visualization pages
on your data, using simple HTML tags (that's what we are doing, for example)
- build a website on top of your data (or public data) without having to worry about consuming and
exposing your data to end-users in a scalable and compelling way
- fork and enrich this toolset with your own widgets, or even adapt it to your
own needs and backend services: the project is licensed under the MIT license
html
`$3
There is a complete tutorial to help you build your first page around a simple example.
Since it is build on public data, you can reproduce it by yourself and even use it as a basis
for your first project.
#### > Tutorial to build your first pageThere is a complete reference documentation of all the available directives and all
the parameters they support. It also contains more literature on the technical
details of the library.
#### > Reference Documentation
$3
Known to work on: (may not be exhaustive)
- Internet Explorer 10+
- Safari 6+
- Chrome 12+
- Firefox 4+
- Android Browser from Android 3.0+$3
You can download the latest ODS Widgets release here. This is a ZIP file of a folder that you can then
copy into your project.$3
The following libraries are required as dependencies in your pages for ODS-Widgets to work:
- jQuery (2.1+ should work) (note: we're looking to remove this dependency in the future)
- AngularJS 1.4.* and the angular-sanitize module
- Some widgets are using icons from FontAwesome 4.4.0 (note: we're looking to remove this dependency in the future)To load ODS-Widgets, you can then simply load
ods-widgets.js and ods-widgets.css, or their minified version also included
in the distribution.Note: When including the scripts in your page, you need to include jQuery, then AngularJS, then angular-sanitize, then ODS-Widgets.
ODS-Widgets require an AngularJS app to run, which can for example be done with a simple
ng-app="ods-widgets":
`html
{{ "hello" + "from" + "angular!"}}
``Some specific widgets can rely on specific "heavy" libraries (such as Highcharts, Leaflet...);
in that case, they are lazily-loaded from a CDN when the widget initializes itself.
This project originates from OpenDataSoft codebase, and as such obviously works
closely with our own interfaces; however, we are looking to make this framework work
with more APIs and services (and thankfully, AngularJS can make it easier), for example by
implementing more AngularJS services as sources, beside our ODSAPI service.
If you have an API that exposes structured data in a way that looks
like our widgets could display it, and you want to try to make it work with it,
you can contact us.