Sha256: 58ad7f12678ca3d70ba498d98e6987db83374fc3e8c972b46d81b869b8291f50

Contents?: true

Size: 477 Bytes

Versions: 43

Compression:

Stored size: 477 Bytes

Contents

# frozen_string_literal: true
module Dato
  module Local
    module FieldType
      class RichText < Array
        def self.parse(ids, repo)
          items = if ids
                    ids.map { |id| repo.find(id) }
                  else
                    []
                  end
          new(items)
        end

        def to_hash(max_depth = 3, current_depth = 0)
          map { |item| item.to_hash(max_depth, current_depth) }
        end
      end
    end
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
dato-0.6.9 lib/dato/local/field_type/rich_text.rb
dato-0.6.8 lib/dato/local/field_type/rich_text.rb
dato-0.6.7 lib/dato/local/field_type/rich_text.rb
dato-0.6.6 lib/dato/local/field_type/rich_text.rb
dato-0.6.5 lib/dato/local/field_type/rich_text.rb
dato-0.6.3 lib/dato/local/field_type/rich_text.rb
dato-0.6.3.beta lib/dato/local/field_type/rich_text.rb
dato-0.6.2 lib/dato/local/field_type/rich_text.rb
dato-0.6.1 lib/dato/local/field_type/rich_text.rb
dato-0.6.0 lib/dato/local/field_type/rich_text.rb
dato-0.5.1 lib/dato/local/field_type/rich_text.rb
dato-0.5.0 lib/dato/local/field_type/rich_text.rb
dato-0.4.3 lib/dato/local/field_type/rich_text.rb
dato-0.4.2 lib/dato/local/field_type/rich_text.rb
dato-0.4.1 lib/dato/local/field_type/rich_text.rb
dato-0.4.0 lib/dato/local/field_type/rich_text.rb
dato-0.3.31 lib/dato/local/field_type/rich_text.rb
dato-0.4.0.pre lib/dato/local/field_type/rich_text.rb
dato-0.3.30 lib/dato/local/field_type/rich_text.rb
dato-0.3.29 lib/dato/local/field_type/rich_text.rb