Sha256: 5a5f353cd3605ac73d2436147c2dfbc4caf670c4496f91d950659c680abb2022

Contents?: true

Size: 1.17 KB

Versions: 15

Compression:

Stored size: 1.17 KB

Contents

class Card
  class Content
    module Chunk
      class ViewStub < Abstract
        Chunk.register_class(
          self,
          prefix_re: Regexp.escape("(stub)"),
          full_re: /\(stub\)([^\(]*)\(\/stub\)/,
          idx_char: "("
        )

        def initialize text, content
          super
        end

        def interpret match, _content
          @options_json = match[1]
          @stub_hash = JSON.parse(Card::View::Stub.unescape @options_json).symbolize_keys
          interpret_hash_values
        end

        def interpret_hash_values
          @stub_hash.keys.each do |key|
            send "interpret_#{key}"
          end
        end

        def interpret_cast
          @stub_hash[:cast].symbolize_keys!
        end

        def interpret_options
          @stub_hash[:options].symbolize_keys!
        end

        def interpret_mode
          @stub_hash[:mode] = @stub_hash[:mode].to_sym
        end

        def interpret_override
          @stub_hash[:override] = @stub_hash[:override] == "true"
        end

        def process_chunk
          @processed = yield @stub_hash
        end

        def result
          @processed
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
card-1.94.1 mod/core/chunk/view_stub.rb
card-1.94.0 mod/core/chunk/view_stub.rb
card-1.93.13 mod/core/chunk/view_stub.rb
card-1.93.12 mod/core/chunk/view_stub.rb
card-1.93.11 mod/core/chunk/view_stub.rb
card-1.93.10 mod/core/chunk/view_stub.rb
card-1.93.9 mod/core/chunk/view_stub.rb
card-1.93.8 mod/core/chunk/view_stub.rb
card-1.93.7 mod/core/chunk/view_stub.rb
card-1.93.6 mod/core/chunk/view_stub.rb
card-1.93.5 mod/core/chunk/view_stub.rb
card-1.93.4 mod/core/chunk/view_stub.rb
card-1.93.3 mod/core/chunk/view_stub.rb
card-1.93.2 mod/core/chunk/view_stub.rb
card-1.93.1 mod/core/chunk/view_stub.rb