aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/component/index/BookDetail.scala
blob: 6a9d83abe87ee50bad29b57e731a4f390caa9b98 (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
package reading.component.index

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

import reading.component.index.style.{ BookDetail => BookStyle }
import reading.models.{ Program, Book }

object BookDetail {
  def apply(book: Book): HtmlTag =
    div(
      BookStyle.render,
      BookStyle.detail,

      img(
        BookStyle.cover,
        src := s"cover/${book.title}.jpg"
      ),

      div(
        div(BookStyle.title, book.title),
        div(BookStyle.author, s", ${book.author}"),
        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)
        }
      )
    )

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