aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/component/index/Books.scala
blob: ed6265b7a5f325ebb9cec19460381a25f1822c37 (plain)
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
package reading.component.index

import rx._

import scalatags.JsDom.all._
import scalacss.Defaults._
import scalacss.ScalatagsCss._

import reading.component.index.style.{ Books => BooksStyle }
import reading.models.{ Book, Program }
import reading.utils.RxTag

object Books {
  def apply(books: Rx[Seq[Book]]): Frag =
    div(
      BooksStyle.render,

      RxTag { implicit context =>
        div(
          div(
            BooksStyle.count,
            s"${books().length} livres"
          ),

          div(
            BooksStyle.books,

            books().sorted.map { book =>
              div(
                BooksStyle.book,
                div(BooksStyle.title, book.title),
                div(BooksStyle.author, s", ${book.author}"),
                div(
                  BooksStyle.detail,
                  img(
                    BooksStyle.cover,
                    src := s"cover/${book.title}.jpg"
                  ),
                  div(
                    if (book.programs.nonEmpty) {
                      div(
                        item("classe", book.programs.map(Program.grade(_).prettyPrint).distinct.sorted.mkString(", ")),
                        item("programme", book.programs.map(p => "« " ++ p.prettyPrint ++ " »").sorted.mkString(", "))
                      )
                    },
                    if (book.themes.nonEmpty) {
                      item("thème", book.themes.sorted.map(_.prettyPrint).mkString(", "))
                    },
                    if (book.genres.nonEmpty) {
                      item("genre", book.genres.sorted.map(_.prettyPrint).mkString(", "))
                    },
                    book.period.map { period =>
                      item("période", period.prettyPrint)
                    }
                  )
                )
              )
            }
          )
        )
      }
    )

  def item(key: String, value: String): Frag =
    div(
      BooksStyle.item,
      span(BooksStyle.itemKey, key),
      span(BooksStyle.itemValue, value)
    )
}