2017-01-14 16:38:40 +00:00
|
|
|
var app = new Vue({
|
|
|
|
el: '#app',
|
|
|
|
data: {
|
|
|
|
urlParams: {},
|
|
|
|
authors: [],
|
2017-01-14 16:52:52 +00:00
|
|
|
books: [],
|
2017-01-14 16:38:40 +00:00
|
|
|
series: [],
|
2017-01-14 16:52:52 +00:00
|
|
|
booksCount: 0
|
2017-01-14 16:38:40 +00:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
urlParse: function() {
|
|
|
|
var match,
|
|
|
|
pl = /\+/g, // Regex for replacing addition symbol with a space
|
|
|
|
search = /([^&=]+)=?([^&]*)/g,
|
|
|
|
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
|
|
|
|
query = window.location.search.substring(1);
|
|
|
|
while (match = search.exec(query))
|
|
|
|
this.urlParams[decode(match[1])] = decode(match[2]);
|
|
|
|
},
|
|
|
|
sendQuery: function(url, error, success) {
|
|
|
|
var xmh = new XMLHttpRequest();
|
|
|
|
var v;
|
|
|
|
|
|
|
|
xmh.onreadystatechange = function() {
|
|
|
|
v = xmh.responseText;
|
|
|
|
if (xmh.readyState === 4 && xmh.status === 200) {
|
|
|
|
var res;
|
|
|
|
try {
|
|
|
|
res = JSON.parse(v);
|
|
|
|
} catch (err) {
|
|
|
|
if (null !== error)
|
|
|
|
error(err.name, err.message);
|
|
|
|
}
|
|
|
|
if (null !== success)
|
|
|
|
success(res);
|
|
|
|
} else if (xmh.readyState === 4) {
|
|
|
|
if (null !== error)
|
|
|
|
error(xmh.status, v);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
xmh.open('GET', url, true);
|
|
|
|
xmh.send(null);
|
|
|
|
},
|
|
|
|
stdError: function(code, resp) {
|
|
|
|
console.log('ERROR ' + code + ': ' + resp);
|
|
|
|
},
|
|
|
|
searchParams: function(url) {
|
|
|
|
var res = url;
|
|
|
|
var first = true;
|
|
|
|
for (var i=0; i<this.terms.length; i++) {
|
|
|
|
var t = this.terms[i];
|
|
|
|
if (t.trim()) {
|
|
|
|
if (first) {
|
|
|
|
first = false;
|
|
|
|
res += '?';
|
|
|
|
} else
|
|
|
|
res += '&';
|
|
|
|
res += 'term=' + encodeURIComponent(t.trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
},
|
|
|
|
searchBooksSuccess: function(res) {
|
2017-01-14 16:52:52 +00:00
|
|
|
this.booksCount = res.count;
|
|
|
|
this.books = res.books;
|
2017-01-14 16:38:40 +00:00
|
|
|
},
|
|
|
|
searchBooks: function() {
|
|
|
|
this.sendQuery(this.searchParams('cgi-bin/bouquins/books'), this.stdError, this.searchBooksSuccess);
|
|
|
|
},
|
|
|
|
searchAll: function() {
|
2017-01-14 17:48:08 +00:00
|
|
|
this.clear();
|
|
|
|
this.searchBooks();
|
|
|
|
},
|
|
|
|
clear: function() {
|
2017-01-14 16:38:40 +00:00
|
|
|
this.authors = [];
|
|
|
|
this.books = [];
|
|
|
|
this.series = [];
|
2017-01-14 16:52:52 +00:00
|
|
|
this.booksCount = 0;
|
2017-01-14 17:48:08 +00:00
|
|
|
},
|
|
|
|
searchFull: function() {
|
|
|
|
if (document.getElementById("q").value) {
|
|
|
|
this.clear();
|
|
|
|
this.terms = document.getElementById("q").value.split(' ');
|
|
|
|
// TODO criteria
|
|
|
|
this.searchBooks();
|
|
|
|
}
|
2017-01-14 16:38:40 +00:00
|
|
|
},
|
|
|
|
searchUrl: function() {
|
|
|
|
if (this.urlParams.q) {
|
|
|
|
this.terms = this.urlParams.q.split(' ');
|
|
|
|
this.searchAll();
|
2017-01-14 17:48:08 +00:00
|
|
|
document.getElementById("q").value = this.urlParams.q;
|
2017-01-14 16:38:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created: function() {
|
|
|
|
this.urlParse();
|
|
|
|
},
|
|
|
|
mounted: function() {
|
|
|
|
this.searchUrl();
|
|
|
|
}
|
|
|
|
})
|