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,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Forms::Textareas
|
3
4
|
# Create a MarkdownEditorField
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -45,9 +46,8 @@ module UiBibz::Ui::Core::Forms::Textareas
|
|
45
46
|
# end
|
46
47
|
#
|
47
48
|
class MarkdownEditorField < UiBibz::Ui::Core::Component
|
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
|
|
@@ -98,12 +98,11 @@ module UiBibz::Ui::Core::Forms::Textareas
|
|
98
98
|
end
|
99
99
|
|
100
100
|
def status
|
101
|
-
"has-#{
|
101
|
+
"has-#{options[:status]}" if options[:status]
|
102
102
|
end
|
103
103
|
|
104
104
|
def component_html_options
|
105
105
|
options[:state] == :disabled ? { disabled: 'disabled' } : {}
|
106
106
|
end
|
107
|
-
|
108
107
|
end
|
109
108
|
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::Texts
|
3
|
-
|
4
5
|
# Create a AutoCompleteField
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -44,9 +45,8 @@ module UiBibz::Ui::Core::Forms::Texts
|
|
44
45
|
# end
|
45
46
|
#
|
46
47
|
class AutoCompleteField < UiBibz::Ui::Core::Forms::Texts::TextField
|
47
|
-
|
48
48
|
# See UiBibz::Ui::Core::Component.initialize
|
49
|
-
def initialize
|
49
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
50
50
|
super
|
51
51
|
end
|
52
52
|
|
@@ -65,17 +65,16 @@ module UiBibz::Ui::Core::Forms::Texts
|
|
65
65
|
end
|
66
66
|
|
67
67
|
def component_html_classes
|
68
|
-
super <<
|
68
|
+
super << 'auto-complete-field'
|
69
69
|
end
|
70
70
|
|
71
71
|
def data_list_name
|
72
|
-
@
|
72
|
+
@data_list_name ||= "#{html_options[:id] || content.to_s.parameterize.underscore}-datalist"
|
73
73
|
end
|
74
74
|
|
75
75
|
# Connect option
|
76
76
|
def connect_options_selector
|
77
|
-
|
77
|
+
data_list_name
|
78
78
|
end
|
79
|
-
|
80
79
|
end
|
81
80
|
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::Texts
|
3
|
-
|
4
5
|
# Create a TextField
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -47,7 +48,7 @@ module UiBibz::Ui::Core::Forms::Texts
|
|
47
48
|
include SurroundExtension
|
48
49
|
|
49
50
|
# See UiBibz::Ui::Core::Component.initialize
|
50
|
-
def initialize
|
51
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
51
52
|
super
|
52
53
|
end
|
53
54
|
|
@@ -75,14 +76,13 @@ module UiBibz::Ui::Core::Forms::Texts
|
|
75
76
|
def component_html_options
|
76
77
|
options[:state] == :disabled ? { disabled: 'disabled' } : {}
|
77
78
|
end
|
78
|
-
|
79
|
+
|
79
80
|
def status
|
80
|
-
"form-control-#{
|
81
|
+
"form-control-#{options[:status]}" unless options[:status].nil?
|
81
82
|
end
|
82
83
|
|
83
84
|
def size
|
84
|
-
"form-control-#{
|
85
|
+
"form-control-#{options[:size]}" unless options[:size].nil?
|
85
86
|
end
|
86
|
-
|
87
87
|
end
|
88
88
|
end
|
@@ -1,21 +1,20 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Icons::Components
|
3
4
|
class GlyphCounter < UiBibz::Ui::Core::Icons::Components::GlyphText
|
4
|
-
|
5
5
|
# See UiBibz::Ui::Core::Component.initialize
|
6
|
-
def initialize
|
6
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
7
7
|
super
|
8
8
|
end
|
9
9
|
|
10
10
|
private
|
11
11
|
|
12
12
|
def component_html_classes
|
13
|
-
[
|
13
|
+
['fa-layers-counter', position]
|
14
14
|
end
|
15
15
|
|
16
16
|
def position
|
17
|
-
"fa-layers-#{
|
17
|
+
"fa-layers-#{options[:position]}" if options[:position]
|
18
18
|
end
|
19
|
-
|
20
19
|
end
|
21
20
|
end
|
@@ -1,9 +1,9 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Icons::Components
|
3
4
|
class GlyphText < UiBibz::Ui::Core::Component
|
4
|
-
|
5
5
|
# See UiBibz::Ui::Core::Component.initialize
|
6
|
-
def initialize
|
6
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
7
7
|
super
|
8
8
|
end
|
9
9
|
|
@@ -20,12 +20,11 @@ module UiBibz::Ui::Core::Icons::Components
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def component_html_classes
|
23
|
-
super << [
|
23
|
+
super << %w[fa-layers-text fa-inverse]
|
24
24
|
end
|
25
25
|
|
26
26
|
def transform
|
27
|
-
add_html_data
|
27
|
+
add_html_data 'fa_transform', options[:transform] if options[:transform]
|
28
28
|
end
|
29
|
-
|
30
29
|
end
|
31
30
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Icons
|
3
4
|
# Create a glyph
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -56,9 +57,8 @@ module UiBibz::Ui::Core::Icons
|
|
56
57
|
# name
|
57
58
|
# end
|
58
59
|
class Glyph < UiBibz::Ui::Core::Component
|
59
|
-
|
60
60
|
# See UiBibz::Ui::Core::Component.initialize
|
61
|
-
def initialize
|
61
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
62
62
|
super
|
63
63
|
end
|
64
64
|
|
@@ -67,7 +67,7 @@ module UiBibz::Ui::Core::Icons
|
|
67
67
|
[content_tag(:i, '', html_options), options[:label]].compact.join(' ').html_safe
|
68
68
|
end
|
69
69
|
|
70
|
-
|
70
|
+
private
|
71
71
|
|
72
72
|
def component_html_classes
|
73
73
|
join_classes(classes)
|
@@ -79,13 +79,13 @@ module UiBibz::Ui::Core::Icons
|
|
79
79
|
end
|
80
80
|
|
81
81
|
def classes
|
82
|
-
cls = [
|
83
|
-
cls << "fa-#{
|
84
|
-
cls << "fa-rotate-#{
|
85
|
-
cls << "fa-flip-#{
|
86
|
-
cls <<
|
87
|
-
cls << "fa-stack-#{
|
88
|
-
cls << "fa-#{
|
82
|
+
cls = ['glyph', style, "fa-#{content}"] # , "fa-fw"]
|
83
|
+
cls << "fa-#{size}x" unless size.nil?
|
84
|
+
cls << "fa-rotate-#{rotate}" unless rotate.nil?
|
85
|
+
cls << "fa-flip-#{flip}" unless flip.nil?
|
86
|
+
cls << 'fa-inverse' unless inverse.nil?
|
87
|
+
cls << "fa-stack-#{stack}x" unless stack.nil?
|
88
|
+
cls << "fa-#{type}" unless type.nil?
|
89
89
|
cls
|
90
90
|
end
|
91
91
|
|
@@ -127,7 +127,7 @@ module UiBibz::Ui::Core::Icons
|
|
127
127
|
end
|
128
128
|
|
129
129
|
def transform
|
130
|
-
add_html_data
|
130
|
+
add_html_data 'fa_transform', options[:transform] if options[:transform]
|
131
131
|
end
|
132
132
|
|
133
133
|
def content
|
@@ -135,12 +135,11 @@ module UiBibz::Ui::Core::Icons
|
|
135
135
|
end
|
136
136
|
|
137
137
|
def status
|
138
|
-
"glyph-#{
|
138
|
+
"glyph-#{@options[:status]}" unless @options[:status].nil?
|
139
139
|
end
|
140
140
|
|
141
141
|
def match_style
|
142
142
|
{ solid: 'fas', regular: 'far', light: 'fal', brands: 'fab' }
|
143
143
|
end
|
144
|
-
|
145
144
|
end
|
146
145
|
end
|
@@ -1,7 +1,8 @@
|
|
1
|
-
|
2
|
-
require "ui_bibz/ui/core/icons/components/glyph_counter"
|
3
|
-
module UiBibz::Ui::Core::Icons
|
1
|
+
# frozen_string_literal: true
|
4
2
|
|
3
|
+
require 'ui_bibz/ui/core/icons/components/glyph_text'
|
4
|
+
require 'ui_bibz/ui/core/icons/components/glyph_counter'
|
5
|
+
module UiBibz::Ui::Core::Icons
|
5
6
|
# Create a glyph group
|
6
7
|
#
|
7
8
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -58,45 +59,43 @@ module UiBibz::Ui::Core::Icons
|
|
58
59
|
# name
|
59
60
|
# end
|
60
61
|
class GlyphGroup < UiBibz::Ui::Core::Component
|
61
|
-
|
62
62
|
# See UiBibz::Ui::Core::Component.initialize
|
63
|
-
def initialize
|
63
|
+
def initialize(content, options = nil, html_options = nil, &block)
|
64
64
|
super
|
65
65
|
@items = []
|
66
66
|
end
|
67
67
|
|
68
68
|
# Render html tag
|
69
69
|
def pre_render
|
70
|
-
content_tag :span, @items.join
|
70
|
+
content_tag :span, @items.join.html_safe, html_options
|
71
71
|
end
|
72
72
|
|
73
|
-
def glyph
|
73
|
+
def glyph(content = nil, options = {}, html_options = nil, &block)
|
74
74
|
@items << UiBibz::Ui::Core::Icons::Glyph.new(content, options, html_options, &block).render
|
75
75
|
end
|
76
76
|
|
77
|
-
def text
|
77
|
+
def text(content = nil, options = {}, html_options = nil, &block)
|
78
78
|
@items << UiBibz::Ui::Core::Icons::Components::GlyphText.new(content, options, html_options, &block).render
|
79
79
|
end
|
80
80
|
|
81
|
-
def counter
|
81
|
+
def counter(content = nil, options = {}, html_options = nil, &block)
|
82
82
|
@items << UiBibz::Ui::Core::Icons::Components::GlyphCounter.new(content, options, html_options, &block).render
|
83
83
|
end
|
84
84
|
|
85
85
|
private
|
86
86
|
|
87
87
|
def component_html_classes
|
88
|
-
super << [
|
88
|
+
super << ['fa-layers', 'fa-fw', size]
|
89
89
|
end
|
90
90
|
|
91
91
|
def size
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
92
|
+
return unless options[:size]
|
93
|
+
|
94
|
+
if options[:size].is_a?(Integer)
|
95
|
+
"fa-#{options[:size]}x"
|
96
|
+
else
|
97
|
+
"fa-#{options[:size]}"
|
98
98
|
end
|
99
99
|
end
|
100
|
-
|
101
100
|
end
|
102
101
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Icons
|
3
4
|
# Create star notation
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -14,7 +15,7 @@ module UiBibz::Ui::Core::Icons
|
|
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
|
# (+:default+, +:primary+, +:info+, +:warning+, +:danger+)
|
19
20
|
# * +num+ - Integer, number of star
|
20
21
|
#
|
@@ -43,9 +44,8 @@ module UiBibz::Ui::Core::Icons
|
|
43
44
|
# end
|
44
45
|
#
|
45
46
|
class Star < 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,8 +54,7 @@ module UiBibz::Ui::Core::Icons
|
|
54
54
|
content_tag :span, star_notation.join(' ').html_safe, html_options
|
55
55
|
end
|
56
56
|
|
57
|
-
|
58
|
-
|
57
|
+
private
|
59
58
|
|
60
59
|
def component_html_classes
|
61
60
|
'stars-notation'
|
@@ -78,11 +77,11 @@ module UiBibz::Ui::Core::Icons
|
|
78
77
|
def glyph_opts
|
79
78
|
opts = {}
|
80
79
|
opts = opts.merge({ status: options[:status] }) unless options[:status].nil?
|
81
|
-
opts = opts.merge({ size: options[:size] })
|
80
|
+
opts = opts.merge({ size: options[:size] }) unless options[:size].nil?
|
82
81
|
opts
|
83
82
|
end
|
84
83
|
|
85
|
-
def star_name
|
84
|
+
def star_name(star)
|
86
85
|
if star <= content
|
87
86
|
{ name: 'star', style: :solid }
|
88
87
|
elsif star > content && !content.is_a?(Integer) && star < content + 1
|
@@ -91,6 +90,5 @@ module UiBibz::Ui::Core::Icons
|
|
91
90
|
{ name: 'star', style: :regular }
|
92
91
|
end
|
93
92
|
end
|
94
|
-
|
95
93
|
end
|
96
94
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Layouts
|
3
4
|
# Create a col
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -48,9 +49,8 @@ module UiBibz::Ui::Core::Layouts
|
|
48
49
|
# end
|
49
50
|
#
|
50
51
|
class Col < UiBibz::Ui::Core::Component
|
51
|
-
|
52
52
|
# See UiBibz::Ui::Core::Component.initialize
|
53
|
-
def initialize
|
53
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
54
54
|
super
|
55
55
|
end
|
56
56
|
|
@@ -59,7 +59,7 @@ module UiBibz::Ui::Core::Layouts
|
|
59
59
|
content_tag :div, content, html_options
|
60
60
|
end
|
61
61
|
|
62
|
-
|
62
|
+
private
|
63
63
|
|
64
64
|
def component_html_classes
|
65
65
|
col_classes
|
@@ -67,44 +67,43 @@ module UiBibz::Ui::Core::Layouts
|
|
67
67
|
|
68
68
|
def col_classes
|
69
69
|
kl = []
|
70
|
-
@options.each do |ke,va|
|
71
|
-
kl << write_classes(ke, va) if %w
|
70
|
+
@options.each do |ke, va|
|
71
|
+
kl << write_classes(ke, va) if %w[xs sm md lg xl].include?(ke)
|
72
72
|
end
|
73
73
|
if not_col_options?
|
74
|
-
kl =
|
75
|
-
|
76
|
-
kl << write_classes(:md, @options)
|
74
|
+
kl = 'col'
|
75
|
+
elsif kl.empty?
|
76
|
+
kl << write_classes(:md, @options)
|
77
77
|
end
|
78
78
|
kl
|
79
79
|
end
|
80
80
|
|
81
81
|
def not_col_options?
|
82
|
-
(@options.keys & %w
|
82
|
+
(@options.keys & %w[xs sm md lg xl num offset push pull]).empty?
|
83
83
|
end
|
84
84
|
|
85
|
-
def write_classes
|
86
|
-
opts.map{ |k, v| send(k, size.to_sym, v) if %w
|
85
|
+
def write_classes(size, opts)
|
86
|
+
opts.map { |k, v| send(k, size.to_sym, v) if %w[num offset push pull].include?(k) }.join(' ')
|
87
87
|
end
|
88
88
|
|
89
89
|
# col-md-9
|
90
|
-
def num
|
91
|
-
size == :auto ?
|
90
|
+
def num(size, number)
|
91
|
+
size == :auto ? 'col' : "col-#{size}-#{number}"
|
92
92
|
end
|
93
93
|
|
94
94
|
# col-md-offset-9
|
95
|
-
def offset
|
96
|
-
"offset-#{
|
95
|
+
def offset(size, number)
|
96
|
+
"offset-#{size}-#{number}"
|
97
97
|
end
|
98
98
|
|
99
99
|
# col-md-push-9
|
100
|
-
def push
|
101
|
-
"col-#{
|
100
|
+
def push(size, number)
|
101
|
+
"col-#{size}-push-#{number}"
|
102
102
|
end
|
103
103
|
|
104
104
|
# col-md-pull-9
|
105
|
-
def pull
|
106
|
-
"col-#{
|
105
|
+
def pull(size, number)
|
106
|
+
"col-#{size}-pull-#{number}"
|
107
107
|
end
|
108
|
-
|
109
108
|
end
|
110
109
|
end
|