Class: NotionRubyMapping::PropertyCache

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/notion_ruby_mapping/controllers/property_cache.rb

Overview

PropertyCache class

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(json = {}, base_type: :page) ⇒ PropertyCache

Returns a new instance of PropertyCache.



7
8
9
10
11
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 7

def initialize(json = {}, base_type: :page)
  @properties = {}
  @json = json
  @base_type = base_type
end

Instance Attribute Details

#json=(value) ⇒ Object (writeonly)

Sets the attribute json

Parameters:

  • value

    the value to set the attribute json to.



12
13
14
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 12

def json=(value)
  @json = value
end

Instance Method Details

#[](key) ⇒ Property

Returns Property for key.



17
18
19
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 17

def [](key)
  @properties[key] ||= Property.create_from_json key, @json[key], @base_type
end

#add_property(property) ⇒ Object

Parameters:

  • property (Property)

    added Property



22
23
24
25
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 22

def add_property(property)
  @properties[property.name] = property
  self
end

#clear_will_updateObject



27
28
29
30
31
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 27

def clear_will_update
  @properties.each do |_, property|
    property.clear_will_update
  end
end

#each(&block) ⇒ Hash, Enumerator

Returns:

  • (Hash, Enumerator)


34
35
36
37
38
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 34

def each(&block)
  return enum_for(:each) unless block_given?

  generate_all_properties.each(&block)
end

#generate_all_propertiesObject



40
41
42
43
44
45
46
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 40

def generate_all_properties
  if @json.empty?
    @properties.values
  else
    @json.keys.map { |key| self[key] }
  end
end

#property_schema_jsonHash

Returns created property schema json.

Returns:

  • (Hash)

    created property schema json



59
60
61
62
63
64
65
66
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 59

def property_schema_json
  @properties.each_with_object({}) do |(_, property), ans|
    if property.will_update
      ans["properties"] ||= {}
      ans["properties"].merge! property.property_schema_json
    end
  end
end

#property_values_jsonHash

Returns created property values json.

Returns:

  • (Hash)

    created property values json



49
50
51
52
53
54
55
56
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 49

def property_values_json
  @properties.each_with_object({}) do |(_, property), ans|
    if property.will_update
      ans["properties"] ||= {}
      ans["properties"].merge! property.property_values_json
    end
  end
end

#update_property_schema_jsonHash

Returns created update property schema json.

Returns:

  • (Hash)

    created update property schema json



69
70
71
72
73
74
75
76
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 69

def update_property_schema_json
  @properties.each_with_object({}) do |(_, property), ans|
    if property.will_update
      ans["properties"] ||= {}
      ans["properties"].merge! property.update_property_schema_json
    end
  end
end

#values_at(*key) ⇒ Array



81
82
83
84
# File 'lib/notion_ruby_mapping/controllers/property_cache.rb', line 81

def values_at(*key)
  generate_all_properties
  @properties.values_at(*key)
end