Class: Array

Inherits:
Object show all
Defined in:
lib/crudboy/ext/array.rb

Instance Method Summary collapse

Instance Method Details

#dump(filename, batch_size = 500) ⇒ Object



131
132
133
134
135
136
137
138
# File 'lib/crudboy/ext/array.rb', line 131

def dump(filename, batch_size=500)
  File.open(File.expand_path(filename), 'w') do |file|
    group_by(&:class).each do |(klass, records)|
      file.puts(klass.to_upsert_sql(records, batch_size))
    end
  end
  {size: size, file: File.expand_path(filename)}
end

#t(*attrs, **options) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/crudboy/ext/array.rb', line 16

def t(*attrs, **options)
  if (attrs.present? || options.present? && options[:except]) && present? && first.is_a?(ActiveRecord::Base)
    column_names = first.attribute_names.map(&:to_sym)
    attrs = attrs.flat_map { |e| e.is_a?(Regexp) ? column_names.grep(e) : e }.uniq
    if options.present? && options[:except]
      attrs = column_names if attrs.empty?
      if options[:except].is_a?(Regexp)
        attrs.reject! { |e| e =~ options[:except] }
      else
        attrs -= [options[:except]].flatten
      end
    end
    puts Terminal::Table.new { |t|
      t << attrs
      t << :separator
      each do |e|
        t << e.attributes.values_at(*attrs.map(&:to_s))
      end
    }
  else
    table = Terminal::Table.new { |t|
      v.each { |row| t << (row || :separator)}
    }.to_s

    terminal_width = `tput cols`.to_i
    if table.lines.first.size > terminal_width
      table = table.lines.map(&:chomp)
      puts table[0..2].join("\n")
      puts table[3..-1].join("\n#{'-' * terminal_width}\n")
    else
      puts table
    end
  end
end

#to_insert_sql(batch_size = 500) ⇒ Object



2
3
4
5
6
7
# File 'lib/crudboy/ext/array.rb', line 2

def to_insert_sql(batch_size=500)
  raise 'All element should be an ActiveRecord instance object' unless all? { |e| e.is_a?(ActiveRecord::Base) }
  group_by(&:class).map do |(klass, records)|
    klass.to_insert_sql(records, batch_size)
  end.join("\n")
end

#to_upsert_sql(batch_size = 500) ⇒ Object



9
10
11
12
13
14
# File 'lib/crudboy/ext/array.rb', line 9

def to_upsert_sql(batch_size=500)
  raise 'All element should be an ActiveRecord instance object' unless all? { |e| e.is_a?(ActiveRecord::Base) }
  group_by(&:class).map do |(klass, records)|
    klass.to_upsert_sql(records, batch_size)
  end.join("\n")
end

#vObject



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/crudboy/ext/array.rb', line 51

def v
  return self unless present?
  t = []
  if map(&:class).uniq.size == 1
    if first.is_a?(ActiveRecord::Base)
      t << first.attribute_names
      t << nil
      each do |e|
        t << e.attributes.values_at(*first.attribute_names).map(&:as_json)
      end
    elsif first.is_a?(Array)
      t = map { |a| a.map(&:as_json) }
    elsif first.is_a?(Hash) || first.is_a?(ActiveSupport::HashWithIndifferentAccess)
      t << first.keys
      t << nil
      each do |e|
        t << e.values_at(*first.keys).map(&:as_json)
      end
    else
      return self
    end
  end
  t
end

#write_csv(filename, *fields, **options) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/crudboy/ext/array.rb', line 76

def write_csv(filename, *fields, **options)
  generate_csv(filename, **options) do |csv|
    if size > 0 && first.is_a?(ActiveRecord::Base)
      if fields.empty?
        fields = first.attributes.keys
      else
        fields = fields.map(&:to_s)
      end
      csv << fields
    end
    if size > 0 && first.is_a?(Hash)
      if fields.empty?
        fields = first.keys
      end
      csv << fields
    end
    each do |row|
      if row.is_a?(Array)
        csv << row.map(&:to_s)
      else
        csv << row.slice(*fields).values.map(&:to_s)
      end
    end
  end
end

#write_excel(filename, *fields, **options) ⇒ Object



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/crudboy/ext/array.rb', line 102

def write_excel(filename, *fields, **options)
  sheet_name = options[:sheet_name] || 'Sheet1'
  generate_excel(filename) do |workbook|
    workbook.add_worksheet(name: sheet_name) do |sheet|
      if size > 0 && first.is_a?(ActiveRecord::Base)
        if fields.empty?
          fields = first.attributes.keys
        else
          fields = fields.map(&:to_s)
        end
        sheet.add_row(fields, types: [:string] * fields.size)
      end
      if size > 0 && first.is_a?(Hash)
        if fields.empty?
          fields = first.keys
        end
        sheet.add_row(fields, types: [:string] * fields.size)
      end
      each do |row|
        if row.is_a?(Array)
          sheet.add_row(row.map(&:to_s), types: [:string] * row.size)
        else
          sheet.add_row(row.slice(*fields).values.map(&:to_s), types: [:string] * fields.size)
        end
      end
    end
  end
end