Sha256: f1d6601983d17e498f3c70a95792ea6ddce20eb4d7c7c7a836a6c707757cf5e2

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

# frozen_string_literal: true

module Slack
  module BlockKit
    module Element
      # A select menu, just as with a standard HTML <select> tag, creates a drop
      # down menu with a list of options for a user to choose. The select menu
      # also includes type-ahead functionality, where a user can type a part or
      # all of an option string to filter the list.
      #
      # This multi-select menu will populate its options with a list of public
      # channels visible to the current user in the active workspace.
      #
      # https://api.slack.com/reference/block-kit/block-elements#channel_multi_select
      class MultiChannelsSelect
        TYPE = 'multi_channels_select'

        attr_accessor :confirm

        def initialize(placeholder:, action_id:, initial: nil, emoji: nil, max_selected_items: nil)
          @placeholder = Composition::PlainText.new(text: placeholder, emoji: emoji)
          @action_id = action_id
          @initial_channel = initial
          @confirm = nil
          @max_selected_items = max_selected_items

          yield(self) if block_given?
        end

        def confirmation_dialog
          @confirm = Composition::ConfirmationDialog.new

          yield(@confirm) if block_given?

          self
        end

        def as_json(*)
          {
            type: TYPE,
            placeholder: @placeholder.as_json,
            action_id: @action_id,
            initial_channel: @initial_channel,
            confirm: @confirm&.as_json,
            max_selected_items: @max_selected_items
          }.compact
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
slack-ruby-block-kit-0.9.0 lib/slack/block_kit/element/multi_channels_select.rb
slack-ruby-block-kit-0.8.0 lib/slack/block_kit/element/multi_channels_select.rb
slack-ruby-block-kit-0.7.0 lib/slack/block_kit/element/multi_channels_select.rb