Class: RailsAdmin::CSVConverter
- Inherits:
-
Object
- Object
- RailsAdmin::CSVConverter
- Defined in:
- lib/rails_admin/support/csv_converter.rb
Instance Method Summary collapse
-
#initialize(objects = [], schema = {}) ⇒ CSVConverter
constructor
A new instance of CSVConverter.
- #to_csv(options = {}) ⇒ Object
Constructor Details
#initialize(objects = [], schema = {}) ⇒ CSVConverter
Returns a new instance of CSVConverter.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/rails_admin/support/csv_converter.rb', line 6 def initialize(objects = [], schema = {}) @fields = [] @associations = [] return self if (@objects = objects).blank? @model = objects.dup.first.class @abstract_model = RailsAdmin::AbstractModel.new(@model) @model_config = @abstract_model.config @methods = [(schema[:only] || []) + (schema[:methods] || [])].flatten.compact @fields = @methods.collect { |m| export_fields_for(m).first } @empty = ::I18n.t('admin.export.empty_value_for_associated_objects') schema_include = schema.delete(:include) || {} @associations = schema_include.each_with_object({}) do |(key, values), hash| association = association_for(key) model_config = association.associated_model_config abstract_model = model_config.abstract_model methods = [(values[:only] || []) + (values[:methods] || [])].flatten.compact hash[key] = { association: association, model: abstract_model.model, abstract_model: abstract_model, model_config: model_config, fields: methods.collect { |m| export_fields_for(m, model_config).first }, } hash end end |
Instance Method Details
#to_csv(options = {}) ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'lib/rails_admin/support/csv_converter.rb', line 37 def to_csv( = {}) if CSV::VERSION == '3.0.2' raise <<-MSG.gsub(/^\s+/, '') CSV library bundled with Ruby 2.6.0 has encoding issue, please upgrade Ruby to 2.6.1 or later. https://github.com/ruby/csv/issues/62 MSG end = HashWithIndifferentAccess.new() encoding_to = Encoding.find([:encoding_to]) if [:encoding_to].present? csv_string = generate_csv_string() if encoding_to csv_string = csv_string.encode(encoding_to, invalid: :replace, undef: :replace, replace: '?') end # Add a BOM for utf8 encodings, helps with utf8 auto-detect for some versions of Excel. # Don't add if utf8 but user don't want to touch input encoding: # If user chooses utf8, they will open it in utf8 and BOM will disappear at reading. # But that way "English" users who don't bother and chooses to let utf8 by default won't get BOM added # and will not see it if Excel opens the file with a different encoding. csv_string = "\xEF\xBB\xBF#{csv_string}" if encoding_to == Encoding::UTF_8 [![:skip_header], (encoding_to || csv_string.encoding).to_s, csv_string] end |