Display books
This commit is contained in:
parent
f1b834f46f
commit
df84659cdb
17
index.html
17
index.html
@ -13,7 +13,22 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Bouquins</h1>
|
<h1>Bouquins</h1>
|
||||||
<div id="app"> {{ message }} </div>
|
<div id="app">
|
||||||
|
<h2>{{ booksCount }} books</h2>
|
||||||
|
<table>
|
||||||
|
<tr v-for="book in books">
|
||||||
|
<td>{{ book.id }}</td>
|
||||||
|
<td>{{ book.title }}</td>
|
||||||
|
<td>{{ book.series ? book.series.name : '' }}</td>
|
||||||
|
<td>{{ book.series ? book.series.idx : '' }}</td>
|
||||||
|
<td>
|
||||||
|
<template v-for="author in book.authors">
|
||||||
|
{{ author.name }}
|
||||||
|
</template>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
<script src="vue.min.js"></script>
|
<script src="vue.min.js"></script>
|
||||||
<script src="index.js"></script>
|
<script src="index.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
102
index.js
102
index.js
@ -1,42 +1,23 @@
|
|||||||
/* $Id$ */
|
|
||||||
/*
|
|
||||||
* Copyright (c) 2016 Kristaps Dzonsons <kristaps@bsd.lv>
|
|
||||||
*
|
|
||||||
* Permission to use, copy, modify, and distribute this software for any
|
|
||||||
* purpose with or without fee is hereby granted, provided that the above
|
|
||||||
* copyright notice and this permission notice appear in all copies.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
*/
|
|
||||||
(function(root) {
|
(function(root) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
/*
|
function sendQuery(url, error, success)
|
||||||
* Send a GET query to the give url.
|
|
||||||
* Invokes "setup" before running anything, "error" upon network
|
|
||||||
* error (with the HTTP error code and response text), and
|
|
||||||
* success with the response text on 200.
|
|
||||||
*/
|
|
||||||
function sendQuery(url, setup, error, success)
|
|
||||||
{
|
{
|
||||||
var xmh = new XMLHttpRequest();
|
var xmh = new XMLHttpRequest();
|
||||||
var v;
|
var v;
|
||||||
|
|
||||||
if (null !== setup)
|
|
||||||
setup();
|
|
||||||
|
|
||||||
xmh.onreadystatechange = function() {
|
xmh.onreadystatechange = function() {
|
||||||
v = xmh.responseText;
|
v = xmh.responseText;
|
||||||
if (xmh.readyState === 4 &&
|
if (xmh.readyState === 4 && xmh.status === 200) {
|
||||||
xmh.status === 200) {
|
var res;
|
||||||
|
try {
|
||||||
|
res = JSON.parse(v);
|
||||||
|
} catch (err) {
|
||||||
|
if (null !== error)
|
||||||
|
error(err.name, err.message);
|
||||||
|
}
|
||||||
if (null !== success)
|
if (null !== success)
|
||||||
success(v);
|
success(res);
|
||||||
} else if (xmh.readyState === 4) {
|
} else if (xmh.readyState === 4) {
|
||||||
if (null !== error)
|
if (null !== error)
|
||||||
error(xmh.status, v);
|
error(xmh.status, v);
|
||||||
@ -47,72 +28,29 @@
|
|||||||
xmh.send(null);
|
xmh.send(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Send a POST query to the give url with the form.
|
|
||||||
* Invokes "setup" before running anything (given the form),
|
|
||||||
* "error" upon network error (with the form, HTTP error code,
|
|
||||||
* and response text), and success with the form and response
|
|
||||||
* text on 200.
|
|
||||||
*/
|
|
||||||
function sendForm(form, setup, error, success)
|
|
||||||
{
|
|
||||||
var xmh = new XMLHttpRequest();
|
|
||||||
var v;
|
|
||||||
|
|
||||||
if (null !== setup)
|
|
||||||
setup(form);
|
|
||||||
|
|
||||||
xmh.onreadystatechange=function() {
|
|
||||||
v = xmh.responseText;
|
|
||||||
if (xmh.readyState === 4 &&
|
|
||||||
xmh.status === 200) {
|
|
||||||
if (null !== success)
|
|
||||||
success(form, v);
|
|
||||||
} else if (xmh.readyState === 4) {
|
|
||||||
if (null !== error)
|
|
||||||
error(form, xmh.status, v);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
xmh.open(form.method, form.action, true);
|
|
||||||
xmh.send(new FormData(form));
|
|
||||||
return(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
function stdError(code, resp) {
|
function stdError(code, resp) {
|
||||||
console.log("ERREUR " + code + ": " + resp);
|
console.log('ERROR ' + code + ': ' + resp);
|
||||||
}
|
}
|
||||||
|
|
||||||
function indexSuccess(resp) {
|
function indexSuccess(resp) {
|
||||||
var res;
|
app.books = resp;
|
||||||
|
app.booksCount = app.books.length;
|
||||||
try {
|
|
||||||
res = JSON.parse(resp);
|
|
||||||
} catch (error) {
|
|
||||||
console.log('JSON parse fail: ' + resp);
|
|
||||||
return(null);
|
|
||||||
}
|
|
||||||
app.message = res.length + " books";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
function loadIndex() {
|
||||||
* Configure the index page.
|
sendQuery('cgi-bin/bouquins/books', stdError, indexSuccess);
|
||||||
*/
|
|
||||||
function loadIndex()
|
|
||||||
{
|
|
||||||
sendQuery('cgi-bin/bouquins/books',
|
|
||||||
null, stdError, indexSuccess);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
root.loadIndex = loadIndex;
|
root.loadIndex = loadIndex;
|
||||||
})(this);
|
})(this);
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
|
||||||
loadIndex();
|
|
||||||
});
|
|
||||||
var app = new Vue({
|
var app = new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
data: {
|
data: {
|
||||||
message: 'Hello Vue!'
|
books: [],
|
||||||
|
booksCount: 0
|
||||||
|
},
|
||||||
|
mounted: function() {
|
||||||
|
loadIndex();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user