datasetexplorer-datalet.html 11.7 KB
<!--
@license
    The MIT License (MIT)

    Copyright (c) 2015 Dipartimento di Informatica - Universit� di Salerno - Italy

    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:

    The above copyright notice and this permission notice shall be included in
    all copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    THE SOFTWARE.
-->

<!--
* Developed by :
* ROUTE-TO-PA Project - grant No 645860. - www.routetopa.eu
*
-->

<link rel="import" href="../base-ajax-json-alasql-datalet/base-ajax-json-alasql-datalet.html">
<link rel="import" href="treemap_tooltip.html">

<script src="../../locales/datasetexplorer_ln.js"></script>

<!--

`datasetexplorer-datalet` is a treemap datalet based on d3js treemap project http://bl.ocks.org/mbostock/4063582
A treemap recursively subdivides area into rectangles; the area of any node in the tree corresponds to its value.
This is an enhanced version designed to help users to navigate associated dataset providers.

At this moment it requires server-side elaboration, but later version will hopefully be completely client-side.

Example:

    <datasetexplorer-datalet
        data-url="http://ckan.routetopa.eu/api/action/datastore_search?resource_id=#"
        fields='["field1","field2"]'>
    </datasetexplorer-datalet>

@element datasetexplorer-datalet
@status v0.1
@demo demo/index.html
@group datalets
-->

<dom-module id="datasetexplorer-datalet">
    <template>
        <style is="custom-style">

            :host ::content h6 {
                color: red;
            }

            :host ::content #treemap_placeholder {
                width: 100%;
                height: 70%;
                /*min-height: 500px;*/
                /*background: #ffffff;*/
                background: transparent;
                position: relative;
            }

            :host ::content text {
                pointer-events: none;
            }

            :host ::content .grandparent text {
                font-weight: bold;
            }

            :host ::content rect {
                fill: none;
                stroke: #fff;
            }

            :host ::content rect.parent {
                stroke-width: 2px;
            }

            :host ::content .grandparent rect {
                fill: orange;
            }

            :host ::content .grandparent:hover rect {
                fill: #ee9700;
            }

            :host ::content .children rect.parent {
                cursor: pointer;
            }

            :host ::content .grandparent rect {
                stroke-width: 2px;
                cursor: pointer;
            }

            :host ::content .children rect.parent {
                fill: #bbb;
                -fill-opacity: .5;
                fill-opacity: 1;
            }

            :host ::content .children:hover rect.child {
                fill: #bbb;
            }

            :host ::content iframe.iframe {
                border: 0 !important;
            }

            /*:host ::content .children svg.foreignObject {*/
                /*font: 9px sans-serif;*/
                /*text-overflow: ellipsis;*/
                /*text-align: left;*/
                /*word-wrap: break-word;*/
                /*overflow: hidden;*/
            /*}*/
        </style>
        <div id="treemap_placeholder">
            <treemap-tooltip id="treemap_tooltip"></treemap-tooltip>
        </div>
        <base-ajax-json-alasql-datalet data-url="{{dataUrl}}" fields="{{fields}}" data="{{data}}" export_menu="{{export_menu}}"></base-ajax-json-alasql-datalet>
        <!--<treemap-tooltip id="treemap_tooltip"></treemap-tooltip>-->
    </template>

    <script src="../shared_js/d3.js"></script>
    <script src="js/buildtreemap2.js"></script>
    <script>

        var DatasetexplorerBehavior = {

            map : {
                name : "",
                children : []
            },

            transformData: function()
            {
                this._filterData();

                var treemapData = [];
                DatasetexplorerBehavior.map.name = this._component.title;

                if(this.data.length > 1) {
                    for (i = 0; i < this.data.length; i++) {
                        var propName = this.data[i].name;

                        for (var j = 0; j < this.data[i].data.length; j++) {
                            if (i == 0) treemapData[j] = {};
                            currObj = {};
                            currObj[propName] = this.data[i].data[j];
                            jQuery.extend(treemapData[j], currObj);
                        }
                    }
                }else{
                    treemapData = this.data[0].data;
                }

                this.map.children = [];

                for(var i = 0; i < treemapData.length; i++){
                    this.checkAggragationField(treemapData[i], this._component.fields.length - 2, this._component.fields.length - 2);
                }

                var json = JSON.stringify(this.map);

            },

            findChild: function(child, category){
                var children = child.children;
                for (var i=0; i<children.length; i++) {
                    if (children[i].name == category)
                        return children[i];
                }
                var nchild = {name : category , children : []};
                children.push(nchild);
                return nchild;
            },

            checkAggragationField: function(object, levels, value_index){
                var curchild = this.map;
                var keys = Object.keys(object);
                for(var level= 0; level < levels; level++){

                    var child = this.findChild(curchild, object[keys[level]]);
                    curchild = child;
                }

                if (curchild.value === undefined)
                    curchild.value = 0;

                var value = curchild.value + parseFloat(object[keys[value_index]]);
                curchild.children = null;
                curchild.value = value;
            },

            presentData: function(){
                var me = this;
                var xyz = function(url) {
                    me.selectResource(url);
                }
                this.map.name = datasetexplorer_ln["path_" + datasetexplorer_ln["ln"]];
                build2(this.map, this.meta, this._component.$.treemap_placeholder, xyz, this._component.width, this._component.height);
            },

            selectResource: function(url) {
                this._component.fire("datasetexplorer-datalet_data-url", { url: url });
            },

            _filterData : function() {

                this.meta = this.data.result.providers;
                this._component.fields = JSON.parse(this._component.fields);
                this.data = this._transformData(this.data.result.datasets, this._component.fields, false);
//                var tmpData = [];
//
//                if(!this.properties.json_results.value.result)
//                    this.properties.json_results.value = this.data;
//
//                this.meta = this.properties.json_results.value.result.providers;
//
//                //Deal the fields with "'" char
//                //this._component.fields = this._component.fields.replace(/#/g,"'");
//
//                this._component.fields = JSON.parse(this._component.fields);
//
//                for (var i = 0; i < this._component.fields.length; i++) {
//                    var query = "$";
//                    var query_elements = this._component.fields[i].split(',');
//                    for (var j = 0; j < query_elements.length; j++) {
//                        query += "['" + query_elements[j] + "']";
//                        if (this.isFieldArray(query_elements.slice(0, j + 1))) {
//                            query += "[*]";
//                        }
//                    }
//
//                    tmpData.push({
//                        name: query_elements[query_elements.length - 1],
//                        data: jsonPath(this.properties.json_results.value, query)
//                    });
//                }
//                this.data = tmpData;
//                this._deleteWaitImage();
            },

            _transformData : function(data, fields, truncate) {
            if(!data || data.length == 0)
                return [];

            /*DEPRECATED*/for (var i=0; i < fields.length; i++)
                fields[i] = fields[i].substring(fields[i].lastIndexOf(",") + 1, fields[i].length);

            var tData = [];

            for (var i in fields){

                var field = fields[i];
                var values = [];

                for (var i in data) {
                    var v = data[i][field];
                    if(truncate)
                        if(!isNaN(v) && v % 1 != 0)
                            v = Math.floor(v * 100) / 100;
                    values.push(v);
                }

                tData.push({
                    name: field,
                    data: values
                });
            }

            return tData;
        }

        };

        Polymer({
            is : 'datasetexplorer-datalet' ,

            properties: {
                /**
                 * It's the component behavior
                 *
                 * @attribute behavior
                 * @type Object
                 * @default {}
                 */
                behavior : {
                    type : Object,
                    value : {}
                },

                data : {
                    type : Array,
                    value : undefined
                },

                name : {
                    type : String,
                    value: ""
                },

                width : {
                    type : Number,
                    value: 968
                },

                height : {
                    type : Number,
                    value: 700
                },
                /**
                 * Control the export menu
                 * xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
                 *
                 * @attribute export_menu
                 * @type Number
                 * @default 15
                 */
                export_menu : {
                    type  : Number,
                    value : 15 // xxxx BITMASK. FROM RIGHT : HTML, PNG, RTF, MY SPACE (eg. 1111 show all, 0000 hide all)
                }
            },

            ready: function(){
                $(this).find("base-datalet")[0].hideFooter();

                this.behavior =  $.extend(true, {}, BaseDataletBehavior, WorkcycleBehavior, AjaxJsonAlasqlBehavior, DatasetexplorerBehavior);
                this.async(function(){this.behavior.init(this)},0);
            },

            attached: function(){
                datasetexplorer_ln["ln"] = (typeof ODE != 'undefined') ? ODE.user_language : parent.ODE.user_language;
            }

        });
    </script>
</dom-module>