Sha256: 09e7e557dbeb436e8624b632075d49f5fc2e8f3020010d535c021badce8240c1
Contents?: true
Size: 1.03 KB
Versions: 7
Compression:
Stored size: 1.03 KB
Contents
include_set Abstract::Items include_set Abstract::ReferenceList def raw_item_strings content reference_chunks(content).map(&:referee_name) end def item_titles default_to_name=true reference_chunks.map do |chunk| chunk.options[:title] || (default_to_name ? chunk.referee_name : nil) end end def standardize_item string string.match?(/^\[/) ? string : "[[#{string}]]" end def to_pointer_content map { |item| item.to_s.strip }.join "\n" end format :html do def input_type :link_list end view :input, cache: :never do _render_hidden_content_field + super() end def items_for_input items=nil items ||= card.item_names context: :raw items.empty? ? [["", ""]] : items.zip(card.item_titles(false)) end def link_list_input args={} items = items_for_input args[:item_list] extra_class = "pointer-link-list-ul" ul_classes = classy "pointer-list-editor", extra_class haml :link_list_input, items: items, ul_classes: ul_classes, options_card: :all.card # options_card_name end end
Version data entries
7 entries across 7 versions & 1 rubygems