Skip to content

Commit 6a879b1

Browse files
committed
Add preview examples.
1 parent 447f3df commit 6a879b1

File tree

5 files changed

+99
-0
lines changed

5 files changed

+99
-0
lines changed

peeks/deserializable.rb

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
class DeserializablePost < JSONAPI::Deserializable::Resource
2+
attribute :title
3+
4+
attriute :date do |attr|
5+
field created_at: attr
6+
end
7+
8+
relationship :author do |id, type|
9+
field author_id: id
10+
field author_type: type
11+
end
12+
13+
relationship :comments do |ids, _types|
14+
field comment_ids: ids
15+
end
16+
end

peeks/hanami.rb

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module API::Controllers::Posts
2+
class Create
3+
include API::Action
4+
include JSONAPI::Hanami::Action
5+
6+
deserializable_resource :post, DeserializablePost
7+
8+
def call(params)
9+
repo = PostRepository.new
10+
post = repo.create(params[:post])
11+
12+
self.data = post
13+
self.include = [:author, comments: [:author]]
14+
self.fields = { users: [:name, :email] }
15+
self.status = 201
16+
end
17+
end
18+
end

peeks/rails.rb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
class PostsController < ApplicationController
2+
deserializable_resource :post, DeserializablePost, only: [:create, :update]
3+
4+
def create_params
5+
params.require(:post).permit!
6+
end
7+
8+
def create
9+
post = Post.create(create_params)
10+
render jsonapi: post,
11+
include: [:author, comments: [:author]],
12+
fields: { users: [:name, :email] },
13+
status: :created
14+
end
15+
end

peeks/ruby.rb

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Serialization
2+
JSONAPI::Serializable::Renderer.render(posts,
3+
namespace: 'API',
4+
expose: { url_helpers: MyUrlHelper.new },
5+
include: [:author, comments: [:author]],
6+
fields: { users: [:name, :email] })
7+
# => { data: [...], included: [...] }
8+
9+
# Deserialization
10+
DeserializablePost.call(json_hash)
11+
# => {
12+
# title: 'Welcome',
13+
# created_at: '2016-11-17',
14+
# author_id: '5',
15+
# author_type: 'users',
16+
# comment_ids: ['13', '29', '31']
17+
# }

peeks/serializable.rb

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
class SerializablePost < JSONAPI::Serializable::Model
2+
type 'posts'
3+
4+
attributes :title, :body
5+
6+
attribute :date do
7+
@model.created_at
8+
end
9+
10+
belongs_to :author
11+
12+
has_many :comments, V2::SerializableComment do
13+
resources do
14+
@model.published_comments
15+
end
16+
17+
link :related do
18+
@url_helpers.user_posts_url(@model.id)
19+
end
20+
21+
meta do
22+
{ count: @model.published_comments.count }
23+
end
24+
end
25+
26+
link :self do
27+
@url_helpers.post_url(@model.id)
28+
end
29+
30+
meta do
31+
{ featured: true }
32+
end
33+
end

0 commit comments

Comments
 (0)