From 5832f63b84d7388441d1200f2442dc1e9de0225c Mon Sep 17 00:00:00 2001 From: vlad Date: Tue, 27 Jun 2017 17:13:02 -0700 Subject: All PDS UI domain models, API case classes, service traits and necessary utils moved to pdsui-common --- .../formats/json/category/ApiCategory.scala | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/main/scala/xyz/driver/pdsuidomain/formats/json/category/ApiCategory.scala (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/category/ApiCategory.scala') diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/category/ApiCategory.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/category/ApiCategory.scala new file mode 100644 index 0000000..fabdaa2 --- /dev/null +++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/category/ApiCategory.scala @@ -0,0 +1,23 @@ +package xyz.driver.pdsuidomain.formats.json.category + +import play.api.libs.functional.syntax._ +import play.api.libs.json.{Format, JsPath} +import xyz.driver.pdsuidomain.entities.CategoryWithLabels +import xyz.driver.pdsuidomain.formats.json.label.ApiLabel + +final case class ApiCategory(id: Long, name: String, labels: List[ApiLabel]) + +object ApiCategory { + + implicit val format: Format[ApiCategory] = ( + (JsPath \ "id").format[Long] and + (JsPath \ "name").format[String] and + (JsPath \ "labels").format[List[ApiLabel]] + ) (ApiCategory.apply, unlift(ApiCategory.unapply)) + + def fromDomain(categoryWithLabels: CategoryWithLabels) = ApiCategory( + id = categoryWithLabels.category.id.id, + name = categoryWithLabels.category.name, + labels = categoryWithLabels.labels.map(x => ApiLabel(x.id.id, x.name, x.categoryId.id)) + ) +} -- cgit v1.2.3