-
Notifications
You must be signed in to change notification settings - Fork 1
/
Paper.js
132 lines (116 loc) · 3.73 KB
/
Paper.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
class Paper {
static CreatePaper(url, graph) {
if (!this.isUrlValid(url) || this.isPaperDuplicated(url, graph.papers)) {
return null;
}
return new Paper(url, graph)
}
static isUrlValid(url) {
if (url.indexOf('arxiv.org/abs') < 0) {
swal({
position: 'top',
title: 'This is not a valid arXiv link (Do not use directly the PDF).',
showConfirmButton: false,
});
return false;
}
return true;
}
static isPaperDuplicated(url, papers) {
if (papers.some(e => e.arxivUrl === url)) {
swal({
position: 'top',
title: 'This paper is already added.',
showConfirmButton: false,
});
return true;
}
return false;
}
constructor(url, graph) {
this.arxivUrl = url;
this.arxivId = url.split('/').pop();
this.pdfUrl = 'https://arxiv.org/pdf/' + this.arxivId + '.pdf';
let promises = [
this.semanticscholarGetInfos(),
this.getThumbnail()
];
Promise.all(promises).then((sucess) => {
this.thumbnail = sucess[1];
this.add(graph);
}, function (err) {
console.error('ERROR')
});
}
semanticscholarGetInfos() {
return new Promise((resolve, reject) => {
let that = this;
$.get({
url: 'http://api.semanticscholar.org/v1/paper/arXiv:' + this.arxivId,
success: (res) => {
that.title = res.title;
that.references = new Set(res.references.map(reference => reference.arxivId));
that.citations = new Set(res.citations.map(citation => citation.arxivId));
resolve();
}
});
})
}
getThumbnail() {
return new Promise((resolve, reject) => {
showPDF(this, cy, resolve);
});
}
add(graph) {
///*
// Add the node
///*
graph.cy.add([
{
group: "nodes",
data: {
id: this.arxivId.replace('.', '-'),
},
style: {
'label': this.title,
'shape': 'square',
'width': '149px',
'height': '211px',
'background-image': this.thumbnail,
"text-valign": "bottom",
'text-margin-y': '10px',
"text-wrap": "wrap",
"text-max-width": 300
}
}]
);
///*
// Add the edges
///*
for (let i = 0; i < graph.papers.length; i++) {
if (graph.papers[i].references.has(this.arxivId)) {
graph.cy.add([
{
group: "edges",
data: {source: this.arxivId.replace('.', '-'), target: graph.papers[i].arxivId.replace('.', '-')}
}
]
);
}
if (graph.papers[i].citations.has(this.arxivId)) {
graph.cy.add([
{
group: "edges",
data: {source: graph.papers[i].arxivId.replace('.', '-'), target: this.arxivId.replace('.', '-')}
}
]
);
}
}
graph.papers.push(this);
graph.refresh();
$('#form_text').removeAttr("disabled");
$('#form_submit').removeAttr("disabled");
$('#loader').hide();
}
}