Sha256: 2a09de0aba9c198116eae943f2797d1524b9b8d8404d63dfc2f9cf5b94a4c966

Contents?: true

Size: 842 Bytes

Versions: 6

Compression:

Stored size: 842 Bytes

Contents

# frozen_string_literal: true

module ActionCable
  module Channel
    module Naming
      extend ActiveSupport::Concern

      class_methods do
        # Returns the name of the channel, underscored, without the <tt>Channel</tt> ending.
        # If the channel is in a namespace, then the namespaces are represented by single
        # colon separators in the channel name.
        #
        #   ChatChannel.channel_name # => 'chat'
        #   Chats::AppearancesChannel.channel_name # => 'chats:appearances'
        #   FooChats::BarAppearancesChannel.channel_name # => 'foo_chats:bar_appearances'
        def channel_name
          @channel_name ||= name.sub(/Channel$/, "").gsub("::", ":").underscore
        end
      end

      # Delegates to the class' <tt>channel_name</tt>
      delegate :channel_name, to: :class
    end
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
actioncable-5.2.0 lib/action_cable/channel/naming.rb
actioncable-5.2.0.rc2 lib/action_cable/channel/naming.rb
actioncable-5.2.0.rc1 lib/action_cable/channel/naming.rb
actioncable-5.2.0.beta2 lib/action_cable/channel/naming.rb
actioncable-5.2.0.beta1 lib/action_cable/channel/naming.rb
ruby-on-quails-0.1.0 actioncable/lib/action_cable/channel/naming.rb