aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/models/Book.scala
blob: 763f83f9ce9dc74c133324415aca7fcaa030f2ff (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
package reading.models

case class Book(
    title: String,
    author: String,
    year: String,
    parts: Int = 1,
    period: Option[Period],
    genres: Seq[Genre],
    themes: Seq[Theme],
    programs: Seq[Program],
    level: Level,
    summary: String
) extends Ordered[Book] {
  def compare(that: Book) =
    Compare.format(this.title).compare(Compare.format(that.title))
}

object Book {
  def filter(books: Seq[Book], search: String = ""): Seq[Book] =
    books.filter { book =>
      (Search(book.title, search)
        || Search(book.author, search))
    }
}