You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.3 KiB
81 lines
2.3 KiB
/* Copyright (C) 2014 Alinson Xavier
|
|
*
|
|
* This file is part of Scholarium.
|
|
*
|
|
* Scholarium is free software: you can redistribute it and/or modify it under
|
|
* the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, either version 3 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This software is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this software. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
function ShowMapView(map) {
|
|
this.map = map;
|
|
};
|
|
|
|
ShowMapView.prototype.render = function(container)
|
|
{
|
|
this.nodes = new vis.DataSet();
|
|
this.edges = new vis.DataSet();
|
|
|
|
this.nodes.add(this.map.nodes);
|
|
this.edges.add(this.map.edges);
|
|
|
|
document.nodes = this.nodes;
|
|
document.edges = this.edges;
|
|
|
|
var parser = new GenericParser();
|
|
var crawler = new ScholarCrawler(parser, this.nodes, this.edges);
|
|
crawler.start();
|
|
|
|
document.crawler = crawler;
|
|
|
|
if(!this.map.is_initialized)
|
|
{
|
|
crawler.push({ is_dummy: true, article: { citations_url: this.map.seed_url } }, 2);
|
|
this.map.is_initialized = true;
|
|
}
|
|
|
|
var network_div = document.createElement('div');
|
|
$(network_div).addClass("mynetwork");
|
|
$(container).empty();
|
|
container.appendChild(network_div)
|
|
|
|
var data = { nodes: this.nodes, edges: this.edges };
|
|
this.network = new vis.Network(network_div, data, visjs_options);
|
|
|
|
this.network.on('doubleClick', function(params)
|
|
{
|
|
if(params.nodes.length > 0)
|
|
{
|
|
crawler.push(this.nodes.get(params.nodes[0]), 1);
|
|
}
|
|
else
|
|
{
|
|
console.log("saving map");
|
|
this.network.storePosition();
|
|
this.map.nodes = this.nodes.get();
|
|
this.map.edges = this.edges.get();
|
|
if(!this.map._id)
|
|
maps_db.insert(this.map);
|
|
else
|
|
maps_db.update({_id: this.map._id}, this.map);
|
|
}
|
|
}.bind(this));
|
|
|
|
this.network.on("resize", function(params)
|
|
{
|
|
var height = $(window).height();
|
|
var width = $(window).width();
|
|
$(".mynetwork").css("width", width);
|
|
$(".mynetwork").css("height", height);
|
|
});
|
|
};
|