ui_bibz 2.4.0 → 2.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +4 -0
- data/.github/workflows/ruby.yml +2 -2
- data/.overcommit.yml +5 -0
- data/.rubocop.yml +87 -0
- data/.rubocop_todo.yml +25 -0
- data/Gemfile +5 -3
- data/Gemfile.lock +99 -56
- data/README.md +1 -0
- data/Rakefile +8 -6
- data/app/assets/stylesheets/fix_addon.sass +0 -1
- 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 +4 -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 +4 -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 +9 -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 +3 -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 +33 -39
- 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
- data/vendor/assets/fonts/fa-brands-400.eot +0 -0
- data/vendor/assets/fonts/fa-brands-400.svg +2 -2
- data/vendor/assets/fonts/fa-brands-400.ttf +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff +0 -0
- data/vendor/assets/fonts/fa-brands-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-regular-400.eot +0 -0
- data/vendor/assets/fonts/fa-regular-400.svg +2 -2
- data/vendor/assets/fonts/fa-regular-400.ttf +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff +0 -0
- data/vendor/assets/fonts/fa-regular-400.woff2 +0 -0
- data/vendor/assets/fonts/fa-solid-900.eot +0 -0
- data/vendor/assets/fonts/fa-solid-900.svg +241 -3
- data/vendor/assets/fonts/fa-solid-900.ttf +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff +0 -0
- data/vendor/assets/fonts/fa-solid-900.woff2 +0 -0
- data/vendor/assets/javascripts/all.js +57 -7
- data/vendor/assets/javascripts/all.min.js +2 -2
- data/vendor/assets/stylesheets/all.min.css +2 -2
- data/vendor/assets/stylesheets/fontawesome/_icons.scss +31 -0
- data/vendor/assets/stylesheets/fontawesome/_variables.scss +34 -3
- data/vendor/assets/stylesheets/fontawesome/brands.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/fontawesome.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/regular.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/solid.scss +1 -1
- data/vendor/assets/stylesheets/fontawesome/v4-shims.scss +1 -1
- metadata +74 -42
@@ -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
|
@@ -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
|