Class: NotionRubyMapping::TemplateBlock
- Defined in:
- lib/notion_ruby_mapping/blocks/template_block.rb
Overview
Notion block
Instance Attribute Summary collapse
-
#rich_text_array ⇒ Object
readonly
Returns the value of attribute rich_text_array.
Attributes inherited from Block
#can_append, #can_have_children, #caption, #color, #language, #url
Attributes inherited from Base
#archived, #has_children, #id, #json
Instance Method Summary collapse
-
#block_json(not_update: true) ⇒ Hash{String (frozen)->Hash
].
-
#initialize(text_info = nil, sub_blocks: nil, json: nil, id: nil, parent: nil) ⇒ TemplateBlock
constructor
A new instance of TemplateBlock.
- #type ⇒ Object
Methods inherited from Block
#append_after, #children_block_json, decode_block, #decode_block_caption, #decode_block_rich_text_array, #decode_color, #destroy, find, type2class, #update, #update_block_json
Methods inherited from Base
#append_block_children, #assert_parent_children_pair, #assign_property, #block?, block_id, #children, #comments, #cover, create_from_json, #created_time, #database?, database_id, dry_run_script, #get, #icon, #inspect, #json_properties, #last_edited_time, #new_record?, #page?, page_id, #parent, #parent_id, #properties, #property_values_json, #reload, #restore_from_json, #save, #set_cover, #set_icon, #synced_block_original?, #update_json
Constructor Details
#initialize(text_info = nil, sub_blocks: nil, json: nil, id: nil, parent: nil) ⇒ TemplateBlock
Returns a new instance of TemplateBlock.
8 9 10 11 12 13 14 15 16 17 |
# File 'lib/notion_ruby_mapping/blocks/template_block.rb', line 8 def initialize(text_info = nil, sub_blocks: nil, json: nil, id: nil, parent: nil) super(json: json, id: id, parent: parent) if @json decode_block_rich_text_array else rich_text_array_and_color "rich_text", text_info, nil add_sub_blocks sub_blocks end @can_have_children = true end |
Instance Attribute Details
#rich_text_array ⇒ Object (readonly)
Returns the value of attribute rich_text_array.
19 20 21 |
# File 'lib/notion_ruby_mapping/blocks/template_block.rb', line 19 def rich_text_array @rich_text_array end |
Instance Method Details
#block_json(not_update: true) ⇒ Hash{String (frozen)->Hash
Returns ].
23 24 25 26 27 28 |
# File 'lib/notion_ruby_mapping/blocks/template_block.rb', line 23 def block_json(not_update: true) ans = super ans[type] = @rich_text_array.update_property_schema_json not_update ans[type]["children"] = @sub_blocks.map(&:block_json) if @sub_blocks ans end |
#type ⇒ Object
30 31 32 |
# File 'lib/notion_ruby_mapping/blocks/template_block.rb', line 30 def type "template" end |