-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathjsonapi-serializable.rb
73 lines (66 loc) · 1.43 KB
/
jsonapi-serializable.rb
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
71
72
73
require 'jsonapi/serializable'
class AuthorSerializer < JSONAPI::Serializable::Resource
type :author
attributes :first_name, :last_name
has_many :books
end
class GenreSerializer < JSONAPI::Serializable::Resource
type :genre
attributes :title, :description
has_many :books
end
class BookSerializer < JSONAPI::Serializable::Resource
type :book
attributes :title, :description, :published_at
has_many :authors
belongs_to :genre
end
def run!
JSONAPI::Serializable::Renderer.new.render(
DATA.sample,
class: {
Author: AuthorSerializer,
Genre: GenreSerializer,
Book: BookSerializer
}
)
end
def run_many!
JSONAPI::Serializable::Renderer.new.render(
DATA,
class: {
Author: AuthorSerializer,
Genre: GenreSerializer,
Book: BookSerializer
}
)
end
def run_include_all!
JSONAPI::Serializable::Renderer.new.render(
DATA,
class: {
Author: AuthorSerializer,
Genre: GenreSerializer,
Book: BookSerializer
},
include: ['authors', 'genre']
)
end
def run_include_deep!
JSONAPI::Serializable::Renderer.new.render(
DATA.sample,
class: {
Author: AuthorSerializer,
Genre: GenreSerializer,
Book: BookSerializer
},
include: [
'authors',
'authors.books',
'authors.books.genre',
'authors.books.genre.books',
'authors.books.genre.books.authors',
'authors.books.genre.books.genre'
]
)
end