Add structured data to you page. Definitions can be found at https://schema.org
Add this line to your application's Gemfile:
gem 'scrivito_rich_snippet_widget'
And then execute:
$ bundle
Add this line to your JavaScript manifest before you load your content browser filter:
//= require scrivito_rich_snippet_widget
Add this to your filters:
scrivito.content_browser.filters(filter) {
if(filter.rich_snippet_filter) {
'_obj_class': {
'field': '_obj_class'
'options': { rich_snippet_filter(filter.rich_snippet_filter) }
}
} else if (your filters) {
// ... add your special filters here
} else {
'_obj_class': {
'options': {
// ... add your standard filters here
rich_snippets: {
title: 'Rich Snippets',
'options': { rich_snippet_filter('all') }
}
}
}
}
}
Create a modle at /model/rich_snippet/new_type.rb
and add the attributes for this type:
module RichSnippet
class NewType < RichSnippet::Thing
attribute my_attribute, :string
attribute person, :refernce
attribute children, :referencelist
# ... more attributes
def to_json(render_childs=false)
{
"@context": "http://schema.org",
"@type": "NewType",
name: name,
description: description,
image: image ? image.binary_url : '',
url: url
myAttribute: my_attribute,
person: person ? person.to_json : nil, # render the json for another rich snippet by calling its to_json method
children: array_json(children), # render an array of other rich snippets with this helper method
# ... definition for more attributes
}
end
# optional method to add warnings rendered by the widget
def warnings
warns = []
warns << "this attribute should be set!" if my_attribute.blank?
return warns
end
end
end
The render_childs
attribute in the to_json
method can be used to prevent circles in the snippet definitions.
Then create the details view. You need two files:
# rich_snippet/new_type/details.html.erb
<%= render 'rich_snippet/new_type/details', obj: @obj %>
# rich_snippet/new_type/_details.html.erb
<%= render 'rich_snippet/thing/details', obj: obj, url_is_mandatory: false %>
<%= scrivito_details_for "Event attributes" do %>
<%= scrivito_details_for 'My attribute' do %>
<%= scrivito_tag :div, obj, :my_attribute %>
<% end %>
<%= scrivito_details_for 'Person do %>
<%= scrivito_tag :div, obj, :person, data: {scrivito_editors_filter_context: {rich_snippet_filter: ['Person', 'Organizazion']}} %>
<% end %>
<%= scrivito_details_for 'Children' do %>
<%= scrivito_tag :div, obj, :children, data: {scrivito_editors_filter_context: {rich_snippet_filter: ['Person']}} %>
<% end %>
... More attributes ...
<% end %>
The filter definition like data_scrivito_editors_filter_context={rich_snippet_filter: ['Person']}
can be used to show only the defined filters e.g. Person in this example.
In your contentbrowser filters, add the new types by using:
scrivito.content_browser.filters(filter) {
if(filter.rich_snippet_filter) {
'_obj_class': {
'field': '_obj_class'
'options': { rich_snippet_filter(filter.rich_snippet_filter, ['NewType']) }
} else if (your filters) {
// ... add your special filters here
} else {
'_obj_class': {
'options': {
// ... add your standard filters here
'rich_snippets': {
'title': 'Rich Snippets',
'options': { rich_snippet_filter('all', ['NewType']) }
}
}
}
}
}