Sha256: fd200e1c971f0243bf3ea5bd955152648abc12037dd0975c3e538f2cac972da4

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

require 'csv'

format :csv  do
  def get_inclusion_defaults
    { :view => :core }
  end
  
  def default_item_view 
    @depth == 0 ? :csv_row : :name
  end

  
  view :csv_row do |args|
    array = _render_raw.scan( /\{\{[^\}]*\}\}/ ).map do |inc|
      process_content( inc ).strip
    end
    
    CSV.generate_line(array).strip
    #strip is because search already joins with newlines
  end

  view :missing do |args|
    ''
  end

  view :csv_title_row do |args|
    #NOTE: assumes all cards have the same structure!
    begin
      card1 = search_vars[:results].first  
    
      parsed_content = Card::Content.new card1.content, self
      unless String === parsed_content.__getobj__
        titles = parsed_content.map do |chunk|
          next if chunk.class != Card::Chunk::Include
          opts = chunk.options
          if ['name','link'].member? opts[:view]
            opts[:view]
          else
            opts[:inc_name].to_name.tag
          end
        end.compact.map {|title| title.to_s.upcase }
        CSV.generate_line titles
        
      else
        ''
      end
    rescue
      ''
    end
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wagn-1.13.0 mod/standard/set/all/all_csv.rb
wagn-1.13.0.pre2 mods/standard/sets/all/all_csv.rb
wagn-1.13.0.pre1 mods/standard/sets/all/all_csv.rb
wagn-1.13.0.pre mods/standard/sets/all/all_csv.rb