ui_bibz 2.4.0 → 2.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (273) hide show
  1. checksums.yaml +4 -4
  2. data/.overcommit.yml +5 -0
  3. data/.rubocop.yml +52 -0
  4. data/.rubocop_todo.yml +25 -0
  5. data/Gemfile +5 -3
  6. data/Gemfile.lock +25 -1
  7. data/Rakefile +8 -6
  8. data/config/initializers/simple_form_init.rb +3 -1
  9. data/config/initializers/will_paginate.rb +11 -6
  10. data/lib/generators/ui_bibz/install_generator.rb +6 -5
  11. data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +1 -1
  12. data/lib/tasks/ui_bibz_tasks.rake +2 -0
  13. data/lib/ui_bibz.rb +91 -100
  14. data/lib/ui_bibz/concerns/models/searchable.rb +56 -61
  15. data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -9
  16. data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +26 -26
  17. data/lib/ui_bibz/helpers/ui/core/icons_helper.rb +6 -6
  18. data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +5 -5
  19. data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +5 -4
  20. data/lib/ui_bibz/helpers/ui/core/navigations_helper.rb +9 -9
  21. data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +11 -11
  22. data/lib/ui_bibz/helpers/ui/core/windows_helper.rb +3 -3
  23. data/lib/ui_bibz/helpers/ui/core_helper.rb +2 -0
  24. data/lib/ui_bibz/helpers/ui/ux_helper.rb +12 -12
  25. data/lib/ui_bibz/helpers/utils_helper.rb +8 -11
  26. data/lib/ui_bibz/infos.rb +9 -7
  27. data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +40 -39
  28. data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +6 -5
  29. data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +8 -6
  30. data/lib/ui_bibz/inputs/ui_bibz_inputs/string_input.rb +18 -18
  31. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_auto_complete_field_input.rb +3 -2
  32. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_box_switch_field_input.rb +3 -2
  33. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +3 -2
  34. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_group_input.rb +6 -5
  35. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_date_picker_field_input.rb +3 -2
  36. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_dropdown_select_field_input.rb +3 -3
  37. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb +3 -2
  38. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_formula_field_input.rb +5 -4
  39. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_markdown_editor_field_input.rb +3 -2
  40. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_column_field_input.rb +3 -2
  41. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_select_field_input.rb +3 -3
  42. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_number_field_input.rb +3 -2
  43. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_radio_field_input.rb +7 -7
  44. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_range_field_input.rb +3 -2
  45. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_select_field_input.rb +3 -2
  46. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_switch_field_input.rb +3 -2
  47. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_text_field_input.rb +3 -2
  48. data/lib/ui_bibz/rails/engine.rb +11 -15
  49. data/lib/ui_bibz/ui/base.rb +10 -6
  50. data/lib/ui_bibz/ui/core/boxes/card.rb +31 -32
  51. data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +7 -8
  52. data/lib/ui_bibz/ui/core/boxes/card_column.rb +11 -12
  53. data/lib/ui_bibz/ui/core/boxes/card_deck.rb +11 -12
  54. data/lib/ui_bibz/ui/core/boxes/card_group.rb +11 -12
  55. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +5 -6
  56. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +5 -6
  57. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +5 -6
  58. data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +11 -12
  59. data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +7 -8
  60. data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +12 -13
  61. data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +6 -7
  62. data/lib/ui_bibz/ui/core/boxes/components/card_list_group.rb +4 -5
  63. data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +5 -6
  64. data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +5 -6
  65. data/lib/ui_bibz/ui/core/component.rb +22 -20
  66. data/lib/ui_bibz/ui/core/forms/buttons/button.rb +14 -15
  67. data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +14 -15
  68. data/lib/ui_bibz/ui/core/forms/buttons/button_link.rb +5 -6
  69. data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +11 -11
  70. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +5 -6
  71. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +5 -6
  72. data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +5 -6
  73. data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +10 -11
  74. data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +8 -9
  75. data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +5 -6
  76. data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +6 -7
  77. data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +4 -5
  78. data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +22 -23
  79. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +3 -5
  80. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +4 -5
  81. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_link.rb +6 -7
  82. data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +21 -22
  83. data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +8 -9
  84. data/lib/ui_bibz/ui/core/forms/files/file_field.rb +5 -6
  85. data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +10 -11
  86. data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +3 -4
  87. data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +3 -4
  88. data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +9 -9
  89. data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -7
  90. data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +9 -10
  91. data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +13 -14
  92. data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +6 -7
  93. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +4 -4
  94. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +3 -3
  95. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +3 -3
  96. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +3 -3
  97. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +3 -3
  98. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +4 -4
  99. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +3 -3
  100. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +3 -3
  101. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +3 -3
  102. data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +24 -25
  103. data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -5
  104. data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +6 -7
  105. data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +6 -6
  106. data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +5 -6
  107. data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +5 -6
  108. data/lib/ui_bibz/ui/core/icons/glyph.rb +13 -14
  109. data/lib/ui_bibz/ui/core/icons/glyph_group.rb +16 -17
  110. data/lib/ui_bibz/ui/core/icons/star.rb +7 -9
  111. data/lib/ui_bibz/ui/core/layouts/col.rb +20 -21
  112. data/lib/ui_bibz/ui/core/layouts/container.rb +5 -6
  113. data/lib/ui_bibz/ui/core/layouts/row.rb +4 -5
  114. data/lib/ui_bibz/ui/core/lists/components/list.rb +19 -20
  115. data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +4 -5
  116. data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +5 -6
  117. data/lib/ui_bibz/ui/core/lists/list_group.rb +15 -16
  118. data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +5 -6
  119. data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +7 -8
  120. data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +6 -7
  121. data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +12 -13
  122. data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +7 -8
  123. data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +4 -5
  124. data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +8 -9
  125. data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +8 -9
  126. data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +5 -6
  127. data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +8 -8
  128. data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +6 -7
  129. data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +6 -7
  130. data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +5 -6
  131. data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +7 -7
  132. data/lib/ui_bibz/ui/core/navigations/link.rb +6 -7
  133. data/lib/ui_bibz/ui/core/navigations/nav.rb +20 -27
  134. data/lib/ui_bibz/ui/core/navigations/navbar.rb +23 -24
  135. data/lib/ui_bibz/ui/core/navigations/pagination.rb +9 -12
  136. data/lib/ui_bibz/ui/core/navigations/tab_group.rb +7 -8
  137. data/lib/ui_bibz/ui/core/navigations/toolbar.rb +14 -15
  138. data/lib/ui_bibz/ui/core/notifications/alert.rb +11 -12
  139. data/lib/ui_bibz/ui/core/notifications/badge.rb +7 -8
  140. data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +5 -6
  141. data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +8 -9
  142. data/lib/ui_bibz/ui/core/notifications/components/bar.rb +11 -12
  143. data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +5 -6
  144. data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +7 -8
  145. data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +12 -13
  146. data/lib/ui_bibz/ui/core/notifications/spinner.rb +11 -12
  147. data/lib/ui_bibz/ui/core/notifications/toast.rb +9 -10
  148. data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +4 -5
  149. data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +4 -5
  150. data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +6 -7
  151. data/lib/ui_bibz/ui/core/windows/modal.rb +8 -9
  152. data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -15
  153. data/lib/ui_bibz/ui/extensions/core/component/klass_extension.rb +9 -10
  154. data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +22 -21
  155. data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +9 -9
  156. data/lib/ui_bibz/ui/extensions/core/forms/surround_extension.rb +8 -10
  157. data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +5 -6
  158. data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +6 -7
  159. data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +6 -7
  160. data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +5 -6
  161. data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +6 -7
  162. data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +12 -12
  163. data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +5 -6
  164. data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +5 -6
  165. data/lib/ui_bibz/ui/ux/containers/panel.rb +21 -22
  166. data/lib/ui_bibz/ui/ux/tables/components/actions.rb +14 -16
  167. data/lib/ui_bibz/ui/ux/tables/components/as.rb +8 -9
  168. data/lib/ui_bibz/ui/ux/tables/components/column.rb +4 -4
  169. data/lib/ui_bibz/ui/ux/tables/components/columns.rb +4 -3
  170. data/lib/ui_bibz/ui/ux/tables/components/store.rb +5 -7
  171. data/lib/ui_bibz/ui/ux/tables/components/thead.rb +5 -6
  172. data/lib/ui_bibz/ui/ux/tables/extensions/actionable.rb +24 -23
  173. data/lib/ui_bibz/ui/ux/tables/extensions/paginable.rb +8 -10
  174. data/lib/ui_bibz/ui/ux/tables/extensions/searchable.rb +9 -9
  175. data/lib/ui_bibz/ui/ux/tables/extensions/sortable.rb +26 -26
  176. data/lib/ui_bibz/ui/ux/tables/table.rb +32 -39
  177. data/lib/ui_bibz/ui/ux/tables/table_card.rb +18 -26
  178. data/lib/ui_bibz/ui/ux/tables/table_pagination.rb +15 -18
  179. data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +15 -18
  180. data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +19 -23
  181. data/lib/ui_bibz/utils/glyph_changer.rb +13 -13
  182. data/lib/ui_bibz/utils/internationalization.rb +10 -7
  183. data/lib/ui_bibz/utils/screwdriver.rb +7 -5
  184. data/test/dummy/Rakefile +3 -1
  185. data/test/dummy/app/controllers/application_controller.rb +2 -0
  186. data/test/dummy/app/controllers/users_controller.rb +15 -14
  187. data/test/dummy/app/helpers/application_helper.rb +2 -0
  188. data/test/dummy/app/models/application_record.rb +2 -0
  189. data/test/dummy/app/models/continent.rb +2 -0
  190. data/test/dummy/app/models/country.rb +2 -0
  191. data/test/dummy/app/models/user.rb +2 -0
  192. data/test/dummy/bin/bundle +3 -1
  193. data/test/dummy/bin/rails +3 -1
  194. data/test/dummy/bin/rake +2 -0
  195. data/test/dummy/bin/setup +10 -8
  196. data/test/dummy/config.ru +2 -0
  197. data/test/dummy/config/application.rb +5 -4
  198. data/test/dummy/config/boot.rb +4 -2
  199. data/test/dummy/config/environment.rb +3 -1
  200. data/test/dummy/config/environments/development.rb +2 -0
  201. data/test/dummy/config/environments/production.rb +2 -0
  202. data/test/dummy/config/environments/test.rb +2 -0
  203. data/test/dummy/config/initializers/assets.rb +2 -0
  204. data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
  205. data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
  206. data/test/dummy/config/initializers/filter_parameter_logging.rb +2 -0
  207. data/test/dummy/config/initializers/inflections.rb +2 -0
  208. data/test/dummy/config/initializers/mime_types.rb +2 -0
  209. data/test/dummy/config/initializers/session_store.rb +2 -0
  210. data/test/dummy/config/initializers/simple_form_bootstrap.rb +3 -1
  211. data/test/dummy/config/initializers/ui_bibz.rb +1 -1
  212. data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
  213. data/test/dummy/config/routes.rb +2 -0
  214. data/test/dummy/db/migrate/20150123191805_create_users.rb +2 -0
  215. data/test/dummy/db/migrate/20170309084406_continents.rb +2 -0
  216. data/test/dummy/db/migrate/20170309084453_countries.rb +2 -0
  217. data/test/dummy/db/schema.rb +22 -22
  218. data/test/dummy/test/models/user_test.rb +2 -0
  219. data/test/factories/user.rb +6 -4
  220. data/test/simple_form_test.rb +28 -34
  221. data/test/store_test.rb +10 -9
  222. data/test/support/factory_bot.rb +9 -5
  223. data/test/test_helper.rb +8 -8
  224. data/test/ui/core/boxes/card_test.rb +28 -26
  225. data/test/ui/core/boxes/jumbotron_test.rb +4 -3
  226. data/test/ui/core/component_test.rb +4 -4
  227. data/test/ui/core/forms/buttons/button_group_test.rb +8 -7
  228. data/test/ui/core/forms/buttons/button_link_test.rb +16 -14
  229. data/test/ui/core/forms/buttons/button_refresh_test.rb +5 -5
  230. data/test/ui/core/forms/buttons/button_test.rb +25 -23
  231. data/test/ui/core/forms/choices/box_switch_field_test.rb +62 -62
  232. data/test/ui/core/forms/choices/checkbox_field_test.rb +7 -6
  233. data/test/ui/core/forms/choices/choice_group_test.rb +6 -5
  234. data/test/ui/core/forms/choices/radio_field_test.rb +7 -6
  235. data/test/ui/core/forms/dates/date_picker_field_test.rb +12 -11
  236. data/test/ui/core/forms/dropdowns/dropdown_test.rb +12 -11
  237. data/test/ui/core/forms/files/text_field_test.rb +7 -6
  238. data/test/ui/core/forms/numbers/formula_field_test.rb +7 -6
  239. data/test/ui/core/forms/numbers/number_field_test.rb +12 -11
  240. data/test/ui/core/forms/numbers/range_field_test.rb +12 -11
  241. data/test/ui/core/forms/selects/dropdown_select_field_test.rb +61 -60
  242. data/test/ui/core/forms/selects/multi_column_field_test.rb +14 -13
  243. data/test/ui/core/forms/selects/multi_select_field_test.rb +19 -18
  244. data/test/ui/core/forms/selects/select_field_test.rb +13 -13
  245. data/test/ui/core/forms/surrounds/surround_field_test.rb +54 -54
  246. data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +7 -6
  247. data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -7
  248. data/test/ui/core/forms/texts/text_field_test.rb +17 -16
  249. data/test/ui/core/icons/glyph_group_test.rb +8 -8
  250. data/test/ui/core/icons/glyph_test.rb +4 -4
  251. data/test/ui/core/icons/star_test.rb +37 -36
  252. data/test/ui/core/layouts/col_test.rb +11 -10
  253. data/test/ui/core/layouts/container_test.rb +3 -2
  254. data/test/ui/core/layouts/row_test.rb +4 -3
  255. data/test/ui/core/lists/list_group_test.rb +7 -6
  256. data/test/ui/core/navigations/breadcrumb_test.rb +12 -14
  257. data/test/ui/core/navigations/link_test.rb +9 -8
  258. data/test/ui/core/navigations/nav_test.rb +22 -21
  259. data/test/ui/core/navigations/navbar_test.rb +11 -11
  260. data/test/ui/core/navigations/pagination_test.rb +14 -13
  261. data/test/ui/core/navigations/tab_group_test.rb +22 -21
  262. data/test/ui/core/navigations/toolbar_test.rb +4 -3
  263. data/test/ui/core/notifications/alert_test.rb +5 -4
  264. data/test/ui/core/notifications/badge_test.rb +5 -4
  265. data/test/ui/core/notifications/progress_bar_test.rb +13 -13
  266. data/test/ui/core/notifications/spinner_test.rb +9 -8
  267. data/test/ui/core/notifications/toast_test.rb +3 -2
  268. data/test/ui/core/windows/modal_test.rb +3 -2
  269. data/test/ui/ux/containers/panel_test.rb +7 -6
  270. data/test/ui/ux/tables/table_test.rb +33 -33
  271. data/test/ui_bibz_test.rb +3 -1
  272. data/ui_bibz.gemspec +32 -28
  273. metadata +73 -42
@@ -1,5 +1,6 @@
1
- module UiBibz::Helpers::Ui::Core::IconsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::IconsHelper
3
4
  # Glyph Component
4
5
  #
5
6
  # + content+ (String || Hash) [Required]
@@ -10,7 +11,7 @@ module UiBibz::Helpers::Ui::Core::IconsHelper
10
11
  # => glyph 'calendar', size: :xs
11
12
  # or
12
13
  # => glyph { name: 'calendar', size: :xs }
13
- def ui_glyph content, options = nil, html_options = nil, &block
14
+ def ui_glyph(content, options = nil, html_options = nil, &block)
14
15
  UiBibz::Ui::Core::Icons::Glyph.new(content, options, html_options, &block).render
15
16
  end
16
17
 
@@ -20,7 +21,7 @@ module UiBibz::Helpers::Ui::Core::IconsHelper
20
21
  # +options+ (Hash)
21
22
  # +html_options+ (Hash)
22
23
  #
23
- def ui_glyph_group content = nil, options = nil, html_options = nil, &block
24
+ def ui_glyph_group(content = nil, options = nil, html_options = nil, &block)
24
25
  UiBibz::Ui::Core::Icons::GlyphGroup.new(content, options, html_options).tap(&block).render
25
26
  end
26
27
 
@@ -28,7 +29,7 @@ module UiBibz::Helpers::Ui::Core::IconsHelper
28
29
  #
29
30
  # +options+ (Hash)
30
31
  #
31
- def ui_glyph_or_glyph_group glyph_options, options = {}
32
+ def ui_glyph_or_glyph_group(glyph_options, options = {})
32
33
  UiBibz::Utils::GlyphChanger.new(glyph_options, options).render
33
34
  end
34
35
 
@@ -36,8 +37,7 @@ module UiBibz::Helpers::Ui::Core::IconsHelper
36
37
  #
37
38
  # +options+ (Hash)
38
39
  # +html_options+ (Hash)
39
- def ui_star content = nil, options = nil, html_options = nil, &block
40
+ def ui_star(content = nil, options = nil, html_options = nil, &block)
40
41
  UiBibz::Ui::Core::Icons::Star.new(content, options, html_options, &block).render
41
42
  end
42
-
43
43
  end
@@ -1,10 +1,11 @@
1
- module UiBibz::Helpers::Ui::Core::LayoutsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::LayoutsHelper
3
4
  # Row Component
4
5
  #
5
6
  # +options+ (Hash)
6
7
  # +html_options+ (Hash)
7
- def ui_row content = nil, options = nil, html_options = nil, &block
8
+ def ui_row(content = nil, options = nil, html_options = nil, &block)
8
9
  UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options, &block).render
9
10
  end
10
11
 
@@ -12,7 +13,7 @@ module UiBibz::Helpers::Ui::Core::LayoutsHelper
12
13
  #
13
14
  # +options+ (Hash)
14
15
  # +html_options+ (Hash)
15
- def ui_col content = nil, options = nil, html_options = nil, &block
16
+ def ui_col(content = nil, options = nil, html_options = nil, &block)
16
17
  UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options, &block).render
17
18
  end
18
19
 
@@ -20,8 +21,7 @@ module UiBibz::Helpers::Ui::Core::LayoutsHelper
20
21
  #
21
22
  # +options+ (Hash)
22
23
  # +html_options+ (Hash)
23
- def ui_container content = nil, options = nil, html_options = nil, &block
24
+ def ui_container(content = nil, options = nil, html_options = nil, &block)
24
25
  UiBibz::Ui::Core::Layouts::Container.new(content, options, html_options, &block).render
25
26
  end
26
-
27
27
  end
@@ -1,10 +1,11 @@
1
- module UiBibz::Helpers::Ui::Core::ListsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::ListsHelper
3
4
  # List Group Component
4
5
  #
5
6
  # +options+ (Hash)
6
7
  # +html_options+ (Hash)
7
- def ui_list_group content = nil, options = nil, html_options = nil, &block
8
+ def ui_list_group(content = nil, options = nil, html_options = nil, &block)
8
9
  UiBibz::Ui::Core::Lists::ListGroup.new(content, options, html_options).tap(&block).render
9
10
  end
10
11
 
@@ -12,8 +13,8 @@ module UiBibz::Helpers::Ui::Core::ListsHelper
12
13
  #
13
14
  # +options+ (Hash)
14
15
  # +html_options+ (Hash)
15
- def ui_list content = nil, options = nil, html_options = nil, &block
16
- if is_tap(content, options)
16
+ def ui_list(content = nil, options = nil, html_options = nil, &block)
17
+ if tap?(content, options)
17
18
  UiBibz::Ui::Core::Lists::Components::List.new(content, options, html_options).tap(&block).render
18
19
  else
19
20
  UiBibz::Ui::Core::Lists::Components::List.new(content, options, html_options, &block).render
@@ -1,10 +1,11 @@
1
- module UiBibz::Helpers::Ui::Core::NavigationsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::NavigationsHelper
3
4
  # Nav Component
4
5
  #
5
6
  # +options+ (Hash)
6
7
  # +html_options+ (Hash)
7
- def ui_nav content = nil, options = nil, html_options = nil, &block
8
+ def ui_nav(content = nil, options = nil, html_options = nil, &block)
8
9
  UiBibz::Ui::Core::Navigations::Nav.new(content, options, html_options).tap(&block).render
9
10
  end
10
11
 
@@ -12,7 +13,7 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
12
13
  #
13
14
  # +options+ (Hash)
14
15
  # +html_options+ (Hash)
15
- def ui_tab_group content = nil, options = nil, html_options = nil, &block
16
+ def ui_tab_group(content = nil, options = nil, html_options = nil, &block)
16
17
  UiBibz::Ui::Core::Navigations::TabGroup.new(content, options, html_options).tap(&block).render
17
18
  end
18
19
 
@@ -20,7 +21,7 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
20
21
  #
21
22
  # +options+ (Hash)
22
23
  # +html_options+ (Hash)
23
- def ui_navbar content = nil, options = nil, html_options = nil, &block
24
+ def ui_navbar(content = nil, options = nil, html_options = nil, &block)
24
25
  UiBibz::Ui::Core::Navigations::Navbar.new(content, options, html_options).tap(&block).render
25
26
  end
26
27
 
@@ -28,7 +29,7 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
28
29
  #
29
30
  # +options+ (Hash)
30
31
  # +html_options+ (Hash)
31
- def ui_pagination content = nil, options = nil, html_options = nil, &block
32
+ def ui_pagination(content = nil, options = nil, html_options = nil, &block)
32
33
  UiBibz::Ui::Core::Navigations::Pagination.new(content, options, html_options).tap(&block).render
33
34
  end
34
35
 
@@ -36,7 +37,7 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
36
37
  #
37
38
  # +options+ (Hash)
38
39
  # +html_options+ (Hash)
39
- def ui_toolbar content = nil, options = nil, html_options = nil, &block
40
+ def ui_toolbar(content = nil, options = nil, html_options = nil, &block)
40
41
  UiBibz::Ui::Core::Navigations::Toolbar.new(content, options, html_options).tap(&block).render
41
42
  end
42
43
 
@@ -44,7 +45,7 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
44
45
  #
45
46
  # +options+ (Hash)
46
47
  # +html_options+ (Hash)
47
- def ui_link content = nil, options = nil, html_options = nil, &block
48
+ def ui_link(content = nil, options = nil, html_options = nil, &block)
48
49
  UiBibz::Ui::Core::Navigations::Link.new(content, options, html_options, &block).render
49
50
  end
50
51
 
@@ -53,12 +54,11 @@ module UiBibz::Helpers::Ui::Core::NavigationsHelper
53
54
  # +options+ (Hash)
54
55
  # +html_options+ (Hash)
55
56
  #
56
- def ui_breadcrumb content = nil, options = nil, html_options = nil, &block
57
+ def ui_breadcrumb(content = nil, options = nil, html_options = nil, &block)
57
58
  if block.nil?
58
59
  UiBibz::Ui::Core::Navigations::Breadcrumb.new(content, options, html_options, &block).render
59
60
  else
60
61
  UiBibz::Ui::Core::Navigations::Breadcrumb.new(content, options, html_options).tap(&block).render
61
62
  end
62
63
  end
63
-
64
64
  end
@@ -1,12 +1,13 @@
1
- module UiBibz::Helpers::Ui::Core::NotificationsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::NotificationsHelper
3
4
  # Alert Component
4
5
  #
5
6
  # +options+ (Hash)
6
7
  # +html_options+ (Hash)
7
8
  #
8
- def ui_alert content = nil, options = nil, html_options = nil, &block
9
- if is_tap(content, options)
9
+ def ui_alert(content = nil, options = nil, html_options = nil, &block)
10
+ if tap?(content, options)
10
11
  UiBibz::Ui::Core::Notifications::Alert.new(content, options, html_options).tap(&block).render
11
12
  else
12
13
  UiBibz::Ui::Core::Notifications::Alert.new(content, options, html_options, &block).render
@@ -18,7 +19,7 @@ module UiBibz::Helpers::Ui::Core::NotificationsHelper
18
19
  # +options+ (Hash)
19
20
  # +html_options+ (Hash)
20
21
  #
21
- def ui_badge content = nil, options = nil, html_options = nil, &block
22
+ def ui_badge(content = nil, options = nil, html_options = nil, &block)
22
23
  UiBibz::Ui::Core::Notifications::Badge.new(content, options, html_options, &block).render
23
24
  end
24
25
 
@@ -26,8 +27,8 @@ module UiBibz::Helpers::Ui::Core::NotificationsHelper
26
27
  #
27
28
  # +options+ (Hash)
28
29
  # +html_options+ (Hash)
29
- def ui_progress_bar percentage = nil, options = nil, html_options = nil, &block
30
- if is_tap(percentage, options)
30
+ def ui_progress_bar(percentage = nil, options = nil, html_options = nil, &block)
31
+ if tap?(percentage, options)
31
32
  UiBibz::Ui::Core::Notifications::ProgressBar.new(percentage, options, html_options).tap(&block).render
32
33
  else
33
34
  UiBibz::Ui::Core::Notifications::ProgressBar.new(percentage, options, html_options, &block).render
@@ -38,7 +39,7 @@ module UiBibz::Helpers::Ui::Core::NotificationsHelper
38
39
  #
39
40
  # +options+ (Hash)
40
41
  # +html_options+ (Hash)
41
- def ui_toast content = nil, options = nil, html_options = nil, &block
42
+ def ui_toast(content = nil, options = nil, html_options = nil, &block)
42
43
  UiBibz::Ui::Core::Notifications::Toast.new(content, options, html_options).tap(&block).render
43
44
  end
44
45
 
@@ -47,14 +48,13 @@ module UiBibz::Helpers::Ui::Core::NotificationsHelper
47
48
  # +options+ (Hash)
48
49
  # +html_options+ (Hash)
49
50
  #
50
- def ui_spinner content = nil, options = nil, html_options = nil, &block
51
+ def ui_spinner(content = nil, options = nil, html_options = nil, &block)
51
52
  UiBibz::Ui::Core::Notifications::Spinner.new(content, options, html_options, &block).render
52
53
  end
53
54
 
54
55
  private
55
56
 
56
- def is_tap content, options
57
- (content[:tap] if content.kind_of?(Hash)) || (options[:tap] unless options.nil?)
57
+ def tap?(content, options)
58
+ (content[:tap] if content.is_a?(Hash)) || (options[:tap] unless options.nil?)
58
59
  end
59
-
60
60
  end
@@ -1,11 +1,11 @@
1
- module UiBibz::Helpers::Ui::Core::WindowsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::Core::WindowsHelper
3
4
  # Modal Component
4
5
  #
5
6
  # +options+ (Hash)
6
7
  # +html_options+ (Hash)
7
- def ui_modal content = nil, options = nil, html_options = nil, &block
8
+ def ui_modal(content = nil, options = nil, html_options = nil, &block)
8
9
  UiBibz::Ui::Core::Windows::Modal.new(content, options, html_options).tap(&block).render
9
10
  end
10
-
11
11
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'ui_bibz/helpers/ui/core/boxes_helper'
2
4
  require 'ui_bibz/helpers/ui/core/forms_helper'
3
5
  require 'ui_bibz/helpers/ui/core/layouts_helper'
@@ -1,5 +1,6 @@
1
- module UiBibz::Helpers::Ui::UxHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::Ui::UxHelper
3
4
  # Table Component
4
5
  #
5
6
  # +options+ (Hash)
@@ -7,8 +8,8 @@ module UiBibz::Helpers::Ui::UxHelper
7
8
  #
8
9
  # Option +tap: true+ is required if you want add +header+, +block+ or
9
10
  # +footer+.
10
- def ui_table content = nil, options = nil, html_options = nil, &block
11
- if is_tap(content, options)
11
+ def ui_table(content = nil, options = nil, html_options = nil, &block)
12
+ if tap?(content, options)
12
13
  UiBibz::Ui::Ux::Tables::Table.new(content, options, html_options).tap(&block).render
13
14
  else
14
15
  UiBibz::Ui::Ux::Tables::Table.new(content, options, html_options, &block).render
@@ -19,7 +20,7 @@ module UiBibz::Helpers::Ui::UxHelper
19
20
  #
20
21
  # +options+ (Hash) [Required]
21
22
  # +html_options+ (Hash)
22
- def ui_table_search_field options, html_options = nil
23
+ def ui_table_search_field(options, html_options = nil)
23
24
  UiBibz::Ui::Ux::Tables::TableSearchField.new(options, html_options).render
24
25
  end
25
26
 
@@ -27,7 +28,7 @@ module UiBibz::Helpers::Ui::UxHelper
27
28
  #
28
29
  # +options+ (Hash) [Required]
29
30
  # +html_options+ (Hash)
30
- def ui_table_pagination_per_page options, html_options = nil
31
+ def ui_table_pagination_per_page(options, html_options = nil)
31
32
  UiBibz::Ui::Ux::Tables::TablePaginationPerPage.new(options, html_options).render
32
33
  end
33
34
 
@@ -35,15 +36,15 @@ module UiBibz::Helpers::Ui::UxHelper
35
36
  #
36
37
  # +options+ (Hash) [Required]
37
38
  # +html_options+ (Hash)
38
- def ui_table_pagination options, html_options = nil
39
+ def ui_table_pagination(options, html_options = nil)
39
40
  UiBibz::Ui::Ux::Tables::TablePagination.new(options, html_options).render
40
41
  end
41
42
 
42
43
  # Glyph and Text method
43
44
  #
44
45
  # Merge glyph and text with html_safe
45
- def ui_glyph_and_text glyph_args, text
46
- "#{ ui_glyph glyph_args } #{ text }".html_safe
46
+ def ui_glyph_and_text(glyph_args, text)
47
+ "#{ui_glyph glyph_args} #{text}".html_safe
47
48
  end
48
49
 
49
50
  # Table Pagination Component
@@ -53,16 +54,15 @@ module UiBibz::Helpers::Ui::UxHelper
53
54
  #
54
55
  # Option +tap: true+ is required if you want add +header+, +block+ or
55
56
  # +footer+.
56
- def ui_table_card content = nil, options = nil, html_options = nil, &block
57
- if is_tap(content, options)
57
+ def ui_table_card(content = nil, options = nil, html_options = nil, &block)
58
+ if tap?(content, options)
58
59
  UiBibz::Ui::Ux::Tables::TableCard.new(content, options, html_options).tap(&block).render
59
60
  else
60
61
  UiBibz::Ui::Ux::Tables::TableCard.new(content, options, html_options, &block).render
61
62
  end
62
63
  end
63
64
 
64
- def ui_panel content = nil, options = nil, html_options = nil, &block
65
+ def ui_panel(content = nil, options = nil, html_options = nil, &block)
65
66
  UiBibz::Ui::Ux::Containers::Panel.new(content, options, html_options).tap(&block).render
66
67
  end
67
-
68
68
  end
@@ -1,30 +1,27 @@
1
- module UiBibz::Helpers::UtilsHelper
1
+ # frozen_string_literal: true
2
2
 
3
+ module UiBibz::Helpers::UtilsHelper
3
4
  # Same method like I18n.translate but accept
4
5
  # strings in default argument
5
- def ui_translatize translation, options
6
+ def ui_translatize(translation, options)
6
7
  UiBibz::Utils::Internationalization.new(translation, options).translate
7
8
  end
8
9
 
9
- def ui_form_for object, *args, &block
10
+ def ui_form_for(object, *args, &block)
10
11
  options = args.extract_options!
11
12
  simple_form_for(object, *(args << new_options(options)), &block)
12
13
  end
13
14
 
14
15
  private
15
16
 
16
- def new_options options
17
+ def new_options(options)
17
18
  if options[:html].nil?
18
19
  options[:html] = { class: options[:class] }
20
+ elsif options[:html][:class].nil?
21
+ options[:html] = options[:html].merge({ class: options[:class] })
19
22
  else
20
- if options[:html][:class].nil?
21
- options[:html] = options[:html].merge({ class: options[:class] })
22
- else
23
- options[:html][:class] = options[:html][:class] + (options[:class] || "")
24
- end
23
+ options[:html][:class] = options[:html][:class] + (options[:class] || '')
25
24
  end
26
25
  options.merge(builder: UiBibzForm::UiBibzFormBuilder)
27
26
  end
28
-
29
-
30
27
  end
@@ -1,9 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module UiBibz
2
- NAME = "Ui Bibz"
3
- VERSION = "2.4.0"
4
- DESCRIPTION = "A Rails Interface Framework using Bootstrap."
5
- SUMMARY = "Create your project with Ui Bibz. Over a thirty reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more."
6
- LICENSE = "MIT"
7
- FONTAWESOME_VERSION = "5.12.1"
8
- BOOTSTRAP_VERSION = "4.4.1"
4
+ NAME = 'Ui Bibz'
5
+ VERSION = '2.5.0'
6
+ DESCRIPTION = 'A Rails Interface Framework using Bootstrap.'
7
+ SUMMARY = 'Create your project with Ui Bibz. Over a thirty reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more.'
8
+ LICENSE = 'MIT'
9
+ FONTAWESOME_VERSION = '5.12.1'
10
+ BOOTSTRAP_VERSION = '4.4.1'
9
11
  end
@@ -1,47 +1,48 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module UiBibzForm
2
- #if defined?(SimpleForm)
3
- class UiBibzFormBuilder < SimpleForm::FormBuilder
4
- include ActionView::Helpers::TagHelper
5
- include ActionView::Helpers::TextHelper
6
- include UiBibz::Utils
7
-
8
- attr_accessor :output_buffer
9
-
10
- def ui_surround_field content = nil, opts = nil, html_options = nil, &block
11
- content = (options || {}).merge(content || {})
12
- content = content.merge(template: @template, form: self)
13
-
14
- input_classes = UiBibz::Utils::Screwdriver.join_classes('form-group', 'surround_field', options[:input_html].try(:[], :class))
15
- wrapper_html = (options[:input_html] || {}).merge({ class: input_classes })
16
- surround_field = UiBibz::Ui::Core::Forms::Surrounds::SurroundField.new(content, opts, html_options).tap(&block)
17
- errors_text = surround_field.errors.flatten.to_sentence
18
- required = surround_field.required_fields.any?{ |u| u == true }
19
- wrapper_classes = UiBibz::Utils::Screwdriver.join_classes(("has-error" unless errors_text.blank?), wrapper_html.try(:[], :class))
20
- label_classes = UiBibz::Utils::Screwdriver.join_classes(("required" if required), 'control-label')
21
- abbr_html = content_tag("abbr", I18n.t(:"simple_form.required.mark", default: '*'), title: I18n.t(:"simple_form.required.text", default: 'required')) if required
22
-
23
- wrapper_html[:class] = wrapper_classes
24
-
25
- content_tag :div, wrapper_html do
26
- concat content_tag(:label, "#{ abbr_html } #{ content[:label] }".html_safe, class: label_classes) if content[:label]
27
- concat surround_field.render
28
- concat content_tag(:span, errors_text || content[:hint], class: 'help-block') if !errors_text.blank? || !content[:hint].nil?
29
- end
4
+ # if defined?(SimpleForm)
5
+ class UiBibzFormBuilder < SimpleForm::FormBuilder
6
+ include ActionView::Helpers::TagHelper
7
+ include ActionView::Helpers::TextHelper
8
+ include UiBibz::Utils
9
+
10
+ attr_accessor :output_buffer
11
+
12
+ def ui_surround_field(content = nil, opts = nil, html_options = nil, &block)
13
+ content = (options || {}).merge(content || {})
14
+ content = content.merge(template: @template, form: self)
15
+
16
+ input_classes = UiBibz::Utils::Screwdriver.join_classes('form-group', 'surround_field', options[:input_html].try(:[], :class))
17
+ wrapper_html = (options[:input_html] || {}).merge({ class: input_classes })
18
+ surround_field = UiBibz::Ui::Core::Forms::Surrounds::SurroundField.new(content, opts, html_options).tap(&block)
19
+ errors_text = surround_field.errors.flatten.to_sentence
20
+ required = surround_field.required_fields.any? { |u| u == true }
21
+ wrapper_classes = UiBibz::Utils::Screwdriver.join_classes(('has-error' unless errors_text.blank?), wrapper_html.try(:[], :class))
22
+ label_classes = UiBibz::Utils::Screwdriver.join_classes(('required' if required), 'control-label')
23
+ abbr_html = content_tag('abbr', I18n.t(:"simple_form.required.mark", default: '*'), title: I18n.t(:"simple_form.required.text", default: 'required')) if required
24
+
25
+ wrapper_html[:class] = wrapper_classes
26
+
27
+ content_tag :div, wrapper_html do
28
+ concat content_tag(:label, "#{abbr_html} #{content[:label]}".html_safe, class: label_classes) if content[:label]
29
+ concat surround_field.render
30
+ concat content_tag(:span, errors_text || content[:hint], class: 'help-block') if !errors_text.blank? || !content[:hint].nil?
30
31
  end
32
+ end
31
33
 
32
- def ui_button_group content = nil, opts = nil, html_options = nil, &block
33
- content = (options || {}).merge(content || {})
34
- content = content.merge(template: @template, form: self)
34
+ def ui_button_group(content = nil, opts = nil, html_options = nil, &block)
35
+ content = (options || {}).merge(content || {})
36
+ content = content.merge(template: @template, form: self)
35
37
 
36
- input_classes = UiBibz::Utils::Screwdriver.join_classes('button_group', options[:input_html].try(:[], :class))
37
- wrapper_html = (options[:input_html] || {}).merge({ class: input_classes })
38
+ input_classes = UiBibz::Utils::Screwdriver.join_classes('button_group', options[:input_html].try(:[], :class))
39
+ wrapper_html = (options[:input_html] || {}).merge({ class: input_classes })
38
40
 
39
- content_tag :div, wrapper_html do
40
- concat content_tag(:label, content[:label]) unless content[:label].nil?
41
- concat UiBibz::Ui::Core::Forms::Buttons::ButtonGroup.new(content, opts, html_options).tap(&block).render
42
- end
41
+ content_tag :div, wrapper_html do
42
+ concat content_tag(:label, content[:label]) unless content[:label].nil?
43
+ concat UiBibz::Ui::Core::Forms::Buttons::ButtonGroup.new(content, opts, html_options).tap(&block).render
43
44
  end
44
-
45
45
  end
46
- #end
46
+ end
47
+ # end
47
48
  end