Sha256: 8a6741598eccd3b9d29fd99cb8f53de1fd6f4ad5480c2d8604b3aef19ae0f3c4

Contents?: true

Size: 908 Bytes

Versions: 114

Compression:

Stored size: 908 Bytes

Contents

# frozen_string_literal: true

module ActionText
  module Attachables
    class ContentAttachment
      include ActiveModel::Model

      def self.from_node(node)
        if node["content-type"]
          if matches = node["content-type"].match(/vnd\.rubyonrails\.(.+)\.html/)
            attachment = new(name: matches[1])
            attachment if attachment.valid?
          end
        end
      end

      attr_accessor :name
      validates_inclusion_of :name, in: %w( horizontal-rule )

      def attachable_plain_text_representation(caption)
        case name
        when "horizontal-rule"
          " ┄ "
        else
          " "
        end
      end

      def to_partial_path
        "action_text/attachables/content_attachment"
      end

      def to_trix_content_attachment_partial_path
        "action_text/attachables/content_attachments/#{name.underscore}"
      end
    end
  end
end

Version data entries

114 entries across 110 versions & 10 rubygems

Version Path
actiontext-7.0.0 lib/action_text/attachables/content_attachment.rb
actiontext-6.1.4.4 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.4.4 lib/action_text/attachables/content_attachment.rb
actiontext-7.0.0.rc3 lib/action_text/attachables/content_attachment.rb
actiontext-6.1.4.3 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.4.3 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.4.2 lib/action_text/attachables/content_attachment.rb
actiontext-6.1.4.2 lib/action_text/attachables/content_attachment.rb
actiontext-7.0.0.rc2 lib/action_text/attachables/content_attachment.rb
actiontext-7.0.0.rc1 lib/action_text/attachables/content_attachment.rb
date_n_time_picker_activeadmin-0.1.2 vendor/bundle/ruby/2.6.0/gems/actiontext-6.1.4.1/lib/action_text/attachables/content_attachment.rb
date_n_time_picker_activeadmin-0.1.1 vendor/bundle/ruby/2.6.0/gems/actiontext-6.1.4.1/lib/action_text/attachables/content_attachment.rb
actiontext-7.0.0.alpha2 lib/action_text/attachables/content_attachment.rb
actiontext-7.0.0.alpha1 lib/action_text/attachables/content_attachment.rb
actiontext-6.1.4.1 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.4.1 lib/action_text/attachables/content_attachment.rb
rails_mini_profiler-0.2.0 vendor/bundle/ruby/3.0.0/gems/actiontext-6.1.4/lib/action_text/attachables/content_attachment.rb
actiontext-6.1.4 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.4 lib/action_text/attachables/content_attachment.rb
actiontext-6.0.3.7 lib/action_text/attachables/content_attachment.rb