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::Choices
|
3
4
|
# Create a radio
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -46,9 +47,8 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
46
47
|
# end
|
47
48
|
#
|
48
49
|
class RadioField < UiBibz::Ui::Core::Forms::Choices::CheckboxField
|
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
|
|
@@ -57,7 +57,7 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
57
57
|
radio_field_html_tag
|
58
58
|
end
|
59
59
|
|
60
|
-
|
60
|
+
private
|
61
61
|
|
62
62
|
def radio_field_html_tag
|
63
63
|
content_tag :div, html_options.except(:id) do
|
@@ -75,12 +75,11 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
75
75
|
end
|
76
76
|
|
77
77
|
def label_name
|
78
|
-
"#{
|
78
|
+
"#{content}_#{options[:value]}"
|
79
79
|
end
|
80
80
|
|
81
81
|
def component_html_classes
|
82
|
-
[
|
82
|
+
['custom-control', 'custom-radio', inline]
|
83
83
|
end
|
84
|
-
|
85
84
|
end
|
86
85
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Choices
|
3
4
|
# Create a SurroundField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -40,16 +41,14 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
40
41
|
# end
|
41
42
|
#
|
42
43
|
class SwitchField < UiBibz::Ui::Core::Forms::Choices::CheckboxField
|
43
|
-
|
44
|
-
def initialize content = nil, options = nil, html_options = nil, &block
|
44
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
45
45
|
super
|
46
46
|
end
|
47
47
|
|
48
48
|
private
|
49
49
|
|
50
50
|
def component_html_classes
|
51
|
-
[
|
51
|
+
['custom-control', 'custom-switch', inline]
|
52
52
|
end
|
53
|
-
|
54
53
|
end
|
55
54
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Dates
|
3
4
|
# Create a DatePickerField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -43,9 +44,8 @@ module UiBibz::Ui::Core::Forms::Dates
|
|
43
44
|
# date_picker_field(content, options = {}, html_options = {})
|
44
45
|
#
|
45
46
|
class DatePickerField < UiBibz::Ui::Core::Component
|
46
|
-
|
47
47
|
# See UiBibz::Ui::Core::Component.initialize
|
48
|
-
def initialize
|
48
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
49
49
|
super
|
50
50
|
end
|
51
51
|
|
@@ -54,7 +54,7 @@ module UiBibz::Ui::Core::Forms::Dates
|
|
54
54
|
date_picker_field_html_tag
|
55
55
|
end
|
56
56
|
|
57
|
-
|
57
|
+
private
|
58
58
|
|
59
59
|
def date_picker_field_html_tag
|
60
60
|
if options[:range]
|
@@ -90,23 +90,23 @@ module UiBibz::Ui::Core::Forms::Dates
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def component_html_classes
|
93
|
-
super << %w
|
93
|
+
super << %w[date_picker form-control]
|
94
94
|
end
|
95
95
|
|
96
96
|
def component_html_options
|
97
|
-
super.merge({ disabled: options[:state] == :disabled
|
97
|
+
super.merge({ disabled: options[:state] == :disabled })
|
98
98
|
end
|
99
99
|
|
100
100
|
def date_locale
|
101
|
-
add_html_data
|
101
|
+
add_html_data 'date_locale', I18n.locale.to_s
|
102
102
|
end
|
103
103
|
|
104
104
|
def provide
|
105
|
-
add_html_data
|
105
|
+
add_html_data 'provide', 'datepicker'
|
106
106
|
end
|
107
107
|
|
108
108
|
def format
|
109
|
-
add_html_data
|
109
|
+
add_html_data 'date_format', picker_pattern
|
110
110
|
end
|
111
111
|
|
112
112
|
def picker_pattern
|
@@ -122,52 +122,52 @@ module UiBibz::Ui::Core::Forms::Dates
|
|
122
122
|
end
|
123
123
|
|
124
124
|
def calendar_weeks
|
125
|
-
add_html_data(
|
125
|
+
add_html_data('date_calendar_weeks') if options[:calendar_weeks]
|
126
126
|
end
|
127
127
|
|
128
128
|
def autoclose
|
129
|
-
add_html_data(
|
129
|
+
add_html_data('date_autoclose') if options[:autoclose]
|
130
130
|
end
|
131
131
|
|
132
132
|
def dates_disabled
|
133
|
-
add_html_data(
|
133
|
+
add_html_data('dates_disabled', [options[:dates_disabled]].flatten) if options[:dates_disabled]
|
134
134
|
end
|
135
135
|
|
136
136
|
def toggle_active
|
137
|
-
add_html_data(
|
137
|
+
add_html_data('date_toggle_active', true)
|
138
138
|
end
|
139
139
|
|
140
140
|
def display_mode
|
141
|
-
add_html_data(
|
141
|
+
add_html_data('date_start_view', views[options[:display_mode]]) if options[:display_mode]
|
142
142
|
end
|
143
143
|
|
144
144
|
def display_mode_min
|
145
|
-
add_html_data(
|
145
|
+
add_html_data('date_min_view_mode', views[options[:display_mode_min]]) if options[:display_mode_min]
|
146
146
|
end
|
147
147
|
|
148
148
|
def display_mode_max
|
149
|
-
add_html_data(
|
149
|
+
add_html_data('date_max_view_mode', views[options[:display_mode_max]]) if options[:display_mode_max]
|
150
150
|
end
|
151
151
|
|
152
152
|
def days_of_week_disabled
|
153
|
-
add_html_data(
|
153
|
+
add_html_data('date_days_of_week_disabled', [options[:days_of_week_disabled]].flatten) if options[:days_of_week_disabled]
|
154
154
|
end
|
155
155
|
|
156
156
|
def days_of_week_highlighted
|
157
|
-
add_html_data(
|
157
|
+
add_html_data('date_days_of_week_highlighted', [options[:days_of_week_highlighted]].flatten) if options[:days_of_week_highlighted]
|
158
158
|
end
|
159
159
|
|
160
160
|
def multiple
|
161
|
-
add_html_data(
|
161
|
+
add_html_data('date_multidate', options[:multiple]) if options[:multiple]
|
162
162
|
end
|
163
163
|
|
164
164
|
# :lg, :sm or :xs
|
165
165
|
def size
|
166
|
-
"input-group-#{
|
166
|
+
"input-group-#{options[:size]}" if options[:size]
|
167
167
|
end
|
168
168
|
|
169
169
|
def status
|
170
|
-
"has-#{
|
170
|
+
"has-#{options[:status]}" if options[:status]
|
171
171
|
end
|
172
172
|
|
173
173
|
def views
|
@@ -175,10 +175,9 @@ module UiBibz::Ui::Core::Forms::Dates
|
|
175
175
|
days: 0,
|
176
176
|
months: 1,
|
177
177
|
years: 2,
|
178
|
-
decades:
|
178
|
+
decades: 3,
|
179
179
|
centuries: 4
|
180
180
|
}
|
181
181
|
end
|
182
|
-
|
183
182
|
end
|
184
183
|
end
|
@@ -1,17 +1,15 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
3
4
|
# Create DropdownDivider
|
4
5
|
#
|
5
6
|
class DropdownDivider < UiBibz::Ui::Base
|
6
|
-
|
7
7
|
# See UiBibz::Ui::Core::Component.initialize
|
8
|
-
def initialize
|
9
|
-
end
|
8
|
+
def initialize; end
|
10
9
|
|
11
10
|
# Render html tag
|
12
11
|
def render
|
13
12
|
content_tag :div, nil, class: 'dropdown-divider'
|
14
13
|
end
|
15
|
-
|
16
14
|
end
|
17
15
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
3
4
|
# Create DropdownHeader
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -32,9 +33,8 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
32
33
|
# end.render
|
33
34
|
#
|
34
35
|
class DropdownHeader < UiBibz::Ui::Core::Component
|
35
|
-
|
36
36
|
# See UiBibz::Ui::Core::Component.initialize
|
37
|
-
def initialize
|
37
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
38
38
|
super
|
39
39
|
end
|
40
40
|
|
@@ -43,7 +43,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
43
43
|
content_tag :h6, glyph_and_content_html, html_options
|
44
44
|
end
|
45
45
|
|
46
|
-
|
46
|
+
private
|
47
47
|
|
48
48
|
def component_html_classes
|
49
49
|
'dropdown-header'
|
@@ -52,6 +52,5 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
52
52
|
def component_html_options
|
53
53
|
{ role: 'presentation' }
|
54
54
|
end
|
55
|
-
|
56
55
|
end
|
57
56
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
3
4
|
# Create DropdownLink
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -14,7 +15,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
14
15
|
#
|
15
16
|
# You can add HTML attributes using the +html_options+.
|
16
17
|
# You can pass arguments in options attribute:
|
17
|
-
# * +state+ - status of
|
18
|
+
# * +state+ - status of element with symbol value:
|
18
19
|
# (+:active+)
|
19
20
|
# * +url+ - String
|
20
21
|
# * +glyph+ - Add glyph with name or hash options
|
@@ -39,10 +40,9 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
39
40
|
# 'Home'
|
40
41
|
# end.render
|
41
42
|
#
|
42
|
-
class DropdownLink <
|
43
|
-
|
43
|
+
class DropdownLink < UiBibz::Ui::Core::Component
|
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
|
@html_options = @html_options.merge(link_html_options)
|
48
48
|
end
|
@@ -59,12 +59,11 @@ module UiBibz::Ui::Core::Forms::Dropdowns::Components
|
|
59
59
|
end
|
60
60
|
|
61
61
|
def link_url
|
62
|
-
options[:url] ||
|
62
|
+
options[:url] || '#'
|
63
63
|
end
|
64
64
|
|
65
65
|
def link_html_options
|
66
66
|
@options[:link_html_options].nil? ? {} : @options[:link_html_options]
|
67
67
|
end
|
68
|
-
|
69
68
|
end
|
70
69
|
end
|
@@ -1,8 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/core/forms/dropdowns/components/dropdown_header'
|
2
4
|
require 'ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider'
|
3
5
|
require 'ui_bibz/ui/core/forms/dropdowns/components/dropdown_link'
|
4
6
|
module UiBibz::Ui::Core::Forms::Dropdowns
|
5
|
-
|
6
7
|
# Create a dropdown
|
7
8
|
#
|
8
9
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -18,7 +19,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
18
19
|
#
|
19
20
|
# You can add HTML attributes using the +html_options+.
|
20
21
|
# You can pass arguments in options attribute:
|
21
|
-
# * +status+ - status of
|
22
|
+
# * +status+ - status of element with symbol value:
|
22
23
|
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+)
|
23
24
|
# * +size+
|
24
25
|
# (+:xs+, +:sm+, +:lg+)
|
@@ -62,8 +63,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
62
63
|
# end
|
63
64
|
#
|
64
65
|
class Dropdown < UiBibz::Ui::Core::Component
|
65
|
-
|
66
|
-
def initialize content, options = nil, html_options = nil, &block
|
66
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
67
67
|
super
|
68
68
|
@items = []
|
69
69
|
@status = @options.delete(:status)
|
@@ -79,7 +79,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
79
79
|
|
80
80
|
# Add dropdown header
|
81
81
|
# See UiBibz::Ui::Core::Forms::Dropdowns::Components::DropdownHeader
|
82
|
-
def header
|
82
|
+
def header(content = nil, options = nil, html_options = nil, &block)
|
83
83
|
@items << UiBibz::Ui::Core::Forms::Dropdowns::Components::DropdownHeader.new(content, options, html_options, &block).render
|
84
84
|
end
|
85
85
|
|
@@ -91,14 +91,14 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
91
91
|
|
92
92
|
# Add dropdown link in list
|
93
93
|
# See UiBibz::Ui::Core::Forms::Dropdowns::Components::DropdownLink
|
94
|
-
def link
|
94
|
+
def link(content = nil, options = nil, html_options = nil, &block)
|
95
95
|
@items << UiBibz::Ui::Core::Forms::Dropdowns::Components::DropdownLink.new(content, options, html_options, &block).render
|
96
96
|
end
|
97
97
|
|
98
98
|
# Add html component
|
99
|
-
def html
|
99
|
+
def html(content = nil, &block)
|
100
100
|
if !block.nil?
|
101
|
-
context
|
101
|
+
context = eval('self', block.binding) # rubocop:disable Style/EvalWithLocation
|
102
102
|
@items << context.capture(&block)
|
103
103
|
else
|
104
104
|
@items << content
|
@@ -106,10 +106,10 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
106
106
|
end
|
107
107
|
|
108
108
|
def id
|
109
|
-
@id ||= html_options[:id] || generate_id(
|
109
|
+
@id ||= html_options[:id] || generate_id('dropdown')
|
110
110
|
end
|
111
111
|
|
112
|
-
|
112
|
+
protected
|
113
113
|
|
114
114
|
def component_html_classes
|
115
115
|
[type, open, inline, without_caret, keep_open]
|
@@ -122,14 +122,14 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
122
122
|
def button_html
|
123
123
|
html_button = options[:html_button] || {}
|
124
124
|
if options[:tag] == :a
|
125
|
-
content_tag dropdown_tag, button_content, { class: join_classes(
|
125
|
+
content_tag dropdown_tag, button_content, { class: join_classes('btn', button_status, state, size, 'dropdown-toggle'), href: '#', role: 'button', 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false, 'id' => id }.merge(html_button)
|
126
126
|
else
|
127
|
-
content_tag dropdown_tag, button_content, { class: join_classes(
|
127
|
+
content_tag dropdown_tag, button_content, { class: join_classes('btn', button_status, state, size, 'dropdown-toggle'), type: 'button', 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false, 'id' => id }.merge(html_button)
|
128
128
|
end
|
129
129
|
end
|
130
130
|
|
131
131
|
def ul_html
|
132
|
-
content_tag :div, @items.join.html_safe, class: join_classes(
|
132
|
+
content_tag :div, @items.join.html_safe, class: join_classes('dropdown-menu', position, open), 'arial-labelledby' => id
|
133
133
|
end
|
134
134
|
|
135
135
|
def dropdown_tag
|
@@ -137,7 +137,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
137
137
|
end
|
138
138
|
|
139
139
|
def position
|
140
|
-
"dropdown-menu-#{
|
140
|
+
"dropdown-menu-#{@options[:position]}" unless @options[:position].nil?
|
141
141
|
end
|
142
142
|
|
143
143
|
def type
|
@@ -145,33 +145,32 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
145
145
|
end
|
146
146
|
|
147
147
|
def open
|
148
|
-
|
148
|
+
'show' if @options[:open]
|
149
149
|
end
|
150
150
|
|
151
151
|
def keep_open
|
152
|
-
|
152
|
+
'keep-open' if @options[:keep_open]
|
153
153
|
end
|
154
154
|
|
155
155
|
def inline
|
156
|
-
|
156
|
+
'btn-group' if @options[:inline]
|
157
157
|
end
|
158
158
|
|
159
159
|
def without_caret
|
160
|
-
|
160
|
+
'without-caret' if @options[:caret] == false
|
161
161
|
end
|
162
162
|
|
163
163
|
def outline
|
164
|
-
|
164
|
+
'outline' if @options[:outline]
|
165
165
|
end
|
166
166
|
|
167
167
|
def button_status
|
168
|
-
[
|
168
|
+
['btn', outline, @status || :secondary].compact.join('-')
|
169
169
|
end
|
170
170
|
|
171
171
|
# :lg, :sm or :xs
|
172
172
|
def size
|
173
|
-
"btn-#{
|
173
|
+
"btn-#{@options[:size]}" if @options[:size]
|
174
174
|
end
|
175
|
-
|
176
175
|
end
|
177
176
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Dropdowns
|
3
4
|
# Create a button dropdown
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Forms::Dropdowns::Dropdown.
|
@@ -14,7 +15,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
14
15
|
#
|
15
16
|
# You can add HTML attributes using the +html_options+.
|
16
17
|
# You can pass arguments in options attribute:
|
17
|
-
# * +status+ - status of
|
18
|
+
# * +status+ - status of element with symbol value:
|
18
19
|
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+)
|
19
20
|
# * +size+
|
20
21
|
# (+:xs+, +:sm+, +:lg+)
|
@@ -54,9 +55,8 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
54
55
|
# end
|
55
56
|
#
|
56
57
|
class SplitDropdown < UiBibz::Ui::Core::Forms::Dropdowns::Dropdown
|
57
|
-
|
58
58
|
# See UiBibz::Ui::Core::Forms::Dropdowns::Dropdown.initialize
|
59
|
-
def initialize
|
59
|
+
def initialize(name, options = nil, html_options = nil, &block)
|
60
60
|
super
|
61
61
|
end
|
62
62
|
|
@@ -69,18 +69,18 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
-
|
72
|
+
private
|
73
73
|
|
74
74
|
def component_html_classes
|
75
75
|
['btn-group', type]
|
76
76
|
end
|
77
77
|
|
78
78
|
def button_html
|
79
|
-
content_tag :button, button_content, class: join_classes(
|
79
|
+
content_tag :button, button_content, class: join_classes('btn', button_status, size)
|
80
80
|
end
|
81
81
|
|
82
82
|
def split_html
|
83
|
-
content_tag :button, split_content, class: join_classes(
|
83
|
+
content_tag :button, split_content, class: join_classes('btn', button_status, size, 'dropdown-toggle', 'dropdown-toggle-split'), type: 'button', 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false
|
84
84
|
end
|
85
85
|
|
86
86
|
def split_content
|
@@ -88,8 +88,7 @@ module UiBibz::Ui::Core::Forms::Dropdowns
|
|
88
88
|
end
|
89
89
|
|
90
90
|
def src_only
|
91
|
-
content_tag :span,
|
91
|
+
content_tag :span, 'Toggle Dropdown', class: 'sr-only'
|
92
92
|
end
|
93
|
-
|
94
93
|
end
|
95
94
|
end
|