ui_bibz 2.5.6 → 3.0.0.alpha8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -2
- data/.rubocop.yml +78 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +92 -104
- data/README.md +9 -52
- data/Rakefile +3 -2
- data/bin/test +7 -0
- data/config/initializers/will_paginate.rb +2 -1
- data/lib/ui_bibz.rb +17 -3
- data/lib/ui_bibz/concerns/models/searchable.rb +3 -3
- data/lib/ui_bibz/helpers/ui/core/boxes_helper.rb +9 -1
- data/lib/ui_bibz/helpers/ui/core/forms_helper.rb +20 -1
- data/lib/ui_bibz/helpers/ui/core/layouts_helper.rb +10 -2
- data/lib/ui_bibz/helpers/ui/core/lists_helper.rb +1 -1
- data/lib/ui_bibz/helpers/ui/core/notifications_helper.rb +9 -5
- data/lib/ui_bibz/helpers/ui/ux_helper.rb +2 -6
- data/lib/ui_bibz/infos.rb +11 -5
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +15 -2
- data/lib/ui_bibz/inputs/ui_bibz_inputs/base_input.rb +4 -7
- data/lib/ui_bibz/inputs/ui_bibz_inputs/collection_input.rb +6 -9
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_checkbox_field_input.rb +5 -1
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_choice_field_input.rb +23 -0
- 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_slider_field_input.rb +12 -0
- data/lib/ui_bibz/rails/engine.rb +1 -16
- data/lib/ui_bibz/railtie.rb +6 -0
- data/lib/ui_bibz/ui/concerns/card_itemable_concern.rb +67 -0
- data/lib/ui_bibz/ui/concerns/html_concern.rb +16 -0
- data/lib/ui_bibz/ui/core/boxes/card.rb +5 -50
- data/lib/ui_bibz/ui/core/boxes/card_accordion.rb +2 -0
- data/lib/ui_bibz/ui/core/boxes/card_column.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/card_deck.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/card_grid.rb +60 -0
- data/lib/ui_bibz/ui/core/boxes/card_group.rb +3 -1
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_link.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_subtitle.rb +47 -0
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_text.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/body/card_body_title.rb +1 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_body.rb +15 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_col.rb +65 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_footer.rb +0 -3
- data/lib/ui_bibz/ui/core/boxes/components/card_header.rb +2 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_image.rb +1 -4
- data/lib/ui_bibz/ui/core/boxes/components/card_row.rb +65 -0
- data/lib/ui_bibz/ui/core/boxes/components/card_tab_group.rb +0 -4
- data/lib/ui_bibz/ui/core/boxes/jumbotron.rb +1 -4
- data/lib/ui_bibz/ui/core/component.rb +16 -9
- data/lib/ui_bibz/ui/core/forms/buttons/button.rb +2 -2
- data/lib/ui_bibz/ui/core/forms/buttons/button_group.rb +9 -11
- data/lib/ui_bibz/ui/core/forms/buttons/button_refresh.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/buttons/components/button_group_split_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/choices/box_switch_field.rb +7 -10
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +20 -10
- data/lib/ui_bibz/ui/core/forms/choices/choice_group.rb +22 -2
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +24 -12
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +17 -6
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +5 -5
- data/lib/ui_bibz/ui/core/forms/dates/date_picker_field.rb +12 -15
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_divider.rb +0 -1
- data/lib/ui_bibz/ui/core/forms/dropdowns/components/dropdown_header.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/dropdowns/dropdown.rb +19 -20
- data/lib/ui_bibz/ui/core/forms/dropdowns/split_dropdown.rb +7 -5
- data/lib/ui_bibz/ui/core/forms/files/file_field.rb +20 -10
- data/lib/ui_bibz/ui/core/forms/numbers/formula_field.rb +18 -8
- data/lib/ui_bibz/ui/core/forms/numbers/number_field.rb +20 -3
- data/lib/ui_bibz/ui/core/forms/numbers/range_field.rb +51 -5
- data/lib/ui_bibz/ui/core/forms/numbers/slider_field.rb +144 -0
- data/lib/ui_bibz/ui/core/forms/numbers/slider_header.rb +71 -0
- data/lib/ui_bibz/ui/core/forms/selects/abstract_select.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/selects/dropdown_select_field.rb +41 -62
- data/lib/ui_bibz/ui/core/forms/selects/multi_column_field.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/selects/select_field.rb +2 -5
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_addon.rb +1 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button.rb +1 -6
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_group.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_link.rb +1 -6
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_button_refresh.rb +1 -12
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_checkbox_field.rb +9 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_dropdown.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_radio_field.rb +9 -4
- data/lib/ui_bibz/ui/core/forms/surrounds/components/surround_switch_field.rb +0 -3
- data/lib/ui_bibz/ui/core/forms/surrounds/surround_field.rb +4 -12
- data/lib/ui_bibz/ui/core/forms/textareas/markdown_editor_field.rb +4 -7
- data/lib/ui_bibz/ui/core/forms/texts/auto_complete_field.rb +2 -5
- data/lib/ui_bibz/ui/core/forms/texts/text_field.rb +0 -3
- data/lib/ui_bibz/ui/core/icons/components/glyph_counter.rb +0 -3
- data/lib/ui_bibz/ui/core/icons/components/glyph_text.rb +1 -4
- data/lib/ui_bibz/ui/core/icons/glyph.rb +1 -4
- data/lib/ui_bibz/ui/core/icons/star.rb +0 -3
- data/lib/ui_bibz/ui/core/layouts/col.rb +5 -42
- data/lib/ui_bibz/ui/core/layouts/container.rb +9 -6
- data/lib/ui_bibz/ui/core/layouts/row.rb +32 -2
- data/lib/ui_bibz/ui/core/lists/components/list.rb +6 -8
- data/lib/ui_bibz/ui/core/lists/components/list/list_body.rb +0 -3
- data/lib/ui_bibz/ui/core/lists/components/list/list_header.rb +0 -3
- data/lib/ui_bibz/ui/core/lists/list_group.rb +9 -6
- data/lib/ui_bibz/ui/core/navigations/breadcrumb.rb +3 -2
- data/lib/ui_bibz/ui/core/navigations/components/breadcrumb_link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/nav_dropdown.rb +2 -5
- data/lib/ui_bibz/ui/core/navigations/components/nav_link.rb +3 -1
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_link.rb +15 -6
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_list.rb +0 -4
- data/lib/ui_bibz/ui/core/navigations/components/nav_link_span.rb +1 -4
- data/lib/ui_bibz/ui/core/navigations/components/nav_text.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/navbar_brand.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/navbar_form.rb +4 -4
- data/lib/ui_bibz/ui/core/navigations/components/navbar_nav.rb +1 -4
- data/lib/ui_bibz/ui/core/navigations/components/navbar_text.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/pagination_link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/components/toolbar_form.rb +3 -3
- data/lib/ui_bibz/ui/core/navigations/link.rb +0 -3
- data/lib/ui_bibz/ui/core/navigations/nav.rb +37 -10
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +31 -8
- data/lib/ui_bibz/ui/core/navigations/pagination.rb +3 -1
- data/lib/ui_bibz/ui/core/navigations/tab_group.rb +10 -5
- data/lib/ui_bibz/ui/core/navigations/toolbar.rb +2 -0
- data/lib/ui_bibz/ui/core/notifications/alert.rb +2 -2
- data/lib/ui_bibz/ui/core/notifications/badge.rb +2 -5
- data/lib/ui_bibz/ui/core/notifications/components/alert_body.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/alert_header.rb +4 -10
- data/lib/ui_bibz/ui/core/notifications/components/bar.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/toast_body.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/components/toast_header.rb +1 -6
- data/lib/ui_bibz/ui/core/notifications/progress_bar.rb +7 -5
- data/lib/ui_bibz/ui/core/notifications/spinner.rb +0 -3
- data/lib/ui_bibz/ui/core/notifications/toast.rb +14 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_body.rb +0 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_footer.rb +0 -3
- data/lib/ui_bibz/ui/core/windows/components/modal_header.rb +1 -7
- data/lib/ui_bibz/ui/core/windows/modal.rb +65 -14
- data/lib/ui_bibz/ui/extensions/core/component/glyph_extension.rb +6 -2
- data/lib/ui_bibz/ui/extensions/core/component/popover_extension.rb +9 -9
- data/lib/ui_bibz/ui/extensions/core/forms/connect_extension.rb +2 -2
- data/lib/ui_bibz/ui/extensions/core/forms/surround_extension.rb +1 -1
- data/lib/ui_bibz/ui/ux/containers/components/panel_body.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_column.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_deck.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_footer.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/components/panel_group.rb +2 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_header.rb +4 -6
- data/lib/ui_bibz/ui/ux/containers/components/panel_header_title.rb +47 -0
- data/lib/ui_bibz/ui/ux/containers/components/panel_tab_group.rb +0 -4
- data/lib/ui_bibz/ui/ux/containers/components/panel_toolbar.rb +0 -3
- data/lib/ui_bibz/ui/ux/containers/panel.rb +4 -2
- data/lib/ui_bibz/ui/ux/tables/components/thead.rb +0 -3
- data/lib/ui_bibz/ui/ux/tables/table.rb +2 -4
- data/lib/ui_bibz/ui/ux/tables/table_card.rb +4 -3
- data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +3 -3
- data/lib/ui_bibz/ui/ux/tables/table_search_field.rb +8 -8
- data/lib/ui_bibz/utils/breakdown_class_name_generator.rb +82 -0
- data/lib/ui_bibz/utils/internationalization.rb +2 -2
- data/lib/ui_bibz/utils/screwdriver.rb +16 -10
- data/test/dummy/Rakefile +1 -1
- data/test/dummy/app/javascripts/packs/index.js +3 -0
- data/test/dummy/app/views/layouts/application.html.erb +4 -1
- data/{app/ui/.keep → test/dummy/app/views/users/index.html.erb} +0 -0
- data/test/dummy/bin/setup +17 -13
- data/test/dummy/config.ru +2 -1
- data/test/dummy/config/application.rb +1 -0
- data/test/dummy/config/cable.yml +10 -0
- data/test/dummy/config/database.yml +1 -1
- data/test/dummy/config/environment.rb +1 -1
- data/test/dummy/config/environments/development.rb +33 -12
- data/test/dummy/config/environments/production.rb +52 -19
- data/test/dummy/config/environments/test.rb +18 -12
- data/test/dummy/config/initializers/application_controller_renderer.rb +9 -0
- data/test/dummy/config/initializers/assets.rb +4 -3
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -1
- data/test/dummy/config/initializers/content_security_policy.rb +29 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +2 -0
- data/test/dummy/config/initializers/inflections.rb +0 -1
- data/test/dummy/config/initializers/mime_types.rb +0 -1
- data/test/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/test/dummy/config/puma.rb +40 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config/spring.rb +8 -0
- data/test/dummy/config/storage.yml +34 -0
- data/test/dummy/db/migrate/20150123191805_create_users.rb +1 -1
- data/test/dummy/db/schema.rb +24 -24
- data/test/dummy/public/404.html +6 -6
- data/test/dummy/public/422.html +6 -6
- data/test/dummy/public/500.html +6 -6
- data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
- data/test/dummy/public/apple-touch-icon.png +0 -0
- data/test/dummy/storage/.keep +0 -0
- data/test/simple_form_test.rb +45 -44
- data/test/store_test.rb +5 -5
- data/test/test_helper.rb +18 -9
- data/test/ui/core/boxes/card_grid_test.rb +17 -0
- data/test/ui/core/boxes/card_test.rb +46 -12
- data/test/ui/core/boxes/jumbotron_test.rb +2 -2
- data/test/ui/core/component_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_group_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_link_test.rb +1 -1
- data/test/ui/core/forms/buttons/button_test.rb +2 -2
- data/test/ui/core/forms/choices/checkbox_field_test.rb +9 -2
- data/test/ui/core/forms/choices/choice_group_test.rb +11 -9
- data/test/ui/core/forms/choices/radio_field_test.rb +1 -1
- data/test/ui/core/forms/dates/date_picker_field_test.rb +1 -1
- data/test/ui/core/forms/dropdowns/dropdown_test.rb +2 -2
- data/test/ui/core/forms/files/file_field_test.rb +12 -0
- data/test/ui/core/forms/numbers/formula_field_test.rb +1 -1
- data/test/ui/core/forms/numbers/range_field_test.rb +37 -2
- data/test/ui/core/forms/numbers/slider_field_test.rb +26 -0
- data/test/ui/core/forms/selects/multi_column_field_test.rb +1 -1
- data/test/ui/core/forms/selects/multi_select_field_test.rb +7 -7
- data/test/ui/core/forms/selects/select_field_test.rb +3 -3
- data/test/ui/core/forms/surrounds/surround_field_test.rb +40 -4
- data/test/ui/core/forms/textareas/markdown_editor_field_test.rb +1 -1
- data/test/ui/core/forms/texts/auto_complete_field_test.rb +8 -8
- data/test/ui/core/forms/texts/text_field_test.rb +2 -2
- data/test/ui/core/layouts/col_test.rb +11 -2
- data/test/ui/core/layouts/container_test.rb +15 -1
- data/test/ui/core/layouts/row_test.rb +68 -3
- data/test/ui/core/lists/list_group_test.rb +1 -1
- data/test/ui/core/navigations/breadcrumb_test.rb +1 -1
- data/test/ui/core/navigations/link_test.rb +1 -1
- data/test/ui/core/navigations/nav_test.rb +17 -5
- data/test/ui/core/navigations/navbar_test.rb +7 -8
- data/test/ui/core/navigations/tab_group_test.rb +4 -4
- data/test/ui/core/notifications/alert_test.rb +2 -2
- data/test/ui/core/notifications/badge_test.rb +3 -3
- data/test/ui/core/notifications/progress_bar_test.rb +1 -1
- data/test/ui/core/notifications/toast_test.rb +10 -1
- data/test/ui/core/windows/modal_test.rb +15 -1
- data/test/ui/utils/breakdown_class_name_generator_test.rb +74 -0
- data/test/ui/ux/containers/panel_test.rb +5 -5
- data/test/ui/ux/tables/table_test.rb +6 -6
- data/test/ui_bibz_test.rb +1 -1
- data/ui_bibz.gemspec +16 -16
- metadata +100 -108
- data/app/assets/javascripts/fix_bootstrap.coffee +0 -7
- data/app/assets/javascripts/form.coffee +0 -83
- data/app/assets/javascripts/formula.coffee +0 -69
- data/app/assets/javascripts/input-connected.coffee +0 -101
- data/app/assets/javascripts/interface.coffee +0 -55
- data/app/assets/javascripts/jquery.multi-select-extend.coffee +0 -38
- data/app/assets/javascripts/table.coffee +0 -36
- data/app/assets/javascripts/ui_bibz.coffee.erb +0 -75
- data/app/assets/stylesheets/_custom_variables.sass +0 -20
- data/app/assets/stylesheets/_panel.scss +0 -315
- data/app/assets/stylesheets/bootstrap-switch.sass +0 -159
- data/app/assets/stylesheets/boxes.sass +0 -5
- data/app/assets/stylesheets/containers.sass +0 -2
- data/app/assets/stylesheets/fix-bootstrap-4.sass +0 -19
- data/app/assets/stylesheets/fix_addon.sass +0 -216
- data/app/assets/stylesheets/forms.sass +0 -91
- data/app/assets/stylesheets/navigations.sass +0 -17
- data/app/assets/stylesheets/notifications.sass +0 -42
- data/app/assets/stylesheets/tables.sass +0 -66
- data/app/assets/stylesheets/ui_bibz.sass.erb +0 -55
- data/lib/generators/ui_bibz/install_generator.rb +0 -17
- data/lib/generators/ui_bibz/templates/ui_bibz_initializer.rb +0 -5
- data/lib/ui_bibz/ui/core/forms/selects/multi_select_field.rb +0 -125
- data/lib/ui_bibz/ui/core/icons/glyph_group.rb +0 -101
- data/test/dummy/bin/bundle +0 -5
- data/test/ui/core/forms/files/text_field_test.rb +0 -12
- data/test/ui/core/forms/selects/dropdown_select_field_test.rb +0 -84
- data/test/ui/core/icons/glyph_group_test.rb +0 -37
@@ -8,12 +8,11 @@ module UiBibzInputs
|
|
8
8
|
def input_html_options
|
9
9
|
opts = super
|
10
10
|
input_classes = UiBibz::Utils::Screwdriver.join_classes(@builder.options[:input_html].try(:[], :class), options[:input_html].try(:[], :class), options[:class])
|
11
|
-
opts = opts.merge({ prompt: options[:prompt] })
|
12
|
-
opts = opts.merge({ disabled: options[:disabled] })
|
13
|
-
opts = opts.merge({ include_blank: options[:include_blank] })
|
14
|
-
opts = opts.merge({ multiple: options[:multiple] })
|
15
|
-
|
16
|
-
opts
|
11
|
+
opts = opts.merge({ prompt: options[:prompt] }) if options[:prompt].present?
|
12
|
+
opts = opts.merge({ disabled: options[:disabled] }) if options[:disabled].present?
|
13
|
+
opts = opts.merge({ include_blank: options[:include_blank] }) if options[:include_blank].present?
|
14
|
+
opts = opts.merge({ multiple: options[:multiple] }) if options[:multiple].present?
|
15
|
+
(@builder.options[:input_html] || {}).merge(options[:input_html] || {}).merge(opts || {}).merge({ class: input_classes })
|
17
16
|
end
|
18
17
|
|
19
18
|
def new_options
|
@@ -57,9 +56,7 @@ module UiBibzInputs
|
|
57
56
|
end
|
58
57
|
|
59
58
|
def input_attribute_name
|
60
|
-
|
61
|
-
new_attribute_name += "[#{@builder.lookup_model_names.second}_attributes]" if @builder.lookup_model_names.second
|
62
|
-
new_attribute_name + "[#{attribute_name}]"
|
59
|
+
"#{@builder.object_name}[#{attribute_name}]"
|
63
60
|
end
|
64
61
|
|
65
62
|
def collection
|
@@ -4,6 +4,10 @@ module UiBibzInputs
|
|
4
4
|
class UiCheckboxFieldInput < BaseInput
|
5
5
|
include UiBibz::Ui::Core::Forms::Choices
|
6
6
|
|
7
|
+
def label(_wrapper_options)
|
8
|
+
false
|
9
|
+
end
|
10
|
+
|
7
11
|
def input(_wrapper_options)
|
8
12
|
UiBibz::Ui::Core::Forms::Choices::CheckboxField.new(input_attribute_name, new_options, new_input_html_options).render
|
9
13
|
end
|
@@ -17,7 +21,7 @@ module UiBibzInputs
|
|
17
21
|
end
|
18
22
|
|
19
23
|
def new_options
|
20
|
-
options.merge({ label: attribute_name.to_s.titleize })
|
24
|
+
options.merge({ label: options[:label] || attribute_name.to_s.titleize })
|
21
25
|
end
|
22
26
|
end
|
23
27
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibzInputs
|
4
|
+
class UiChoiceFieldInput < CollectionInput
|
5
|
+
include UiBibz::Ui::Core::Forms::Choices
|
6
|
+
|
7
|
+
def input(_wrapper_options)
|
8
|
+
UiBibz::Ui::Core::Forms::Choices::Choice.new(input_attribute_name, new_options, new_input_html_options).render
|
9
|
+
end
|
10
|
+
|
11
|
+
def new_input_html_options
|
12
|
+
input_html_options.merge({ checked: value.nil? ? false : value })
|
13
|
+
end
|
14
|
+
|
15
|
+
def value
|
16
|
+
@value ||= @builder.object.send(attribute_name)
|
17
|
+
end
|
18
|
+
|
19
|
+
def new_options
|
20
|
+
options.merge({ label: options[:old_label] || attribute_name.to_s.titleize })
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module UiBibzInputs
|
4
|
-
class UiMultiSelectFieldInput <
|
5
|
-
def
|
6
|
-
|
4
|
+
class UiMultiSelectFieldInput < UiDropdownSelectFieldInput
|
5
|
+
def new_options
|
6
|
+
(super || {}).merge(multiple: true)
|
7
7
|
end
|
8
8
|
end
|
9
9
|
end
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibzInputs
|
4
|
+
class UiSliderFieldInput < UiTextFieldInput
|
5
|
+
include UiBibz::Ui::Core::Forms::Numbers
|
6
|
+
|
7
|
+
def input(_wrapper_options)
|
8
|
+
input_html_options[:id] = "#{sanitize_to_id(input_attribute_name)}_slider"
|
9
|
+
UiBibz::Ui::Core::Forms::Numbers::SliderField.new(input_attribute_name, options, input_html_options).render
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
data/lib/ui_bibz/rails/engine.rb
CHANGED
@@ -1,10 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# to load pagination in rails app
|
4
|
-
require 'will_paginate'
|
5
|
-
require 'jquery-rails'
|
6
|
-
require 'popper_js'
|
7
|
-
require 'bootstrap'
|
4
|
+
require 'will_paginate' if system('gem list -i will_paginate', out: File::NULL)
|
8
5
|
require 'simple_form' if system('gem list -i simple_form', out: File::NULL)
|
9
6
|
|
10
7
|
module UiBibz
|
@@ -24,18 +21,6 @@ module UiBibz
|
|
24
21
|
initializer 'ui_bibz.helpers.form' do
|
25
22
|
ActionView::Base.include UiBibzForm
|
26
23
|
end
|
27
|
-
|
28
|
-
initializer 'font-awesome-sass.assets.precompile', group: :all do |app|
|
29
|
-
%w[eot svg ttf woff woff2].each do |ext|
|
30
|
-
app.config.assets.precompile << "fonts/fa-brands-400.#{ext}"
|
31
|
-
app.config.assets.precompile << "fonts/fa-regular-400.#{ext}"
|
32
|
-
app.config.assets.precompile << "fonts/fa-solid-900.#{ext}"
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
config.after_initialize do
|
37
|
-
warn '[Ui Bibz] Ui Bibz is not configured in the application and will use the default values.' + ' Use `rails generate ui_bibz:install` to generate the Ui Bibz configuration.' unless UiBibz.configured?
|
38
|
-
end
|
39
24
|
end
|
40
25
|
end
|
41
26
|
end
|
@@ -0,0 +1,67 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Concerns::CardItemableConcern #:nodoc:
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
6
|
+
|
7
|
+
included do
|
8
|
+
# Add Header which is a component
|
9
|
+
def header(content = nil, options = nil, html_options = nil, &block)
|
10
|
+
options, content = inherit_options(content, options, block)
|
11
|
+
@header = if tapped?(block)
|
12
|
+
UiBibz::Ui::Core::Boxes::Components::CardHeader.new(content, options, html_options).tap(&block).render
|
13
|
+
else
|
14
|
+
UiBibz::Ui::Core::Boxes::Components::CardHeader.new(content, options, html_options, &block).render
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# Add Body div which is a component
|
19
|
+
def body(content = nil, options = nil, html_options = nil, &block)
|
20
|
+
options, content = inherit_options(content, options, block)
|
21
|
+
if tapped?(block)
|
22
|
+
content = (content || {}).merge(collapse: options.try(:[], :collapse), parent_collapse: @options[:parent_collapse])
|
23
|
+
@items << UiBibz::Ui::Core::Boxes::Components::CardBody.new(content, options, html_options).tap(&block).render
|
24
|
+
else
|
25
|
+
options = (options || {}).merge(collapse: options.try(:[], :collapse), parent_collapse: @options[:parent_collapse])
|
26
|
+
@items << UiBibz::Ui::Core::Boxes::Components::CardBody.new(content, options, html_options, &block).render
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# Add Footer which is a component
|
31
|
+
def footer(content = nil, options = nil, html_options = nil, &block)
|
32
|
+
options, content = inherit_options(content, options, block)
|
33
|
+
@footer = UiBibz::Ui::Core::Boxes::Components::CardFooter.new(content, options, html_options, &block).render
|
34
|
+
end
|
35
|
+
|
36
|
+
# Add List group which is a component
|
37
|
+
def list_group(content = nil, options = nil, html_options = nil, &block)
|
38
|
+
@items << UiBibz::Ui::Core::Boxes::Components::CardListGroup.new(content, options, html_options).tap(&block).render
|
39
|
+
end
|
40
|
+
|
41
|
+
# Add Image which is a component
|
42
|
+
def image(content = nil, options = nil, html_options = nil, &block)
|
43
|
+
# Add position top to the image if the image is in top of the card
|
44
|
+
options = (options || {}).merge(position: :top) if @header.nil? && @items.empty? && options.try(:[], :position).nil?
|
45
|
+
@items << UiBibz::Ui::Core::Boxes::Components::CardImage.new(content, options, html_options, &block).render
|
46
|
+
end
|
47
|
+
|
48
|
+
# Add a row whih is a component
|
49
|
+
def row(content = nil, options = nil, html_options = nil, &block)
|
50
|
+
options, content = inherit_options(content, options, block)
|
51
|
+
@items << if tapped?(block)
|
52
|
+
UiBibz::Ui::Core::Boxes::Components::CardRow.new(content, options, html_options).tap(&block).render
|
53
|
+
else
|
54
|
+
UiBibz::Ui::Core::Boxes::Components::CardRow.new(content, options, html_options, &block).render
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def inherit_options(content, options, block)
|
59
|
+
if block.nil?
|
60
|
+
options = (options || {}).merge({ outline: @options[:outline], status: @options[:status] })
|
61
|
+
else
|
62
|
+
content = (content || {}).merge({ outline: @options[:outline], status: @options[:status] })
|
63
|
+
end
|
64
|
+
[options, content]
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Concerns::HtmlConcern #:nodoc:
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
|
6
|
+
included do
|
7
|
+
def html(content = nil, &block)
|
8
|
+
if block.nil?
|
9
|
+
@items << content
|
10
|
+
else
|
11
|
+
context = eval('self', block.binding) # rubocop:disable Style/EvalWithLocation
|
12
|
+
@items << context.capture(&block)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -5,11 +5,11 @@ require 'ui_bibz/ui/core/boxes/components/card_footer'
|
|
5
5
|
require 'ui_bibz/ui/core/boxes/components/card_body'
|
6
6
|
require 'ui_bibz/ui/core/boxes/components/card_image'
|
7
7
|
require 'ui_bibz/ui/core/boxes/components/card_list_group'
|
8
|
+
require 'ui_bibz/ui/core/boxes/components/card_row'
|
8
9
|
module UiBibz::Ui::Core::Boxes
|
9
10
|
# Create a card
|
10
11
|
#
|
11
12
|
# This element is an extend of UiBibz::Ui::Core::Component.
|
12
|
-
# You can use tap method to add header, body or footer element.
|
13
13
|
#
|
14
14
|
# ==== Attributes
|
15
15
|
#
|
@@ -67,7 +67,7 @@ module UiBibz::Ui::Core::Boxes
|
|
67
67
|
# content
|
68
68
|
# end
|
69
69
|
#
|
70
|
-
# card(options = {
|
70
|
+
# card(options = {}, html_options = {}) do |p|
|
71
71
|
# p.header(content, options = {}, html_options = {})
|
72
72
|
# # or
|
73
73
|
# p.header(options = {}, html_options = {}) do
|
@@ -88,50 +88,14 @@ module UiBibz::Ui::Core::Boxes
|
|
88
88
|
# end
|
89
89
|
#
|
90
90
|
class Card < UiBibz::Ui::Core::Component
|
91
|
+
include UiBibz::Ui::Concerns::CardItemableConcern
|
92
|
+
|
91
93
|
# See UiBibz::Ui::Core::Component.initialize
|
92
94
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
93
95
|
super
|
94
96
|
@items = @content.nil? ? [] : [UiBibz::Ui::Core::Boxes::Components::CardBody.new(@content).render]
|
95
97
|
end
|
96
98
|
|
97
|
-
# Add Header which is a component
|
98
|
-
def header(content = nil, options = nil, html_options = nil, &block)
|
99
|
-
options, content = inherit_options(content, options, block)
|
100
|
-
@header = if tap?(content, options)
|
101
|
-
UiBibz::Ui::Core::Boxes::Components::CardHeader.new(content, options, html_options).tap(&block).render
|
102
|
-
else
|
103
|
-
UiBibz::Ui::Core::Boxes::Components::CardHeader.new(content, options, html_options, &block).render
|
104
|
-
end
|
105
|
-
end
|
106
|
-
|
107
|
-
# Add Body div which is a component
|
108
|
-
def body(content = nil, options = nil, html_options = nil, &block)
|
109
|
-
options, content = inherit_options(content, options, block)
|
110
|
-
if tap?(content, options)
|
111
|
-
content = (content || {}).merge(collapse: options.try(:[], :collapse), parent_collapse: @options[:parent_collapse])
|
112
|
-
@items << UiBibz::Ui::Core::Boxes::Components::CardBody.new(content, options, html_options).tap(&block).render
|
113
|
-
else
|
114
|
-
options = (options || {}).merge(collapse: options.try(:[], :collapse), parent_collapse: @options[:parent_collapse])
|
115
|
-
@items << UiBibz::Ui::Core::Boxes::Components::CardBody.new(content, options, html_options, &block).render
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
119
|
-
# Add Footer which is a component
|
120
|
-
def footer(content = nil, options = nil, html_options = nil, &block)
|
121
|
-
options, content = inherit_options(content, options, block)
|
122
|
-
@footer = UiBibz::Ui::Core::Boxes::Components::CardFooter.new(content, options, html_options, &block).render
|
123
|
-
end
|
124
|
-
|
125
|
-
# Add List group which is a component
|
126
|
-
def list_group(content = nil, options = nil, html_options = nil, &block)
|
127
|
-
@items << UiBibz::Ui::Core::Boxes::Components::CardListGroup.new(content, options, html_options).tap(&block).render
|
128
|
-
end
|
129
|
-
|
130
|
-
# Add Image which is a component
|
131
|
-
def image(content = nil, options = nil, html_options = nil, &block)
|
132
|
-
@items << UiBibz::Ui::Core::Boxes::Components::CardImage.new(content, options, html_options, &block).render
|
133
|
-
end
|
134
|
-
|
135
99
|
# Render html tag
|
136
100
|
def pre_render
|
137
101
|
content_tag :div, html_structure, html_options
|
@@ -143,15 +107,6 @@ module UiBibz::Ui::Core::Boxes
|
|
143
107
|
[@header, @items.join, @footer].compact.join.html_safe
|
144
108
|
end
|
145
109
|
|
146
|
-
def inherit_options(content, options, block)
|
147
|
-
if block.nil?
|
148
|
-
options = (options || {}).merge({ outline: @options[:outline], status: @options[:status] })
|
149
|
-
else
|
150
|
-
content = (content || {}).merge({ outline: @options[:outline], status: @options[:status] })
|
151
|
-
end
|
152
|
-
[options, content]
|
153
|
-
end
|
154
|
-
|
155
110
|
def component_html_classes
|
156
111
|
['card', text, type, tab_pane, outline]
|
157
112
|
end
|
@@ -169,7 +124,7 @@ module UiBibz::Ui::Core::Boxes
|
|
169
124
|
end
|
170
125
|
|
171
126
|
def card_block
|
172
|
-
'card-block' if !@options[:block].nil? || @
|
127
|
+
'card-block' if !@options[:block].nil? || @tapped
|
173
128
|
end
|
174
129
|
|
175
130
|
def type
|
@@ -31,6 +31,8 @@ module UiBibz::Ui::Core::Boxes
|
|
31
31
|
# end.render
|
32
32
|
#
|
33
33
|
class CardAccordion < UiBibz::Ui::Core::Component
|
34
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
35
|
+
|
34
36
|
# See UiBibz::Ui::Core::Component.initialize
|
35
37
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
38
|
super
|
@@ -31,6 +31,8 @@ module UiBibz::Ui::Core::Boxes
|
|
31
31
|
# end.render
|
32
32
|
#
|
33
33
|
class CardColumn < UiBibz::Ui::Core::Component
|
34
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
35
|
+
|
34
36
|
# See UiBibz::Ui::Core::Component.initialize
|
35
37
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
38
|
super
|
@@ -43,7 +45,7 @@ module UiBibz::Ui::Core::Boxes
|
|
43
45
|
end
|
44
46
|
|
45
47
|
def card(content = nil, options = nil, html_options = nil, &block)
|
46
|
-
@items << if
|
48
|
+
@items << if tapped?(block)
|
47
49
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options).tap(&block).render
|
48
50
|
else
|
49
51
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options, &block).render
|
@@ -31,6 +31,8 @@ module UiBibz::Ui::Core::Boxes
|
|
31
31
|
# end.render
|
32
32
|
#
|
33
33
|
class CardDeck < UiBibz::Ui::Core::Component
|
34
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
35
|
+
|
34
36
|
# See UiBibz::Ui::Core::Component.initialize
|
35
37
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
38
|
super
|
@@ -45,7 +47,7 @@ module UiBibz::Ui::Core::Boxes
|
|
45
47
|
end
|
46
48
|
|
47
49
|
def card(content = nil, options = nil, html_options = nil, &block)
|
48
|
-
@items << if
|
50
|
+
@items << if tapped?(block)
|
49
51
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options).tap(&block).render
|
50
52
|
else
|
51
53
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options, &block).render
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Core::Boxes
|
4
|
+
# Create a card grid
|
5
|
+
#
|
6
|
+
# ==== Attributes
|
7
|
+
#
|
8
|
+
# * +content+ - Content of element
|
9
|
+
# * +options+ - Options of element
|
10
|
+
# * +html_options+ - Html Options of element
|
11
|
+
#
|
12
|
+
# ==== Options
|
13
|
+
#
|
14
|
+
# You can add HTML attributes using the +html_options+.
|
15
|
+
# You can pass arguments in options attribute:
|
16
|
+
#
|
17
|
+
# ==== Signatures
|
18
|
+
#
|
19
|
+
# UiBibz::Ui::Core::Boxes::CardGrid.new(content, options = nil, html_options = nil)
|
20
|
+
#
|
21
|
+
# UiBibz::Ui::Core::Boxes::CardGrid.new(options = nil, html_options = nil) do |cg|
|
22
|
+
# cg.card content, options, html_options, &block
|
23
|
+
# end
|
24
|
+
#
|
25
|
+
# ==== Examples
|
26
|
+
#
|
27
|
+
# UiBibz::Ui::Core::Boxes::CardGrid.new do |cg|
|
28
|
+
# cg.card 'Exemple 1'
|
29
|
+
# cg.card 'Exemple 2'
|
30
|
+
# cg.card 'Exemple 3'
|
31
|
+
# end.render
|
32
|
+
#
|
33
|
+
class CardGrid < UiBibz::Ui::Core::Layouts::Row
|
34
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
35
|
+
|
36
|
+
# See UiBibz::Ui::Core::Component.initialize
|
37
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
38
|
+
super
|
39
|
+
end
|
40
|
+
|
41
|
+
# Render html tag
|
42
|
+
def pre_render
|
43
|
+
content_tag :div, @items.join.html_safe, html_options
|
44
|
+
end
|
45
|
+
|
46
|
+
def card(content = nil, options = nil, html_options = nil, &block)
|
47
|
+
@items << content_tag(:div, if tapped?(block)
|
48
|
+
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options).tap(&block).render
|
49
|
+
else
|
50
|
+
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options, &block).render
|
51
|
+
end, class: 'col')
|
52
|
+
end
|
53
|
+
|
54
|
+
private
|
55
|
+
|
56
|
+
def component_html_classes
|
57
|
+
super << 'card-grid'
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -31,6 +31,8 @@ module UiBibz::Ui::Core::Boxes
|
|
31
31
|
# end.render
|
32
32
|
#
|
33
33
|
class CardGroup < UiBibz::Ui::Core::Component
|
34
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
35
|
+
|
34
36
|
# See UiBibz::Ui::Core::Component.initialize
|
35
37
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
38
|
super
|
@@ -43,7 +45,7 @@ module UiBibz::Ui::Core::Boxes
|
|
43
45
|
end
|
44
46
|
|
45
47
|
def card(content = nil, options = nil, html_options = nil, &block)
|
46
|
-
@items << if
|
48
|
+
@items << if tapped?(block)
|
47
49
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options).tap(&block).render
|
48
50
|
else
|
49
51
|
UiBibz::Ui::Core::Boxes::Card.new(content, options, html_options, &block).render
|