ui_bibz 2.4.0 → 2.5.0
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.
- checksums.yaml +4 -4
- data/.overcommit.yml +5 -0
- data/.rubocop.yml +52 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +5 -3
- data/Gemfile.lock +25 -1
- data/Rakefile +8 -6
- data/config/initializers/simple_form_init.rb +3 -1
- data/config/initializers/will_paginate.rb +11 -6
- data/lib/generators/ui_bibz/install_generator.rb +6 -5
- data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +1 -1
- data/lib/tasks/ui_bibz_tasks.rake +2 -0
- data/lib/ui_bibz.rb +91 -100
- data/lib/ui_bibz/concerns/models/searchable.rb +56 -61
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +26 -26
- data/lib/ui_bibz/helpers/ui/core/icons_helper.rb +6 -6
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +5 -5
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +5 -4
- data/lib/ui_bibz/helpers/ui/core/navigations_helper.rb +9 -9
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +11 -11
- data/lib/ui_bibz/helpers/ui/core/windows_helper.rb +3 -3
- data/lib/ui_bibz/helpers/ui/core_helper.rb +2 -0
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +12 -12
- data/lib/ui_bibz/helpers/utils_helper.rb +8 -11
- data/lib/ui_bibz/infos.rb +9 -7
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +40 -39
- data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +8 -6
- data/lib/ui_bibz/inputs/ui_bibz_inputs/string_input.rb +18 -18
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_auto_complete_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_box_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_group_input.rb +6 -5
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_date_picker_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_dropdown_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_file_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_formula_field_input.rb +5 -4
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_markdown_editor_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_column_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_multi_select_field_input.rb +3 -3
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_number_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_radio_field_input.rb +7 -7
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_range_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_select_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_switch_field_input.rb +3 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_text_field_input.rb +3 -2
- data/lib/ui_bibz/rails/engine.rb +11 -15
- data/lib/ui_bibz/ui/base.rb +10 -6
- data/lib/ui_bibz/ui/core/boxes/card.rb +31 -32
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +11 -12
- data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +7 -8
- data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +12 -13
- data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +6 -7
- data/lib/ui_bibz/ui/core/boxes/components/card_list_group.rb +4 -5
- data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +5 -6
- data/lib/ui_bibz/ui/core/component.rb +22 -20
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +14 -15
- data/lib/ui_bibz/ui/core/forms/buttons/button_link.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +11 -11
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +22 -23
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +3 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_link.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +21 -22
- data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +8 -9
- data/lib/ui_bibz/ui/core/forms/files/file_field.rb +5 -6
- data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +10 -11
- data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +3 -4
- data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +9 -9
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +9 -10
- data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +13 -14
- data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +4 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +3 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +24 -25
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -5
- data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +6 -7
- data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +6 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +5 -6
- data/lib/ui_bibz/ui/core/icons/glyph.rb +13 -14
- data/lib/ui_bibz/ui/core/icons/glyph_group.rb +16 -17
- data/lib/ui_bibz/ui/core/icons/star.rb +7 -9
- data/lib/ui_bibz/ui/core/layouts/col.rb +20 -21
- data/lib/ui_bibz/ui/core/layouts/container.rb +5 -6
- data/lib/ui_bibz/ui/core/layouts/row.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list.rb +19 -20
- data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +4 -5
- data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +5 -6
- data/lib/ui_bibz/ui/core/lists/list_group.rb +15 -16
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +12 -13
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +4 -5
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +8 -9
- data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +8 -8
- data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +5 -6
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +7 -7
- data/lib/ui_bibz/ui/core/navigations/link.rb +6 -7
- data/lib/ui_bibz/ui/core/navigations/nav.rb +20 -27
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +23 -24
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +9 -12
- data/lib/ui_bibz/ui/core/navigations/tab_group.rb +7 -8
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +14 -15
- data/lib/ui_bibz/ui/core/notifications/alert.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/badge.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +8 -9
- data/lib/ui_bibz/ui/core/notifications/components/bar.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +5 -6
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +7 -8
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +12 -13
- data/lib/ui_bibz/ui/core/notifications/spinner.rb +11 -12
- data/lib/ui_bibz/ui/core/notifications/toast.rb +9 -10
- data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +4 -5
- data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +6 -7
- data/lib/ui_bibz/ui/core/windows/modal.rb +8 -9
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +13 -15
- data/lib/ui_bibz/ui/extensions/core/component/klass_extension.rb +9 -10
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +22 -21
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +9 -9
- data/lib/ui_bibz/ui/extensions/core/forms/surround_extension.rb +8 -10
- data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +6 -7
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +12 -12
- data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +5 -6
- data/lib/ui_bibz/ui/ux/containers/panel.rb +21 -22
- data/lib/ui_bibz/ui/ux/tables/components/actions.rb +14 -16
- data/lib/ui_bibz/ui/ux/tables/components/as.rb +8 -9
- data/lib/ui_bibz/ui/ux/tables/components/column.rb +4 -4
- data/lib/ui_bibz/ui/ux/tables/components/columns.rb +4 -3
- data/lib/ui_bibz/ui/ux/tables/components/store.rb +5 -7
- data/lib/ui_bibz/ui/ux/tables/components/thead.rb +5 -6
- data/lib/ui_bibz/ui/ux/tables/extensions/actionable.rb +24 -23
- data/lib/ui_bibz/ui/ux/tables/extensions/paginable.rb +8 -10
- data/lib/ui_bibz/ui/ux/tables/extensions/searchable.rb +9 -9
- data/lib/ui_bibz/ui/ux/tables/extensions/sortable.rb +26 -26
- data/lib/ui_bibz/ui/ux/tables/table.rb +32 -39
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +18 -26
- data/lib/ui_bibz/ui/ux/tables/table_pagination.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +15 -18
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +19 -23
- data/lib/ui_bibz/utils/glyph_changer.rb +13 -13
- data/lib/ui_bibz/utils/internationalization.rb +10 -7
- data/lib/ui_bibz/utils/screwdriver.rb +7 -5
- data/test/dummy/Rakefile +3 -1
- data/test/dummy/app/controllers/application_controller.rb +2 -0
- data/test/dummy/app/controllers/users_controller.rb +15 -14
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/application_record.rb +2 -0
- data/test/dummy/app/models/continent.rb +2 -0
- data/test/dummy/app/models/country.rb +2 -0
- data/test/dummy/app/models/user.rb +2 -0
- data/test/dummy/bin/bundle +3 -1
- data/test/dummy/bin/rails +3 -1
- data/test/dummy/bin/rake +2 -0
- data/test/dummy/bin/setup +10 -8
- data/test/dummy/config.ru +2 -0
- data/test/dummy/config/application.rb +5 -4
- data/test/dummy/config/boot.rb +4 -2
- data/test/dummy/config/environment.rb +3 -1
- data/test/dummy/config/environments/development.rb +2 -0
- data/test/dummy/config/environments/production.rb +2 -0
- data/test/dummy/config/environments/test.rb +2 -0
- data/test/dummy/config/initializers/assets.rb +2 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +2 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +2 -0
- data/test/dummy/config/initializers/mime_types.rb +2 -0
- data/test/dummy/config/initializers/session_store.rb +2 -0
- data/test/dummy/config/initializers/simple_form_bootstrap.rb +3 -1
- data/test/dummy/config/initializers/ui_bibz.rb +1 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -0
- data/test/dummy/config/routes.rb +2 -0
- data/test/dummy/db/migrate/20150123191805_create_users.rb +2 -0
- data/test/dummy/db/migrate/20170309084406_continents.rb +2 -0
- data/test/dummy/db/migrate/20170309084453_countries.rb +2 -0
- data/test/dummy/db/schema.rb +22 -22
- data/test/dummy/test/models/user_test.rb +2 -0
- data/test/factories/user.rb +6 -4
- data/test/simple_form_test.rb +28 -34
- data/test/store_test.rb +10 -9
- data/test/support/factory_bot.rb +9 -5
- data/test/test_helper.rb +8 -8
- data/test/ui/core/boxes/card_test.rb +28 -26
- data/test/ui/core/boxes/jumbotron_test.rb +4 -3
- data/test/ui/core/component_test.rb +4 -4
- data/test/ui/core/forms/buttons/button_group_test.rb +8 -7
- data/test/ui/core/forms/buttons/button_link_test.rb +16 -14
- data/test/ui/core/forms/buttons/button_refresh_test.rb +5 -5
- data/test/ui/core/forms/buttons/button_test.rb +25 -23
- data/test/ui/core/forms/choices/box_switch_field_test.rb +62 -62
- data/test/ui/core/forms/choices/checkbox_field_test.rb +7 -6
- data/test/ui/core/forms/choices/choice_group_test.rb +6 -5
- data/test/ui/core/forms/choices/radio_field_test.rb +7 -6
- data/test/ui/core/forms/dates/date_picker_field_test.rb +12 -11
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +12 -11
- data/test/ui/core/forms/files/text_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/formula_field_test.rb +7 -6
- data/test/ui/core/forms/numbers/number_field_test.rb +12 -11
- data/test/ui/core/forms/numbers/range_field_test.rb +12 -11
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +61 -60
- data/test/ui/core/forms/selects/multi_column_field_test.rb +14 -13
- data/test/ui/core/forms/selects/multi_select_field_test.rb +19 -18
- data/test/ui/core/forms/selects/select_field_test.rb +13 -13
- data/test/ui/core/forms/surrounds/surround_field_test.rb +54 -54
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +7 -6
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -7
- data/test/ui/core/forms/texts/text_field_test.rb +17 -16
- data/test/ui/core/icons/glyph_group_test.rb +8 -8
- data/test/ui/core/icons/glyph_test.rb +4 -4
- data/test/ui/core/icons/star_test.rb +37 -36
- data/test/ui/core/layouts/col_test.rb +11 -10
- data/test/ui/core/layouts/container_test.rb +3 -2
- data/test/ui/core/layouts/row_test.rb +4 -3
- data/test/ui/core/lists/list_group_test.rb +7 -6
- data/test/ui/core/navigations/breadcrumb_test.rb +12 -14
- data/test/ui/core/navigations/link_test.rb +9 -8
- data/test/ui/core/navigations/nav_test.rb +22 -21
- data/test/ui/core/navigations/navbar_test.rb +11 -11
- data/test/ui/core/navigations/pagination_test.rb +14 -13
- data/test/ui/core/navigations/tab_group_test.rb +22 -21
- data/test/ui/core/navigations/toolbar_test.rb +4 -3
- data/test/ui/core/notifications/alert_test.rb +5 -4
- data/test/ui/core/notifications/badge_test.rb +5 -4
- data/test/ui/core/notifications/progress_bar_test.rb +13 -13
- data/test/ui/core/notifications/spinner_test.rb +9 -8
- data/test/ui/core/notifications/toast_test.rb +3 -2
- data/test/ui/core/windows/modal_test.rb +3 -2
- data/test/ui/ux/containers/panel_test.rb +7 -6
- data/test/ui/ux/tables/table_test.rb +33 -33
- data/test/ui_bibz_test.rb +3 -1
- data/ui_bibz.gemspec +32 -28
- metadata +73 -42
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Files
|
3
4
|
# Create a FileField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -40,16 +41,15 @@ module UiBibz::Ui::Core::Forms::Files
|
|
40
41
|
# end
|
41
42
|
#
|
42
43
|
class FileField < UiBibz::Ui::Core::Component
|
43
|
-
|
44
44
|
# See UiBibz::Ui::Core::Component.initialize
|
45
|
-
def initialize
|
45
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
46
46
|
super
|
47
47
|
end
|
48
48
|
|
49
49
|
# Render html tag
|
50
50
|
def pre_render
|
51
51
|
content_tag :div, html_options do
|
52
|
-
concat file_field_tag content, class:
|
52
|
+
concat file_field_tag content, class: 'custom-file-input', multiple: options[:multiple], disabled: disabled?
|
53
53
|
concat label_tag label_name, label_content, class: 'custom-file-label'
|
54
54
|
end
|
55
55
|
end
|
@@ -65,8 +65,7 @@ module UiBibz::Ui::Core::Forms::Files
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def component_html_classes
|
68
|
-
super <<
|
68
|
+
super << 'custom-file'
|
69
69
|
end
|
70
|
-
|
71
70
|
end
|
72
71
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Numbers
|
3
4
|
# Create a FormulaField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -37,9 +38,8 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
37
38
|
# formula_field(value, options = {}, html_options = {})
|
38
39
|
#
|
39
40
|
class FormulaField < UiBibz::Ui::Core::Component
|
40
|
-
|
41
41
|
# See UiBibz::Ui::Core::Component.initialize
|
42
|
-
def initialize
|
42
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
43
43
|
super
|
44
44
|
end
|
45
45
|
|
@@ -55,7 +55,7 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
55
55
|
sf.text_field formula_field_name, nil, text_field_formula_html_options
|
56
56
|
sf.addon '=', class: 'formula-field-sign'
|
57
57
|
sf.text_field content, nil, text_field_input_html_options
|
58
|
-
sf.addon formula_field_alert_glyph, { class: 'formula-field-alert' }, { data: { toggle: 'tooltip' }}
|
58
|
+
sf.addon formula_field_alert_glyph, { class: 'formula-field-alert' }, { data: { toggle: 'tooltip' } }
|
59
59
|
end.render
|
60
60
|
end
|
61
61
|
|
@@ -67,11 +67,11 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
67
67
|
|
68
68
|
def text_field_input_html_options
|
69
69
|
opts = html_options.clone || {}
|
70
|
-
opts.merge({ readonly: true, class: 'formula-field-result'})
|
70
|
+
opts.merge({ readonly: true, class: 'formula-field-result' })
|
71
71
|
end
|
72
72
|
|
73
73
|
def component_html_classes
|
74
|
-
super << [
|
74
|
+
super << %w[formula-field form-control]
|
75
75
|
end
|
76
76
|
|
77
77
|
def component_html_options
|
@@ -79,7 +79,7 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
79
79
|
end
|
80
80
|
|
81
81
|
def formula_field_alert_glyph
|
82
|
-
UiBibz::Ui::Core::Icons::Glyph.new('exclamation-triangle', status: :danger
|
82
|
+
UiBibz::Ui::Core::Icons::Glyph.new('exclamation-triangle', status: :danger).render
|
83
83
|
end
|
84
84
|
|
85
85
|
def formula_field_name
|
@@ -87,17 +87,16 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
87
87
|
end
|
88
88
|
|
89
89
|
def content_formula_name
|
90
|
-
content.to_s.split('').select{ |i| i ==
|
90
|
+
content.to_s.split('').select { |i| i == ']' }.count.positive? ? content.to_s.gsub(/]$/, '_formula]') : "#{content}_formula"
|
91
91
|
end
|
92
92
|
|
93
93
|
def status
|
94
|
-
"has-#{
|
94
|
+
"has-#{options[:status]}" if options[:status]
|
95
95
|
end
|
96
96
|
|
97
97
|
# :lg, :sm or :xs
|
98
98
|
def size
|
99
|
-
"input-group-#{
|
99
|
+
"input-group-#{options[:size]}" if options[:size]
|
100
100
|
end
|
101
|
-
|
102
101
|
end
|
103
102
|
end
|
@@ -1,6 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/extensions/core/forms/surround_extension'
|
2
4
|
module UiBibz::Ui::Core::Forms::Numbers
|
3
|
-
|
4
5
|
# Create a NumberField
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -46,9 +47,8 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
46
47
|
# end
|
47
48
|
#
|
48
49
|
class NumberField < UiBibz::Ui::Core::Forms::Texts::TextField
|
49
|
-
|
50
50
|
# See UiBibz::Ui::Core::Component.initialize
|
51
|
-
def initialize
|
51
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
52
52
|
super
|
53
53
|
end
|
54
54
|
|
@@ -73,6 +73,5 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
73
73
|
within: options[:within]
|
74
74
|
}
|
75
75
|
end
|
76
|
-
|
77
76
|
end
|
78
77
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Numbers
|
3
4
|
# Create a RangeField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -45,9 +46,8 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
45
46
|
# end
|
46
47
|
#
|
47
48
|
class RangeField < UiBibz::Ui::Core::Forms::Numbers::NumberField
|
48
|
-
|
49
49
|
# See UiBibz::Ui::Core::Component.initialize
|
50
|
-
def initialize
|
50
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
51
51
|
super
|
52
52
|
end
|
53
53
|
|
@@ -61,6 +61,5 @@ module UiBibz::Ui::Core::Forms::Numbers
|
|
61
61
|
def component_html_classes
|
62
62
|
'custom-range'
|
63
63
|
end
|
64
|
-
|
65
64
|
end
|
66
65
|
end
|
@@ -1,6 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/extensions/core/forms/surround_extension'
|
2
4
|
module UiBibz::Ui::Core::Forms::Selects
|
3
|
-
|
4
5
|
# Create a SelectField
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -16,7 +17,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
16
17
|
#
|
17
18
|
# You can add HTML attributes using the +html_options+.
|
18
19
|
# You can pass arguments in options attribute:
|
19
|
-
# * +status+ - status of
|
20
|
+
# * +status+ - status of element with symbol value:
|
20
21
|
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+, +:link+)
|
21
22
|
# * +option_tags+ - Array, Object [required]
|
22
23
|
# * +searchable+ - Boolean
|
@@ -70,7 +71,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
70
71
|
include SurroundExtension
|
71
72
|
|
72
73
|
# See UiBibz::Ui::Core::Component.initialize
|
73
|
-
def initialize
|
74
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
74
75
|
super
|
75
76
|
end
|
76
77
|
|
@@ -88,12 +89,11 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
88
89
|
# Try to put it on a line
|
89
90
|
def component_html_options
|
90
91
|
super.merge({
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
92
|
+
multiple: options[:multiple],
|
93
|
+
disabled: options[:state] == :disabled,
|
94
|
+
include_blank: options[:include_blank],
|
95
|
+
prompt: options[:prompt]
|
96
|
+
})
|
96
97
|
end
|
97
|
-
|
98
98
|
end
|
99
99
|
end
|
@@ -1,6 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/extensions/core/forms/surround_extension'
|
2
4
|
module UiBibz::Ui::Core::Forms::Selects
|
3
|
-
|
4
5
|
# Create a DropdownSelectField
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -16,7 +17,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
16
17
|
#
|
17
18
|
# You can add HTML attributes using the +html_options+.
|
18
19
|
# You can pass arguments in options attribute:
|
19
|
-
# * +status+ - status of
|
20
|
+
# * +status+ - status of element with symbol value:
|
20
21
|
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+, +:link+)
|
21
22
|
# * +option_tags+ - Array, Object [required]
|
22
23
|
# * +searchable+ - Boolean
|
@@ -66,9 +67,8 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
66
67
|
# dropdown_select_field(content, options = {}, html_options = {})
|
67
68
|
#
|
68
69
|
class DropdownSelectField < UiBibz::Ui::Core::Forms::Selects::AbstractSelect
|
69
|
-
|
70
70
|
# See UiBibz::Ui::Core::Component.initialize
|
71
|
-
def initialize
|
71
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
72
72
|
super
|
73
73
|
end
|
74
74
|
|
@@ -114,7 +114,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
114
114
|
end
|
115
115
|
|
116
116
|
def style
|
117
|
-
add_html_data('style', "btn-#{
|
117
|
+
add_html_data('style', "btn-#{options[:status] || :secondary}")
|
118
118
|
end
|
119
119
|
|
120
120
|
def menu_size
|
@@ -130,7 +130,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
130
130
|
end
|
131
131
|
|
132
132
|
def add_status
|
133
|
-
add_html_data('style', "btn-#{
|
133
|
+
add_html_data('style', "btn-#{options[:status]}") if options[:status]
|
134
134
|
end
|
135
135
|
|
136
136
|
############################# Css classes
|
@@ -142,6 +142,5 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
142
142
|
def dropup
|
143
143
|
'dropup' if options[:dropup]
|
144
144
|
end
|
145
|
-
|
146
145
|
end
|
147
146
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Selects
|
3
4
|
# Create a MultiColumnField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -46,9 +47,8 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
46
47
|
# multi_column_field(content, options = {}, html_options = {})
|
47
48
|
#
|
48
49
|
class MultiColumnField < UiBibz::Ui::Core::Forms::Selects::AbstractSelect
|
49
|
-
|
50
50
|
# See UiBibz::Ui::Core::Component.initialize
|
51
|
-
def initialize
|
51
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
52
52
|
super
|
53
53
|
end
|
54
54
|
|
@@ -66,11 +66,11 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
66
66
|
|
67
67
|
def component_html_options
|
68
68
|
super.merge({
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
69
|
+
multiple: true,
|
70
|
+
disabled: options[:state] == :disabled,
|
71
|
+
include_blank: options[:include_blank],
|
72
|
+
prompt: options[:prompt]
|
73
|
+
})
|
74
74
|
end
|
75
75
|
|
76
76
|
def searchable
|
@@ -82,8 +82,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
82
82
|
end
|
83
83
|
|
84
84
|
def status
|
85
|
-
"has-#{
|
85
|
+
"has-#{options[:status]}" if options[:status]
|
86
86
|
end
|
87
|
-
|
88
87
|
end
|
89
88
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Selects
|
3
4
|
# Create a MultiSelectField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Forms::Buttons::Button
|
@@ -51,9 +52,8 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
51
52
|
# multi_select_field(content, options = {}, html_options = {})
|
52
53
|
#
|
53
54
|
class MultiSelectField < UiBibz::Ui::Core::Forms::Selects::AbstractSelect
|
54
|
-
|
55
55
|
# See UiBibz::Ui::Core::Forms::Buttons::Button.initialize
|
56
|
-
def initialize
|
56
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
57
57
|
super
|
58
58
|
end
|
59
59
|
|
@@ -61,11 +61,11 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
61
61
|
|
62
62
|
def component_html_options
|
63
63
|
super.merge({
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
64
|
+
multiple: true,
|
65
|
+
disabled: options[:state] == :disabled,
|
66
|
+
include_blank: false,
|
67
|
+
prompt: false
|
68
|
+
})
|
69
69
|
end
|
70
70
|
|
71
71
|
def component_html_classes
|
@@ -102,25 +102,24 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
102
102
|
end
|
103
103
|
|
104
104
|
def status
|
105
|
-
options[:status].nil? ? 'btn-secondary' : "btn-#{
|
105
|
+
options[:status].nil? ? 'btn-secondary' : "btn-#{options[:status]}"
|
106
106
|
end
|
107
107
|
|
108
108
|
def type
|
109
|
-
|
109
|
+
'btn-block' if options[:type] == :block
|
110
110
|
end
|
111
111
|
|
112
112
|
# :lg, :sm or :xs
|
113
113
|
def size
|
114
|
-
"btn-#{
|
114
|
+
"btn-#{options[:size]}" if options[:size]
|
115
115
|
end
|
116
116
|
|
117
117
|
def button_outline
|
118
|
-
[
|
118
|
+
['btn', outline, @status || :secondary].compact.join('-')
|
119
119
|
end
|
120
120
|
|
121
121
|
def outline
|
122
|
-
|
122
|
+
'outline' if @options[:outline]
|
123
123
|
end
|
124
|
-
|
125
124
|
end
|
126
125
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Selects
|
3
4
|
# Create a SelectField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -15,7 +16,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
15
16
|
#
|
16
17
|
# You can add HTML attributes using the +html_options+.
|
17
18
|
# You can pass arguments in options attribute:
|
18
|
-
# * +status+ - status of
|
19
|
+
# * +status+ - status of element with symbol value:
|
19
20
|
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+, +:link+)
|
20
21
|
# * +option_tags+ - Array, Object [required]
|
21
22
|
# * +size+
|
@@ -59,16 +60,15 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
59
60
|
# select_field(content, options = {}, html_options = {})
|
60
61
|
#
|
61
62
|
class SelectField < UiBibz::Ui::Core::Forms::Selects::AbstractSelect
|
62
|
-
|
63
63
|
# See UiBibz::Ui::Core::Component.initialize
|
64
|
-
def initialize
|
64
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
65
65
|
super
|
66
66
|
end
|
67
67
|
|
68
68
|
private
|
69
69
|
|
70
70
|
def component_html_classes
|
71
|
-
super << [
|
71
|
+
super << ['select-field', 'form-control', 'custom-select', size]
|
72
72
|
end
|
73
73
|
|
74
74
|
def component_options
|
@@ -76,8 +76,7 @@ module UiBibz::Ui::Core::Forms::Selects
|
|
76
76
|
end
|
77
77
|
|
78
78
|
def size
|
79
|
-
"custom-select-#{
|
79
|
+
"custom-select-#{options[:size]}" unless options[:size].nil?
|
80
80
|
end
|
81
|
-
|
82
81
|
end
|
83
82
|
end
|
@@ -1,8 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module UiBibz::Ui::Core::Forms::Surrounds
|
2
4
|
class SurroundAddon < UiBibz::Ui::Core::Component
|
3
|
-
|
4
5
|
# See UiBibz::Ui::Core::Dropdown.initialize
|
5
|
-
def initialize
|
6
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
6
7
|
super
|
7
8
|
end
|
8
9
|
|
@@ -11,7 +12,7 @@ module UiBibz::Ui::Core::Forms::Surrounds
|
|
11
12
|
surround_addon_html_tag
|
12
13
|
end
|
13
14
|
|
14
|
-
|
15
|
+
private
|
15
16
|
|
16
17
|
def surround_addon_html_tag
|
17
18
|
content_tag :span, glyph_and_content_html, html_options
|
@@ -20,6 +21,5 @@ module UiBibz::Ui::Core::Forms::Surrounds
|
|
20
21
|
def component_html_classes
|
21
22
|
'input-group-addon'
|
22
23
|
end
|
23
|
-
|
24
24
|
end
|
25
25
|
end
|
@@ -1,8 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module UiBibz::Ui::Core::Forms::Surrounds
|
2
4
|
class SurroundButton < UiBibz::Ui::Core::Forms::Buttons::Button
|
3
|
-
|
4
5
|
# See UiBibz::Ui::Core::Dropdown.initialize
|
5
|
-
def initialize
|
6
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
6
7
|
super
|
7
8
|
end
|
8
9
|
|
@@ -11,6 +12,5 @@ module UiBibz::Ui::Core::Forms::Surrounds
|
|
11
12
|
button_html_tag
|
12
13
|
end
|
13
14
|
end
|
14
|
-
|
15
15
|
end
|
16
16
|
end
|