2020-03-27 14:48:13 +00:00
|
|
|
|
|
|
|
class Book {
|
2020-03-27 21:24:01 +00:00
|
|
|
constructor(title, author, publisher, rating, published, id=0) {
|
|
|
|
this.cfid = id
|
2020-03-27 14:48:13 +00:00
|
|
|
this.title = title
|
|
|
|
this.author = author
|
|
|
|
this.publisher = publisher
|
|
|
|
this.rating = rating
|
2020-03-27 21:24:01 +00:00
|
|
|
this.published = published
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
|
|
|
toString() {
|
2020-03-27 21:24:01 +00:00
|
|
|
return this.title+' av '+this.author+', terningkast '+this.rating+', utgitt '+this.published.toString().slice(0,15)+', forlag; '+this.publisher
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
2020-03-28 03:03:36 +00:00
|
|
|
toHtml(elm) {
|
2020-03-28 03:40:45 +00:00
|
|
|
let span = function(selector, string, p, color='red') {
|
2020-03-28 03:03:36 +00:00
|
|
|
$($(selector)[$(selector).length-1]).append('<span style="color: '+color+'"></span>')
|
2020-03-28 03:40:45 +00:00
|
|
|
$($(selector+' > span')[$(selector+' > span').length-1]).text(string)
|
|
|
|
$($(selector)[$(selector).length-1]).append(p)
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
2020-03-28 03:40:45 +00:00
|
|
|
elm.append('<p class="book"></p>')
|
|
|
|
span('.book', this.title, ' av ')
|
|
|
|
span('.book', this.author, ', terningkast ')
|
|
|
|
span('.book', this.rating, ', utgitt ')
|
|
|
|
span('.book', this.published.toString().slice(0,15), ', forlag: ', 'green')
|
|
|
|
span('.book', this.publisher, firebase.auth().currentUser?' <a class="btn btn-primary" href="javascript: remove(\''+this.cfid+'\')">Slett</a>':'', 'yellow')
|
2020-03-28 03:03:36 +00:00
|
|
|
}
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bookConverter = {
|
|
|
|
toFirestore: function(book) {
|
2020-03-27 21:24:01 +00:00
|
|
|
let millis = Date.parse(book.published)
|
2020-03-27 14:48:13 +00:00
|
|
|
return {
|
2020-03-27 21:24:01 +00:00
|
|
|
tittel: book.title,
|
|
|
|
forfatter: book.author,
|
|
|
|
forlag: book.publisher,
|
|
|
|
terningkast: book.rating,
|
|
|
|
utgitt: new firebase.firestore.Timestamp(millis/1000, 0)
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
fromFirestore: function(snapshot, options) {
|
|
|
|
const data = snapshot.data(options)
|
2020-03-27 21:24:01 +00:00
|
|
|
return new Book(
|
|
|
|
data.tittel,
|
|
|
|
data.forfatter,
|
|
|
|
data.forlag,
|
|
|
|
data.terningkast,
|
|
|
|
data.utgitt.toDate(),
|
|
|
|
snapshot.id
|
2020-03-27 22:29:16 +00:00
|
|
|
)
|
2020-03-27 14:48:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|