Sha256: c7adde82f378e981659fb5a0e6759905457d192c72865f144f4655a638c494cb

Contents?: true

Size: 1.18 KB

Versions: 6

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

module Renalware
  module SnippetsHelper
    # Adds to the page:
    # - the snippets modal dialog container (which will be ajax-populated)
    # - the link to invoke the snippets dialog (loading content via ajax)
    # Note that the data-target on the modal container determines which textarea is
    # populated with when a snippet is selected.
    def snippets_modal_and_link_to_open_it(target_input_for_seleted_snippet:)
      capture do
        concat content_tag(:div,
                           nil,
                           id: "snippets-modal",
                           class: "reveal-modal",
                           data: {
                             reveal: "data-reveal",
                             controller: "snippets",
                             "snippets-target-input" => target_input_for_seleted_snippet,
                             target: target_input_for_seleted_snippet
                           })
        concat link_to t("snippets.insert"),
                       snippets_path(format: :js),
                       class: "button alternative right insert-snippet-button",
                       remote: true
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
renalware-core-2.0.149 app/helpers/renalware/snippets_helper.rb
renalware-core-2.0.148 app/helpers/renalware/snippets_helper.rb
renalware-core-2.0.147 app/helpers/renalware/snippets_helper.rb
renalware-core-2.0.146 app/helpers/renalware/snippets_helper.rb
renalware-core-2.0.145 app/helpers/renalware/snippets_helper.rb
renalware-core-2.0.144 app/helpers/renalware/snippets_helper.rb