2016-12-31 11:01:38 +00:00
|
|
|
var app = new Vue({
|
|
|
|
el: '#app',
|
|
|
|
data: {
|
|
|
|
urlParams: {},
|
|
|
|
book: {}
|
|
|
|
},
|
|
|
|
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]);
|
|
|
|
},
|
2016-12-31 11:52:33 +00:00
|
|
|
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);
|
|
|
|
},
|
|
|
|
bookSuccess: function(resp) {
|
|
|
|
this.book = resp;
|
|
|
|
},
|
2016-12-31 11:01:38 +00:00
|
|
|
loadBook: function() {
|
2016-12-31 11:52:33 +00:00
|
|
|
if (this.urlParams.id)
|
|
|
|
this.sendQuery('cgi-bin/bouquins/books/' + this.urlParams.id, this.stdError, this.bookSuccess);
|
2016-12-31 11:01:38 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
created: function() {
|
|
|
|
this.urlParse();
|
|
|
|
},
|
|
|
|
mounted: function() {
|
|
|
|
this.loadBook();
|
|
|
|
}
|
|
|
|
})
|