Sha256: e5798cdb8dd3a7ab961ab09686a2527a0118c22e9a750b342b9fed2b829008c4
Contents?: true
Size: 980 Bytes
Versions: 27
Compression:
Stored size: 980 Bytes
Contents
# frozen_string_literal: true module Ariadne # Represents a linear timeline of events. Typically, this is shown # as part of the Conversation component. class TimelineComponent < Ariadne::Component DEFAULT_TAG = :div DEFAULT_CLASSES = "" # The sub-items(s) to render renders_many :items, lambda { |static_content = nil, &block| next static_content if static_content.present? view_context.capture { block&.call } } # @example Default # # <%= render(Ariadne::TimelineComponent.new) { "Example" } %> # # @param tag [Symbol, String] The rendered tag name # @param classes [String] <%= link_to_classes_docs %> # @param attributes [Hash] <%= link_to_attributes_docs %> def initialize(tag: DEFAULT_TAG, classes: "", attributes: {}) @tag = check_incoming_tag(DEFAULT_TAG, tag) @classes = class_names( DEFAULT_CLASSES, classes ) @attributes = attributes end end end
Version data entries
27 entries across 27 versions & 1 rubygems