mongoid_form 0.0.2 → 0.0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/README.md CHANGED
@@ -23,7 +23,7 @@ It makes your life easy when you develop forms and your app use [mongoid](https:
23
23
  # config/initializers/mongoid_form_config.rb
24
24
  ...
25
25
  # this option add after label text "<div class=\"flag flags-en\" />" to each locale fo localized fields
26
- # you should styling .flag > .flags-en (.flags-ru etc.) in your css.
26
+ # you should styling .flag and .flags-en (.flags-ru etc.) in your css.
27
27
  flag_for_localized true
28
28
  ...
29
29
  ```
@@ -17,7 +17,7 @@ module MongoidForm
17
17
  end
18
18
 
19
19
  def error_notification
20
- if any_errors?
20
+ if any_errors? && wrapper.main_error_i18n_key.present?
21
21
  alert { I18n::t(*wrapper.main_error_i18n_key, model: @object.class.model_name.human, count: @object.errors.size) }
22
22
  end
23
23
  end
@@ -79,8 +79,6 @@ module MongoidForm
79
79
  result = ''
80
80
  I18n.available_locales.each do |locale|
81
81
  field = builder.object_name.scan(/(.*)\[(.*)_translations\]/).join('.')
82
- Rails.logger.info "$$$"*10
83
- Rails.logger.info wrapper.flag_for_localized.inspect
84
82
  flag = wrapper.flag_for_localized.first ? wrap('', [:div, class: "flag flags-#{locale.to_s}"]) : ''
85
83
  label = builder.label locale.to_sym, *wrapper.label_options do
86
84
  asterisk(name) + I18n::t("mongoid.attributes.#{field}") + flag
@@ -107,7 +105,11 @@ module MongoidForm
107
105
  end
108
106
 
109
107
  def error(name)
110
- has_error?(name) ? wrap(get_error(name), wrapper.error_block) : ''
108
+ if has_error?(name)
109
+ wrapper.error_block.present? ? wrap(get_error(name), wrapper.error_block) : get_error(name)
110
+ else
111
+ ''
112
+ end
111
113
  end
112
114
 
113
115
  def get_error(name)
@@ -1,3 +1,3 @@
1
1
  module MongoidForm
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mongoid_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.2.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: