ui_bibz 2.4.0 → 2.5.0
Sign up to get free protection for your applications and to get access to all the features.
- 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::Notifications::Components
|
3
4
|
# Create a alert body
|
4
5
|
#
|
5
6
|
# ==== Attributes
|
@@ -30,9 +31,8 @@ module UiBibz::Ui::Core::Notifications::Components
|
|
30
31
|
# end.render
|
31
32
|
#
|
32
33
|
class ToastHeader < UiBibz::Ui::Core::Component
|
33
|
-
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize
|
35
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
36
|
super
|
37
37
|
end
|
38
38
|
|
@@ -46,17 +46,16 @@ module UiBibz::Ui::Core::Notifications::Components
|
|
46
46
|
end
|
47
47
|
end
|
48
48
|
|
49
|
-
|
49
|
+
private
|
50
50
|
|
51
51
|
def close_button
|
52
|
-
content_tag :button, class: 'ml-2 mb-1 close', "data-dismiss":
|
53
|
-
content_tag(:span,
|
52
|
+
content_tag :button, class: 'ml-2 mb-1 close', "data-dismiss": 'toast', "aria-label": 'Close' do
|
53
|
+
content_tag(:span, '×', "aria-hidden": true).html_safe
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
57
57
|
def component_html_classes
|
58
|
-
|
58
|
+
'toast-header'
|
59
59
|
end
|
60
|
-
|
61
60
|
end
|
62
61
|
end
|
@@ -1,6 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/core/notifications/components/bar'
|
2
4
|
module UiBibz::Ui::Core::Notifications
|
3
|
-
|
4
5
|
# Create a progress bar
|
5
6
|
#
|
6
7
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -15,7 +16,7 @@ module UiBibz::Ui::Core::Notifications
|
|
15
16
|
#
|
16
17
|
# You can add HTML attributes using the +html_options+.
|
17
18
|
# You can pass arguments in options attribute:
|
18
|
-
# * +status+ - status of
|
19
|
+
# * +status+ - status of element with symbol value:
|
19
20
|
# (+:secondary+, +:primary+, +:info+, +:warning+, +:danger+)
|
20
21
|
# * +value+ - Value of percentage (default: content)
|
21
22
|
# * +animated+ - Boolean
|
@@ -54,9 +55,8 @@ module UiBibz::Ui::Core::Notifications
|
|
54
55
|
# end
|
55
56
|
#
|
56
57
|
class ProgressBar < UiBibz::Ui::Core::Component
|
57
|
-
|
58
58
|
# See UiBibz::Ui::Core::Component.initialize
|
59
|
-
def initialize
|
59
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
60
60
|
super
|
61
61
|
@bars = []
|
62
62
|
end
|
@@ -66,18 +66,18 @@ module UiBibz::Ui::Core::Notifications
|
|
66
66
|
content_tag :div, bars.join.html_safe, html_options
|
67
67
|
end
|
68
68
|
|
69
|
-
def bar
|
69
|
+
def bar(content = nil, options = nil, html_options = nil, &block)
|
70
70
|
@bars << UiBibz::Ui::Core::Notifications::Components::Bar.new(content, options, html_options, &block).render
|
71
71
|
end
|
72
72
|
|
73
|
-
|
73
|
+
private
|
74
74
|
|
75
75
|
def component_html_classes
|
76
76
|
['progress', line]
|
77
77
|
end
|
78
78
|
|
79
79
|
def bars
|
80
|
-
if
|
80
|
+
if !@bars.empty?
|
81
81
|
@bars
|
82
82
|
elsif options[:stacked]
|
83
83
|
stacked_bars
|
@@ -87,15 +87,15 @@ module UiBibz::Ui::Core::Notifications
|
|
87
87
|
end
|
88
88
|
|
89
89
|
def line
|
90
|
-
|
90
|
+
'progress-bar-line' if options[:line]
|
91
91
|
end
|
92
92
|
|
93
93
|
def stacked_bars
|
94
94
|
percentages = [7.4, 15.3, 21.1, 25.9, 30.3, 100]
|
95
95
|
stacked_colors.map.with_index do |color, i|
|
96
96
|
if percentages[0, i].sum <= content.to_f
|
97
|
-
if content.to_f.between?(percentages[0, i].sum
|
98
|
-
UiBibz::Ui::Core::Notifications::Components::Bar.new((content.to_f*percentages[i]/100), min: 0, striped: options[:striped], animated: options[:animated], max: 100, status: color).render
|
97
|
+
if content.to_f.between?(percentages[0, i].sum, percentages[0, i + 1].sum)
|
98
|
+
UiBibz::Ui::Core::Notifications::Components::Bar.new((content.to_f * percentages[i] / 100), min: 0, striped: options[:striped], animated: options[:animated], max: 100, status: color).render
|
99
99
|
else
|
100
100
|
UiBibz::Ui::Core::Notifications::Components::Bar.new(percentages[i], min: 0, striped: options[:striped], animated: options[:animated], max: 100, status: color).render
|
101
101
|
end
|
@@ -105,11 +105,10 @@ module UiBibz::Ui::Core::Notifications
|
|
105
105
|
|
106
106
|
def stacked_colors
|
107
107
|
if options[:inverse]
|
108
|
-
%i
|
108
|
+
%i[success primary info warning danger].reverse
|
109
109
|
else
|
110
|
-
%i
|
110
|
+
%i[success primary info warning danger]
|
111
111
|
end
|
112
112
|
end
|
113
|
-
|
114
113
|
end
|
115
114
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Notifications
|
3
4
|
# Create a spinner
|
4
5
|
#
|
5
6
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -14,7 +15,7 @@ module UiBibz::Ui::Core::Notifications
|
|
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+, +:success+, +:danger+, +:warning+, +:info+, +:light+, +:dark+)
|
19
20
|
# * +size+
|
20
21
|
# (+:xs+, +:sm+, +:lg+)
|
@@ -46,44 +47,42 @@ module UiBibz::Ui::Core::Notifications
|
|
46
47
|
# end
|
47
48
|
#
|
48
49
|
class Spinner < UiBibz::Ui::Core::Component
|
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
|
|
55
55
|
# Render html tag
|
56
56
|
def pre_render
|
57
57
|
content_tag tag_html, html_options do
|
58
|
-
content_tag :span, @content ||
|
58
|
+
content_tag :span, @content || 'Loading...', class: 'sr-only'
|
59
59
|
end
|
60
60
|
end
|
61
61
|
|
62
|
-
|
62
|
+
private
|
63
63
|
|
64
64
|
def component_html_options
|
65
|
-
super.merge({ role:
|
65
|
+
super.merge({ role: 'status' })
|
66
66
|
end
|
67
67
|
|
68
68
|
def component_html_classes
|
69
|
-
["spinner-#{
|
69
|
+
["spinner-#{type}", status, size]
|
70
70
|
end
|
71
71
|
|
72
72
|
def status
|
73
|
-
"text-#{
|
73
|
+
"text-#{@options[:status] || :secondary}" if options[:status]
|
74
74
|
end
|
75
75
|
|
76
76
|
def type
|
77
|
-
@options[:type] ||
|
77
|
+
@options[:type] || 'border'
|
78
78
|
end
|
79
79
|
|
80
80
|
def size
|
81
|
-
"spinner-#{
|
81
|
+
"spinner-#{type}-#{options[:size]}" if options[:size]
|
82
82
|
end
|
83
83
|
|
84
84
|
def tag_html
|
85
85
|
options[:tag] || :div
|
86
86
|
end
|
87
|
-
|
88
87
|
end
|
89
88
|
end
|
@@ -1,7 +1,8 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/core/notifications/components/toast_header'
|
2
4
|
require 'ui_bibz/ui/core/notifications/components/toast_body'
|
3
5
|
module UiBibz::Ui::Core::Notifications
|
4
|
-
|
5
6
|
# Create an alert
|
6
7
|
#
|
7
8
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -16,7 +17,7 @@ module UiBibz::Ui::Core::Notifications
|
|
16
17
|
#
|
17
18
|
# You can add HTML attributes using the +html_options+.
|
18
19
|
# You can pass arguments in options attribute:
|
19
|
-
# * +status+ - status of
|
20
|
+
# * +status+ - status of element with symbol value:
|
20
21
|
# (+:default+, +:primary+, +:info+, +:warning+, +:danger+)
|
21
22
|
# * +glyph+ - [String | Hash] Add glyph with name or hash options
|
22
23
|
# * +name+ - [String]
|
@@ -54,9 +55,8 @@ module UiBibz::Ui::Core::Notifications
|
|
54
55
|
# end
|
55
56
|
#
|
56
57
|
class Toast < UiBibz::Ui::Core::Component
|
57
|
-
|
58
58
|
# See UiBibz::Ui::Core::Component.initialize
|
59
|
-
def initialize
|
59
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
60
60
|
super
|
61
61
|
end
|
62
62
|
|
@@ -69,29 +69,28 @@ module UiBibz::Ui::Core::Notifications
|
|
69
69
|
end
|
70
70
|
|
71
71
|
# Add Header which is a component
|
72
|
-
def header
|
72
|
+
def header(content = nil, options = nil, html_options = nil, &block)
|
73
73
|
@header = UiBibz::Ui::Core::Notifications::Components::ToastHeader.new(content, options, html_options, &block).render
|
74
74
|
end
|
75
75
|
|
76
76
|
# Add Body which is a component
|
77
|
-
def body
|
77
|
+
def body(content = nil, options = nil, html_options = nil, &block)
|
78
78
|
@body = UiBibz::Ui::Core::Notifications::Components::ToastBody.new(content, options, html_options, &block).render
|
79
79
|
end
|
80
80
|
|
81
|
-
|
81
|
+
private
|
82
82
|
|
83
83
|
def component_html_classes
|
84
84
|
super << 'toast'
|
85
85
|
end
|
86
86
|
|
87
87
|
def component_html_options
|
88
|
-
{ role: 'alert', "aria-live":
|
88
|
+
{ role: 'alert', "aria-live": 'assertive', "aria-atomic": true }
|
89
89
|
end
|
90
90
|
|
91
91
|
def component_html_data
|
92
92
|
super
|
93
|
-
add_html_data
|
93
|
+
add_html_data 'autohide', options[:auto_hide] if options[:auto_hide]
|
94
94
|
end
|
95
|
-
|
96
95
|
end
|
97
96
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Windows::Components
|
3
4
|
# Create a modal body
|
4
5
|
#
|
5
6
|
# ==== Attributes
|
@@ -30,9 +31,8 @@ module UiBibz::Ui::Core::Windows::Components
|
|
30
31
|
# end.render
|
31
32
|
#
|
32
33
|
class ModalBody < UiBibz::Ui::Core::Component
|
33
|
-
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize
|
35
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
36
|
super
|
37
37
|
end
|
38
38
|
|
@@ -41,11 +41,10 @@ module UiBibz::Ui::Core::Windows::Components
|
|
41
41
|
content_tag :div, content, html_options
|
42
42
|
end
|
43
43
|
|
44
|
-
|
44
|
+
private
|
45
45
|
|
46
46
|
def component_html_classes
|
47
47
|
'modal-body'
|
48
48
|
end
|
49
|
-
|
50
49
|
end
|
51
50
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Windows::Components
|
3
4
|
# Create a modal footer
|
4
5
|
#
|
5
6
|
# ==== Attributes
|
@@ -30,9 +31,8 @@ module UiBibz::Ui::Core::Windows::Components
|
|
30
31
|
# end.render
|
31
32
|
#
|
32
33
|
class ModalFooter < UiBibz::Ui::Core::Component
|
33
|
-
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize
|
35
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
36
|
super
|
37
37
|
end
|
38
38
|
|
@@ -41,11 +41,10 @@ module UiBibz::Ui::Core::Windows::Components
|
|
41
41
|
content_tag :div, content, html_options
|
42
42
|
end
|
43
43
|
|
44
|
-
|
44
|
+
private
|
45
45
|
|
46
46
|
def component_html_classes
|
47
47
|
'modal-footer'
|
48
48
|
end
|
49
|
-
|
50
49
|
end
|
51
50
|
end
|
@@ -1,5 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module UiBibz::Ui::Core::Windows::Components
|
3
4
|
# Create a modal header
|
4
5
|
#
|
5
6
|
# ==== Attributes
|
@@ -30,9 +31,8 @@ module UiBibz::Ui::Core::Windows::Components
|
|
30
31
|
# end.render
|
31
32
|
#
|
32
33
|
class ModalHeader < UiBibz::Ui::Core::Component
|
33
|
-
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize
|
35
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
36
|
super
|
37
37
|
end
|
38
38
|
|
@@ -51,11 +51,10 @@ module UiBibz::Ui::Core::Windows::Components
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def close_button_html
|
54
|
-
content_tag :button, class: 'close',
|
55
|
-
concat content_tag :span,
|
56
|
-
concat content_tag :span,
|
54
|
+
content_tag :button, class: 'close', 'data-dismiss' => 'modal', 'aria-label' => 'Close' do
|
55
|
+
concat content_tag :span, '×', 'aria-hidden' => true
|
56
|
+
concat content_tag :span, 'Close', class: 'sr-only'
|
57
57
|
end
|
58
58
|
end
|
59
|
-
|
60
59
|
end
|
61
60
|
end
|
@@ -1,8 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'ui_bibz/ui/core/windows/components/modal_header'
|
2
4
|
require 'ui_bibz/ui/core/windows/components/modal_body'
|
3
5
|
require 'ui_bibz/ui/core/windows/components/modal_footer'
|
4
6
|
module UiBibz::Ui::Core::Windows
|
5
|
-
|
6
7
|
# Create an modal
|
7
8
|
#
|
8
9
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
@@ -53,16 +54,15 @@ module UiBibz::Ui::Core::Windows
|
|
53
54
|
# end
|
54
55
|
#
|
55
56
|
class Modal < UiBibz::Ui::Core::Component
|
56
|
-
|
57
57
|
# See UiBibz::Ui::Core::Component.initialize
|
58
|
-
def initialize
|
58
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
59
59
|
super
|
60
60
|
end
|
61
61
|
|
62
62
|
# Render html tag
|
63
63
|
def pre_render
|
64
64
|
content_tag :div, html_options do
|
65
|
-
content_tag :div, class: "modal-dialog #{
|
65
|
+
content_tag :div, class: "modal-dialog #{size}", role: 'document' do
|
66
66
|
content_tag :div, class: 'modal-content' do
|
67
67
|
concat @header
|
68
68
|
concat @body
|
@@ -72,15 +72,15 @@ module UiBibz::Ui::Core::Windows
|
|
72
72
|
end
|
73
73
|
end
|
74
74
|
|
75
|
-
def header
|
75
|
+
def header(content = nil, options = nil, html_options = nil, &block)
|
76
76
|
@header = UiBibz::Ui::Core::Windows::Components::ModalHeader.new(content, options, html_options, &block).render
|
77
77
|
end
|
78
78
|
|
79
|
-
def footer
|
79
|
+
def footer(content = nil, options = nil, html_options = nil, &block)
|
80
80
|
@footer = UiBibz::Ui::Core::Windows::Components::ModalFooter.new(content, options, html_options, &block).render
|
81
81
|
end
|
82
82
|
|
83
|
-
def body
|
83
|
+
def body(content = nil, options = nil, html_options = nil, &block)
|
84
84
|
@body = UiBibz::Ui::Core::Windows::Components::ModalBody.new(content, options, html_options, &block).render
|
85
85
|
end
|
86
86
|
|
@@ -92,12 +92,11 @@ module UiBibz::Ui::Core::Windows
|
|
92
92
|
|
93
93
|
# :lg, :sm or :xs
|
94
94
|
def size
|
95
|
-
"modal-#{
|
95
|
+
"modal-#{@options[:size]}" if @options[:size]
|
96
96
|
end
|
97
97
|
|
98
98
|
def effect
|
99
99
|
@options[:effect] unless @options[:effect].nil?
|
100
100
|
end
|
101
|
-
|
102
101
|
end
|
103
102
|
end
|
@@ -1,20 +1,19 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
+
module GlyphExtension
|
3
4
|
# Render glyph and content html
|
4
|
-
def glyph_and_content_html
|
5
|
+
def glyph_and_content_html(content_html = nil)
|
5
6
|
[glyph_with_space, ct_html(content_html)].compact.join(' ').html_safe
|
6
7
|
end
|
7
8
|
|
8
|
-
def ct_html
|
9
|
-
if options[:text].nil? || options[:text] == true
|
10
|
-
content_html || content
|
11
|
-
end
|
9
|
+
def ct_html(content_html)
|
10
|
+
content_html || content if options[:text].nil? || options[:text] == true
|
12
11
|
end
|
13
12
|
|
14
13
|
# Render glyph with space html
|
15
14
|
def glyph_with_space
|
16
15
|
out = [glyph]
|
17
|
-
out <<
|
16
|
+
out << ' ' if options[:text] != false
|
18
17
|
out.join unless glyph.nil?
|
19
18
|
end
|
20
19
|
|
@@ -22,13 +21,13 @@ module GlyphExtension
|
|
22
21
|
def glyph
|
23
22
|
options[:content] = content if options[:text] == false
|
24
23
|
|
25
|
-
glyph_options = if options[:glyph].
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
24
|
+
glyph_options = if options[:glyph].is_a?(Hash)
|
25
|
+
options[:glyph]
|
26
|
+
elsif options[:glyph].is_a?(String)
|
27
|
+
{ name: options[:glyph] }
|
28
|
+
else
|
29
|
+
{}
|
30
|
+
end
|
32
31
|
|
33
32
|
glyph_options[:text] = options[:text] unless options[:text].nil?
|
34
33
|
glyph_options[:content] = options[:content] unless options[:content].nil?
|
@@ -37,5 +36,4 @@ module GlyphExtension
|
|
37
36
|
|
38
37
|
UiBibz::Utils::GlyphChanger.new(glyph_options[:name], glyph_options).render unless glyph_options[:name].nil?
|
39
38
|
end
|
40
|
-
|
41
39
|
end
|