ui_bibz 2.5.6 → 3.0.0.alpha2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (256) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -2
  3. data/.rubocop.yml +78 -0
  4. data/.ruby-gemset +1 -0
  5. data/.ruby-version +1 -0
  6. data/Gemfile +1 -0
  7. data/Gemfile.lock +90 -102
  8. data/README.md +9 -52
  9. data/Rakefile +3 -2
  10. data/bin/test +7 -0
  11. data/config/initializers/will_paginate.rb +2 -1
  12. data/lib/ui_bibz.rb +17 -2
  13. data/lib/ui_bibz/concerns/models/searchable.rb +3 -3
  14. data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -1
  15. data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +18 -0
  16. data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +10 -2
  17. data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +1 -1
  18. data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +9 -5
  19. data/lib/ui_bibz/helpers/ui/ux_helper.rb +2 -6
  20. data/lib/ui_bibz/infos.rb +11 -5
  21. data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +15 -2
  22. data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +0 -4
  23. data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +6 -9
  24. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_field_input.rb +23 -0
  25. data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_slider_field_input.rb +11 -0
  26. data/lib/ui_bibz/rails/engine.rb +2 -13
  27. data/lib/ui_bibz/railtie.rb +6 -0
  28. data/lib/ui_bibz/ui/concerns/card_itemable_concern.rb +65 -0
  29. data/lib/ui_bibz/ui/concerns/html_concern.rb +16 -0
  30. data/lib/ui_bibz/ui/core/boxes/card.rb +5 -50
  31. data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +2 -0
  32. data/lib/ui_bibz/ui/core/boxes/card_column.rb +3 -1
  33. data/lib/ui_bibz/ui/core/boxes/card_deck.rb +3 -1
  34. data/lib/ui_bibz/ui/core/boxes/card_grid.rb +60 -0
  35. data/lib/ui_bibz/ui/core/boxes/card_group.rb +3 -1
  36. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +0 -3
  37. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_subtitle.rb +47 -0
  38. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +0 -3
  39. data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +1 -4
  40. data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +7 -0
  41. data/lib/ui_bibz/ui/core/boxes/components/card_col.rb +65 -0
  42. data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +0 -3
  43. data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +2 -4
  44. data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +0 -3
  45. data/lib/ui_bibz/ui/core/boxes/components/card_row.rb +65 -0
  46. data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +0 -4
  47. data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +1 -4
  48. data/lib/ui_bibz/ui/core/component.rb +16 -9
  49. data/lib/ui_bibz/ui/core/forms/buttons/button.rb +1 -1
  50. data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +9 -11
  51. data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +0 -3
  52. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +0 -3
  53. data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +0 -3
  54. data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +7 -10
  55. data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +8 -7
  56. data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +22 -2
  57. data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +24 -12
  58. data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +11 -6
  59. data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +1 -5
  60. data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +12 -15
  61. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +0 -1
  62. data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +0 -3
  63. data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +8 -13
  64. data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +0 -3
  65. data/lib/ui_bibz/ui/core/forms/files/file_field.rb +20 -10
  66. data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +16 -8
  67. data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +20 -3
  68. data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +33 -5
  69. data/lib/ui_bibz/ui/core/forms/numbers/slider_field.rb +132 -0
  70. data/lib/ui_bibz/ui/core/forms/numbers/slider_header.rb +71 -0
  71. data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +0 -3
  72. data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -9
  73. data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +0 -3
  74. data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +0 -3
  75. data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +2 -5
  76. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +1 -4
  77. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +0 -3
  78. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +0 -3
  79. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +0 -3
  80. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +1 -12
  81. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +9 -4
  82. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +0 -3
  83. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +9 -4
  84. data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +0 -3
  85. data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +1 -4
  86. data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -7
  87. data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +2 -5
  88. data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +0 -3
  89. data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +0 -3
  90. data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +1 -4
  91. data/lib/ui_bibz/ui/core/icons/glyph.rb +1 -4
  92. data/lib/ui_bibz/ui/core/icons/star.rb +0 -3
  93. data/lib/ui_bibz/ui/core/layouts/col.rb +5 -42
  94. data/lib/ui_bibz/ui/core/layouts/container.rb +9 -6
  95. data/lib/ui_bibz/ui/core/layouts/row.rb +32 -2
  96. data/lib/ui_bibz/ui/core/lists/components/list.rb +6 -8
  97. data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +0 -3
  98. data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +0 -3
  99. data/lib/ui_bibz/ui/core/lists/list_group.rb +9 -6
  100. data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +3 -2
  101. data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +0 -3
  102. data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +1 -4
  103. data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +3 -1
  104. data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +14 -5
  105. data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +0 -4
  106. data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +1 -4
  107. data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +0 -3
  108. data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +0 -3
  109. data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +4 -4
  110. data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +1 -4
  111. data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +0 -3
  112. data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +0 -3
  113. data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +3 -3
  114. data/lib/ui_bibz/ui/core/navigations/link.rb +0 -3
  115. data/lib/ui_bibz/ui/core/navigations/nav.rb +37 -10
  116. data/lib/ui_bibz/ui/core/navigations/navbar.rb +28 -7
  117. data/lib/ui_bibz/ui/core/navigations/pagination.rb +3 -1
  118. data/lib/ui_bibz/ui/core/navigations/tab_group.rb +10 -5
  119. data/lib/ui_bibz/ui/core/navigations/toolbar.rb +2 -0
  120. data/lib/ui_bibz/ui/core/notifications/alert.rb +2 -2
  121. data/lib/ui_bibz/ui/core/notifications/badge.rb +2 -5
  122. data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +0 -3
  123. data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +4 -10
  124. data/lib/ui_bibz/ui/core/notifications/components/bar.rb +0 -3
  125. data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +0 -3
  126. data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +1 -6
  127. data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +7 -5
  128. data/lib/ui_bibz/ui/core/notifications/spinner.rb +0 -3
  129. data/lib/ui_bibz/ui/core/notifications/toast.rb +14 -3
  130. data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +0 -3
  131. data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +0 -3
  132. data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +1 -7
  133. data/lib/ui_bibz/ui/core/windows/modal.rb +61 -14
  134. data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +4 -2
  135. data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +9 -9
  136. data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +2 -2
  137. data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +0 -3
  138. data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +2 -0
  139. data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +2 -0
  140. data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +0 -3
  141. data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +2 -0
  142. data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +1 -4
  143. data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +0 -4
  144. data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +0 -3
  145. data/lib/ui_bibz/ui/ux/containers/panel.rb +4 -2
  146. data/lib/ui_bibz/ui/ux/tables/components/thead.rb +0 -3
  147. data/lib/ui_bibz/ui/ux/tables/table.rb +2 -4
  148. data/lib/ui_bibz/ui/ux/tables/table_card.rb +4 -3
  149. data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +5 -5
  150. data/lib/ui_bibz/utils/breakdown_class_name_generator.rb +69 -0
  151. data/lib/ui_bibz/utils/internationalization.rb +1 -1
  152. data/lib/ui_bibz/utils/screwdriver.rb +16 -10
  153. data/package.json +5 -0
  154. data/test/dummy/Rakefile +1 -1
  155. data/test/dummy/app/javascripts/packs/index.js +3 -0
  156. data/test/dummy/app/views/layouts/application.html.erb +4 -1
  157. data/{app/ui/.keep → test/dummy/app/views/users/index.html.erb} +0 -0
  158. data/test/dummy/bin/setup +17 -13
  159. data/test/dummy/config.ru +2 -1
  160. data/test/dummy/config/application.rb +1 -0
  161. data/test/dummy/config/cable.yml +10 -0
  162. data/test/dummy/config/database.yml +1 -1
  163. data/test/dummy/config/environment.rb +1 -1
  164. data/test/dummy/config/environments/development.rb +33 -12
  165. data/test/dummy/config/environments/production.rb +52 -19
  166. data/test/dummy/config/environments/test.rb +18 -12
  167. data/test/dummy/config/initializers/application_controller_renderer.rb +9 -0
  168. data/test/dummy/config/initializers/assets.rb +4 -3
  169. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -1
  170. data/test/dummy/config/initializers/content_security_policy.rb +29 -0
  171. data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
  172. data/test/dummy/config/initializers/inflections.rb +0 -1
  173. data/test/dummy/config/initializers/mime_types.rb +0 -1
  174. data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
  175. data/test/dummy/config/puma.rb +40 -0
  176. data/test/dummy/config/routes.rb +3 -0
  177. data/test/dummy/config/spring.rb +8 -0
  178. data/test/dummy/config/storage.yml +34 -0
  179. data/test/dummy/db/migrate/20150123191805_create_users.rb +1 -1
  180. data/test/dummy/db/schema.rb +24 -24
  181. data/test/dummy/public/404.html +6 -6
  182. data/test/dummy/public/422.html +6 -6
  183. data/test/dummy/public/500.html +6 -6
  184. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  185. data/test/dummy/public/apple-touch-icon.png +0 -0
  186. data/test/dummy/storage/.keep +0 -0
  187. data/test/simple_form_test.rb +45 -22
  188. data/test/store_test.rb +5 -5
  189. data/test/test_helper.rb +18 -9
  190. data/test/ui/core/boxes/card_grid_test.rb +17 -0
  191. data/test/ui/core/boxes/card_test.rb +45 -11
  192. data/test/ui/core/boxes/jumbotron_test.rb +2 -2
  193. data/test/ui/core/component_test.rb +1 -1
  194. data/test/ui/core/forms/buttons/button_link_test.rb +1 -1
  195. data/test/ui/core/forms/buttons/button_test.rb +2 -2
  196. data/test/ui/core/forms/choices/checkbox_field_test.rb +1 -1
  197. data/test/ui/core/forms/choices/choice_group_test.rb +11 -9
  198. data/test/ui/core/forms/choices/radio_field_test.rb +1 -1
  199. data/test/ui/core/forms/dates/date_picker_field_test.rb +1 -1
  200. data/test/ui/core/forms/files/file_field_test.rb +12 -0
  201. data/test/ui/core/forms/numbers/formula_field_test.rb +1 -1
  202. data/test/ui/core/forms/numbers/range_field_test.rb +23 -2
  203. data/test/ui/core/forms/numbers/slider_field_test.rb +26 -0
  204. data/test/ui/core/forms/selects/dropdown_select_field_test.rb +10 -10
  205. data/test/ui/core/forms/selects/multi_column_field_test.rb +1 -1
  206. data/test/ui/core/forms/selects/multi_select_field_test.rb +2 -2
  207. data/test/ui/core/forms/selects/select_field_test.rb +3 -3
  208. data/test/ui/core/forms/surrounds/surround_field_test.rb +15 -3
  209. data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
  210. data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -8
  211. data/test/ui/core/forms/texts/text_field_test.rb +2 -2
  212. data/test/ui/core/layouts/col_test.rb +11 -2
  213. data/test/ui/core/layouts/container_test.rb +15 -1
  214. data/test/ui/core/layouts/row_test.rb +68 -3
  215. data/test/ui/core/lists/list_group_test.rb +1 -1
  216. data/test/ui/core/navigations/breadcrumb_test.rb +1 -1
  217. data/test/ui/core/navigations/link_test.rb +1 -1
  218. data/test/ui/core/navigations/nav_test.rb +11 -0
  219. data/test/ui/core/navigations/navbar_test.rb +4 -4
  220. data/test/ui/core/notifications/alert_test.rb +2 -2
  221. data/test/ui/core/notifications/badge_test.rb +3 -3
  222. data/test/ui/core/notifications/progress_bar_test.rb +1 -1
  223. data/test/ui/core/notifications/toast_test.rb +10 -1
  224. data/test/ui/core/windows/modal_test.rb +15 -1
  225. data/test/ui/utils/breakdown_class_name_generator_test.rb +60 -0
  226. data/test/ui/ux/containers/panel_test.rb +5 -5
  227. data/test/ui/ux/tables/table_test.rb +6 -6
  228. data/test/ui_bibz_test.rb +1 -1
  229. data/ui_bibz.gemspec +16 -16
  230. metadata +100 -105
  231. data/app/assets/javascripts/fix_bootstrap.coffee +0 -7
  232. data/app/assets/javascripts/form.coffee +0 -83
  233. data/app/assets/javascripts/formula.coffee +0 -69
  234. data/app/assets/javascripts/input-connected.coffee +0 -101
  235. data/app/assets/javascripts/interface.coffee +0 -55
  236. data/app/assets/javascripts/jquery.multi-select-extend.coffee +0 -38
  237. data/app/assets/javascripts/table.coffee +0 -36
  238. data/app/assets/javascripts/ui_bibz.coffee.erb +0 -75
  239. data/app/assets/stylesheets/_custom_variables.sass +0 -20
  240. data/app/assets/stylesheets/_panel.scss +0 -315
  241. data/app/assets/stylesheets/bootstrap-switch.sass +0 -159
  242. data/app/assets/stylesheets/boxes.sass +0 -5
  243. data/app/assets/stylesheets/containers.sass +0 -2
  244. data/app/assets/stylesheets/fix-bootstrap-4.sass +0 -19
  245. data/app/assets/stylesheets/fix_addon.sass +0 -216
  246. data/app/assets/stylesheets/forms.sass +0 -91
  247. data/app/assets/stylesheets/navigations.sass +0 -17
  248. data/app/assets/stylesheets/notifications.sass +0 -42
  249. data/app/assets/stylesheets/tables.sass +0 -66
  250. data/app/assets/stylesheets/ui_bibz.sass.erb +0 -55
  251. data/lib/generators/ui_bibz/install_generator.rb +0 -17
  252. data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +0 -5
  253. data/lib/ui_bibz/ui/core/icons/glyph_group.rb +0 -101
  254. data/test/dummy/bin/bundle +0 -5
  255. data/test/ui/core/forms/files/text_field_test.rb +0 -12
  256. data/test/ui/core/icons/glyph_group_test.rb +0 -37
@@ -14,6 +14,7 @@ module GlyphExtension
14
14
  def glyph_with_space
15
15
  out = [glyph]
16
16
  out << ' ' if options[:text] != false
17
+ out << content_tag(:span, ' ', class: 'empty-space') if options[:text] == false
17
18
  out.join unless glyph.nil?
18
19
  end
19
20
 
@@ -21,9 +22,10 @@ module GlyphExtension
21
22
  def glyph
22
23
  options[:content] = content if options[:text] == false
23
24
 
24
- glyph_options = if options[:glyph].is_a?(Hash)
25
+ glyph_options = case options[:glyph]
26
+ when Hash
25
27
  options[:glyph]
26
- elsif options[:glyph].is_a?(String)
28
+ when String
27
29
  { name: options[:glyph] }
28
30
  else
29
31
  {}
@@ -8,27 +8,27 @@ module PopoverExtension
8
8
  trigger offset fallback_placement boundary sanitize white_list sanitize_fn].freeze
9
9
 
10
10
  def popover_data_html
11
- unless options[:popover].blank?
12
- add_html_data :toggle, 'popover'
13
- add_html_data :content, (options[:popover].is_a?(String) ? options[:popover] : options[:popover][:content])
11
+ if options[:popover].present?
12
+ add_html_data :toggle, value: 'popover'
13
+ add_html_data :content, value: (options[:popover].is_a?(String) ? options[:popover] : options[:popover][:content])
14
14
  end
15
15
 
16
16
  return unless options[:popover].is_a?(Hash)
17
17
 
18
- POPOVER_METHODS.each { |mth| add_html_data(mth, options[:popover].try(:[], mth)) unless options[:popover].try(:[], mth).nil? }
19
- add_html_data :placement, options[:popover].try(:[], :position) unless options[:popover].try(:[], :position).nil?
18
+ POPOVER_METHODS.each { |mth| add_html_data(mth, value: options[:popover].try(:[], mth)) unless options[:popover].try(:[], mth).nil? }
19
+ add_html_data :placement, value: options[:popover].try(:[], :position) unless options[:popover].try(:[], :position).nil?
20
20
  end
21
21
 
22
22
  def tooltip_data_html
23
23
  return if options[:tooltip].nil?
24
24
 
25
- add_html_data :toggle, 'tooltip'
25
+ add_html_data :toggle, value: 'tooltip'
26
26
 
27
27
  if options[:tooltip].is_a?(Hash)
28
- TOOLTIP_METHODS.each { |mth| add_html_data(mth, options[:tooltip].try(:[], mth)) unless options[:tooltip].try(:[], mth).nil? }
29
- add_html_data :placement, options[:tooltip].try(:[], :position) unless options[:tooltip].try(:[], :position).nil?
28
+ TOOLTIP_METHODS.each { |mth| add_html_data(mth, value: options[:tooltip].try(:[], mth)) unless options[:tooltip].try(:[], mth).nil? }
29
+ add_html_data :placement, value: options[:tooltip].try(:[], :position) unless options[:tooltip].try(:[], :position).nil?
30
30
  else
31
- add_html_data :title, options[:tooltip]
31
+ add_html_data :title, value: options[:tooltip]
32
32
  end
33
33
  end
34
34
  end
@@ -14,7 +14,7 @@ module ConnectExtension
14
14
 
15
15
  def connect_opts
16
16
  selector = options[:refresh][:target][:selector]
17
- options[:refresh][:target][:selector] = selector.blank? ? "##{connect_options_selector}" : selector
17
+ options[:refresh][:target][:selector] = selector.presence || "##{connect_options_selector}"
18
18
 
19
19
  options[:refresh].merge({
20
20
  connect: {
@@ -26,6 +26,6 @@ module ConnectExtension
26
26
  end
27
27
 
28
28
  def connect_options
29
- add_html_data('connect', options[:connect]) if options[:connect]
29
+ add_html_data('connect', value: options[:connect]) if options[:connect]
30
30
  end
31
31
  end
@@ -32,9 +32,6 @@ module UiBibz::Ui::Ux::Containers::Components
32
32
  #
33
33
  class PanelBody < UiBibz::Ui::Core::Component
34
34
  # See UiBibz::Ui::Core::Component.initialize
35
- def initialize(content = nil, options = nil, html_options = nil, &block)
36
- super
37
- end
38
35
 
39
36
  # Render html tag
40
37
  def pre_render
@@ -23,6 +23,8 @@ module UiBibz::Ui::Ux::Containers::Components
23
23
  # end.render
24
24
  #
25
25
  class PanelColumn < UiBibz::Ui::Core::Component
26
+ include UiBibz::Ui::Concerns::HtmlConcern
27
+
26
28
  # See UiBibz::Ui::Core::Component.initialize
27
29
  def initialize(content = nil, options = nil, html_options = nil, &block)
28
30
  super
@@ -23,6 +23,8 @@ module UiBibz::Ui::Ux::Containers::Components
23
23
  # end.render
24
24
  #
25
25
  class PanelDeck < UiBibz::Ui::Core::Component
26
+ include UiBibz::Ui::Concerns::HtmlConcern
27
+
26
28
  # See UiBibz::Ui::Core::Component.initialize
27
29
  def initialize(content = nil, options = nil, html_options = nil, &block)
28
30
  super
@@ -33,9 +33,6 @@ module UiBibz::Ui::Ux::Containers::Components
33
33
  #
34
34
  class PanelFooter < UiBibz::Ui::Core::Component
35
35
  # See UiBibz::Ui::Core::Component.initialize
36
- def initialize(content = nil, options = nil, html_options = nil, &block)
37
- super
38
- end
39
36
 
40
37
  # Render html tag
41
38
  def pre_render
@@ -21,6 +21,8 @@ module UiBibz::Ui::Ux::Containers::Components
21
21
  # end.render
22
22
  #
23
23
  class PanelGroup < UiBibz::Ui::Core::Component
24
+ include UiBibz::Ui::Concerns::HtmlConcern
25
+
24
26
  # See UiBibz::Ui::Core::Component.initialize
25
27
  def initialize(content = nil, options = nil, html_options = nil, &block)
26
28
  super
@@ -33,9 +33,6 @@ module UiBibz::Ui::Ux::Containers::Components
33
33
  #
34
34
  class PanelHeader < UiBibz::Ui::Core::Component
35
35
  # See UiBibz::Ui::Core::Component.initialize
36
- def initialize(content = nil, options = nil, html_options = nil, &block)
37
- super
38
- end
39
36
 
40
37
  # Render html tag
41
38
  def pre_render
@@ -54,7 +51,7 @@ module UiBibz::Ui::Ux::Containers::Components
54
51
  end
55
52
 
56
53
  def tab_group(content = nil, options = nil, html_options = nil, &block)
57
- @content = if tap?(content, options)
54
+ @content = if tapped?(block)
58
55
  PanelTabGroup.new(content, options, html_options).tap(&block).render
59
56
  else
60
57
  PanelTabGroup.new(content, options, html_options, &block).render
@@ -31,10 +31,6 @@ module UiBibz::Ui::Ux::Containers::Components
31
31
  # end.render
32
32
  #
33
33
  class PanelTabGroup < UiBibz::Ui::Core::Navigations::TabGroup
34
- def initialize(content = nil, options = nil, html_options = nil, &block)
35
- super
36
- end
37
-
38
34
  private
39
35
 
40
36
  def component_html_classes
@@ -24,9 +24,6 @@ module UiBibz::Ui::Ux::Containers::Components
24
24
  #
25
25
  class PanelToolbar < UiBibz::Ui::Core::Navigations::Toolbar
26
26
  # See UiBibz::Ui::Core::Component.initialize
27
- def initialize(content = nil, options = nil, html_options = nil, &block)
28
- super
29
- end
30
27
 
31
28
  private
32
29
 
@@ -39,6 +39,8 @@ module UiBibz::Ui::Ux::Containers
39
39
  # end
40
40
  #
41
41
  class Panel < UiBibz::Ui::Core::Component
42
+ include UiBibz::Ui::Concerns::HtmlConcern
43
+
42
44
  def initialize(content = nil, options = nil, html_options = nil, &block)
43
45
  super
44
46
  @items = []
@@ -74,7 +76,7 @@ module UiBibz::Ui::Ux::Containers
74
76
 
75
77
  # Add Header which is a component
76
78
  def header(content = nil, options = nil, html_options = nil, &block)
77
- @header = if tap?(content, options)
79
+ @header = if tapped?(block)
78
80
  UiBibz::Ui::Ux::Containers::Components::PanelHeader.new(content, options, html_options).tap(&block).render
79
81
  else
80
82
  UiBibz::Ui::Ux::Containers::Components::PanelHeader.new(content, options, html_options, &block).render
@@ -83,7 +85,7 @@ module UiBibz::Ui::Ux::Containers
83
85
 
84
86
  # Add Header which is a component
85
87
  def footer(content = nil, options = nil, html_options = nil, &block)
86
- @footer = if tap?(content, options)
88
+ @footer = if tapped?(block)
87
89
  UiBibz::Ui::Ux::Containers::Components::PanelFooter.new(content, options, html_options).tap(&block).render
88
90
  else
89
91
  UiBibz::Ui::Ux::Containers::Components::PanelFooter.new(content, options, html_options, &block).render
@@ -32,9 +32,6 @@ module UiBibz::Ui::Ux::Tables
32
32
  #
33
33
  class Thead < UiBibz::Ui::Core::Component
34
34
  # See UiBibz::Ui::Core::Component.initialize
35
- def initialize(content = nil, options = nil, html_options = nil, &block)
36
- super
37
- end
38
35
 
39
36
  # Render html tag
40
37
  def pre_render
@@ -7,7 +7,6 @@ require 'ui_bibz/ui/ux/tables/components/actions'
7
7
  require 'ui_bibz/ui/ux/tables/components/thead'
8
8
  require 'ui_bibz/ui/ux/tables/components/as'
9
9
  require 'ui_bibz/ui/ux/tables/extensions/paginable'
10
- require 'ui_bibz/ui/ux/tables/extensions/paginable'
11
10
  require 'ui_bibz/ui/ux/tables/extensions/searchable'
12
11
  require 'ui_bibz/ui/ux/tables/extensions/sortable'
13
12
  require 'ui_bibz/ui/ux/tables/extensions/actionable'
@@ -28,7 +27,6 @@ module UiBibz::Ui::Ux::Tables
28
27
  # You can pass arguments in options attribute:
29
28
  # * +store+ - Store generate by '+table_search_pagination+' method
30
29
  # * +url+ - String
31
- # * +tap+ - Boolean
32
30
  # * +actionable+ - Boolean
33
31
  # * +sortable+ - Boolean
34
32
  # * +searchable+ - Boolean
@@ -50,7 +48,7 @@ module UiBibz::Ui::Ux::Tables
50
48
  #
51
49
  # UiBibz::Ui::Ux::Tables::Table.new(store: @store)
52
50
  #
53
- # UiBibz::Ui::Ux::Tables::Table.new(store: @store, tap: true) do |t|
51
+ # UiBibz::Ui::Ux::Tables::Table.new(store: @store) do |t|
54
52
  # t.columns do |c|
55
53
  # c.column :id, name: '#'
56
54
  # end
@@ -81,7 +79,7 @@ module UiBibz::Ui::Ux::Tables
81
79
  #
82
80
  # table(options = {}, html_options = {})
83
81
  #
84
- # table(options = { tap: true }, html_options = {}) do |t|
82
+ # table(options = {}, html_options = {}) do |t|
85
83
  # t.columns do |cls|
86
84
  # cls.column(name, options = {}, html_options = {})
87
85
  # cls.column(options = {}, html_options = {}) do
@@ -18,7 +18,6 @@ module UiBibz::Ui::Ux::Tables
18
18
  # You can pass arguments in options attribute:
19
19
  # * +store+ - Store generate by '+table_search_pagination+' method
20
20
  # * +url+ - String
21
- # * +tap+ - Boolean
22
21
  # * +table_options+ - Hash
23
22
  # * +actionable+ - Boolean
24
23
  # * +sortable+ - Boolean
@@ -40,7 +39,7 @@ module UiBibz::Ui::Ux::Tables
40
39
  #
41
40
  # UiBibz::Ui::Ux::Tables::TableCard.new(store: @store)
42
41
  #
43
- # UiBibz::Ui::Ux::Tables::TableCard.new(store: @store, tap: true) do |t|
42
+ # UiBibz::Ui::Ux::Tables::TableCard.new(store: @store) do |t|
44
43
  # t.columns do |c|
45
44
  # c.column '#', { data_index: '#' }
46
45
  # end
@@ -72,7 +71,7 @@ module UiBibz::Ui::Ux::Tables
72
71
  #
73
72
  # table_card(options = {}, html_options = {})
74
73
  #
75
- # table_card(options = { tap: true }, html_options = {}) do |t|
74
+ # table_card(options = {}, html_options = {}) do |t|
76
75
  # t.header(content, options = {}, html_options = {})
77
76
  # # or
78
77
  # t.header(options = {}, html_options = {}) do
@@ -105,6 +104,8 @@ module UiBibz::Ui::Ux::Tables
105
104
  # end
106
105
  # end
107
106
  class TableCard < UiBibz::Ui::Core::Boxes::Card
107
+ include UiBibz::Ui::Concerns::HtmlConcern
108
+
108
109
  # See UiBibz::Ui::Core::Boxes::Card.initialize
109
110
  def initialize(content = nil, options = nil, html_options = nil, &block)
110
111
  super
@@ -40,23 +40,23 @@ module UiBibz::Ui::Ux::Tables
40
40
  def search_field_html
41
41
  # add surround_field maybe ?
42
42
  content_tag :div, html_options do
43
- concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('search').render, class: 'input-group-addon')
43
+ concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('search').render, class: 'input-group-text')
44
44
  concat tag(:input, type: 'search', value: search_content, name: 'search', class: 'form-control', placeholder: search_placeholder_field)
45
45
  concat tag(:input, type: 'hidden', name: 'link_type', value: 'search')
46
- concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('times-circle').render, class: 'clear-search-btn input-group-addon')
46
+ concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('times-circle').render, class: 'clear-search-btn input-group-text')
47
47
  end
48
48
  end
49
49
 
50
50
  def search_field_html_in_wrap
51
51
  content_tag :div, html_options do
52
- concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('search').render, class: 'input-group-addon')
52
+ concat content_tag(:span, UiBibz::Ui::Core::Icons::Glyph.new('search').render, class: 'input-group-text')
53
53
  store.parameters.with_indifferent_access.reject { |k, _| default_parameters?(k) }.each do |k, v|
54
54
  concat tag(:input, type: 'hidden', name: k, value: v)
55
55
  end
56
56
  concat tag(:input, type: 'hidden', name: 'store_id', value: store.id) unless store.id.nil? # if there is more one table in html page
57
57
  concat tag(:input, type: 'hidden', name: 'link_type', value: 'search')
58
58
  concat tag(:input, type: 'search', value: search_content, name: 'search', class: 'form-control', placeholder: search_placeholder_field)
59
- concat content_tag(:span, clear_button, class: 'input-group-btn clear-search-btn')
59
+ concat clear_button
60
60
  end
61
61
  end
62
62
 
@@ -69,7 +69,7 @@ module UiBibz::Ui::Ux::Tables
69
69
  end
70
70
 
71
71
  def clear_button
72
- content_tag :button, UiBibz::Ui::Core::Icons::Glyph.new('times-circle').render, type: :button, class: 'btn btn-secondary'
72
+ content_tag :button, UiBibz::Ui::Core::Icons::Glyph.new('times-circle').render, type: :button, class: 'btn btn-secondary input-group-btn clear-search-btn'
73
73
  end
74
74
 
75
75
  def component_html_classes
@@ -0,0 +1,69 @@
1
+ # frozen_string_literal: true
2
+
3
+ module UiBibz::Utils
4
+ # Generate the col class name
5
+ class BreakdownClassNameGenerator
6
+ POSITIONING = %i[num offset push pull].freeze
7
+ BREAKPOINTS = UiBibz::Ui::Core::Component::BREAKPOINTS
8
+ PARAMETERS = BREAKPOINTS + POSITIONING + [:position]
9
+
10
+ def initialize(options = {}, klass_name = 'col')
11
+ @options = options.is_a?(Integer) ? { num: options } : options
12
+ @klass_name = klass_name
13
+ end
14
+
15
+ def class_names
16
+ return @klass_name unless col_options?
17
+
18
+ kl = []
19
+ @options.each do |key, value|
20
+ kl << write_classes(key.to_sym, value) if BREAKPOINTS.include?(key.to_sym)
21
+ end
22
+ kl << write_classes(nil, @options) if kl.empty? || @options.key?('num')
23
+
24
+ kl
25
+ end
26
+
27
+ private
28
+
29
+ def col_options?
30
+ (@options.keys.map(&:to_sym) & PARAMETERS).present?
31
+ end
32
+
33
+ def write_classes(size, opts)
34
+ @position = opts[:position]
35
+ opts.map do |k, v|
36
+ send(k, size, v) if POSITIONING.include?(k.to_sym)
37
+ end.compact.join(' ')
38
+ end
39
+
40
+ # col-md-9
41
+ def num(size, number, _pos = nil)
42
+ size == :auto ? @klass_name : ["#{@klass_name}#{position}", size, number].compact.join('-')
43
+ end
44
+
45
+ # col-md-offset-9
46
+ def offset(size, number)
47
+ ['offset', size, number].compact.join('-')
48
+ end
49
+
50
+ # col-md-push-9
51
+ def push(size, number)
52
+ [@klass_name, size, 'push', number].compact.join('-')
53
+ end
54
+
55
+ # col-md-pull-9
56
+ def pull(size, number)
57
+ [@klass_name, size, 'pull', number].compact.join('-')
58
+ end
59
+
60
+ def position
61
+ case @position || @options[:position]
62
+ when :vertical
63
+ 'y'
64
+ when :horizontal
65
+ 'x'
66
+ end
67
+ end
68
+ end
69
+ end
@@ -30,7 +30,7 @@ module UiBibz::Utils
30
30
  end
31
31
 
32
32
  def translate_default
33
- I18n.t([*@options[:default]].select { |translation| i18n_set? translation }.first, default: [*@options[:default]].last)
33
+ I18n.t(Array(@options[:default]).find { |translation| i18n_set? translation }, default: Array(@options[:default]).last)
34
34
  end
35
35
  end
36
36
  end
@@ -5,18 +5,24 @@ module UiBibz::Utils
5
5
  class Screwdriver
6
6
  include Singleton
7
7
 
8
- def self.join_classes(*classes)
9
- klasses = [*classes].flatten.map(&:to_s).compact.uniq.reject(&:blank?)
10
- klasses.empty? ? nil : klasses
11
- end
8
+ class << self
9
+ def join_classes(*classes)
10
+ klasses = Array(classes).flatten.map(&:to_s).compact.uniq.reject(&:blank?)
11
+ klasses.empty? ? nil : klasses
12
+ end
12
13
 
13
- def self.exclude_classes(html_classes, *classes)
14
- klasses = (html_classes || []).flatten.map(&:to_s).reject { |klass_name| [*classes].flatten.include?(klass_name.to_s) || klass_name.blank? }
15
- klasses.empty? ? nil : klasses
16
- end
14
+ def exclude_classes(html_classes, *classes)
15
+ klasses = (html_classes || []).flatten.map(&:to_s).reject { |klass_name| Array(classes).flatten.include?(klass_name.to_s) || klass_name.blank? }
16
+ klasses.empty? ? nil : klasses
17
+ end
18
+
19
+ def uniq_word_in_string(str)
20
+ str.split(/\s/).uniq
21
+ end
17
22
 
18
- def self.uniq_word_in_string(str)
19
- str.split(/\s/).uniq
23
+ def tapped?(block)
24
+ block.present? && block.parameters.present?
25
+ end
20
26
  end
21
27
  end
22
28
  end
@@ -0,0 +1,5 @@
1
+ {
2
+ "dependencies": {
3
+ "ui-bibz-js": "file:/home/thomas/Apps/ui-bibz-js"
4
+ }
5
+ }
@@ -3,6 +3,6 @@
3
3
  # Add your own tasks in files placed in lib/tasks ending in .rake,
4
4
  # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
5
5
 
6
- require File.expand_path('config/application', __dir__)
6
+ require_relative 'config/application'
7
7
 
8
8
  Rails.application.load_tasks
@@ -0,0 +1,3 @@
1
+ import { UiBibz } from 'ui_bibz'
2
+
3
+ UiBibz.start()