Sha256: 50cb4d16a9c3f43d6a1d684ce7f5608caa0513c97222ca239d44b4655d9ccdcd

Contents?: true

Size: 1.25 KB

Versions: 10

Compression:

Stored size: 1.25 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 select menu will populate its options with a list of Slack users
      # visible to the current user in the active workspace.
      #
      # https://api.slack.com/reference/messaging/block-elements#users-select
      class UsersSelect
        include Composition::ConfirmationDialog::Confirmable

        TYPE = 'users_select'

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

          yield(self) if block_given?
        end

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
slack-ruby-block-kit-0.19.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.18.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.17.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.16.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.15.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.14.1 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.14.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.13.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.12.0 lib/slack/block_kit/element/users_select.rb
slack-ruby-block-kit-0.11.0 lib/slack/block_kit/element/users_select.rb