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
@@ -32,9 +32,6 @@ module UiBibz::Ui::Core::Boxes::Components::Body
|
|
32
32
|
#
|
33
33
|
class CardBodyLink < UiBibz::Ui::Core::Component
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
|
-
super
|
37
|
-
end
|
38
35
|
|
39
36
|
# Render html tag
|
40
37
|
def pre_render
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Core::Boxes::Components::Body
|
4
|
+
# Create a card block title
|
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::CardBodyTitle.new(content, options = nil, html_options = nil)
|
20
|
+
#
|
21
|
+
# UiBibz::Ui::Core::Boxes::CardBodyTitle.new(options = nil, html_options = nil) do
|
22
|
+
# content
|
23
|
+
# end
|
24
|
+
#
|
25
|
+
# ==== Examples
|
26
|
+
#
|
27
|
+
# UiBibz::Ui::Core::Boxes::CardBodyTitle.new.render
|
28
|
+
#
|
29
|
+
# UiBibz::Ui::Core::Boxes::CardBodyTitle.new do
|
30
|
+
# 'Exemple'
|
31
|
+
# end.render
|
32
|
+
#
|
33
|
+
class CardBodySubtitle < UiBibz::Ui::Core::Component
|
34
|
+
# See UiBibz::Ui::Core::Component.initialize
|
35
|
+
|
36
|
+
# Render html tag
|
37
|
+
def pre_render
|
38
|
+
content_tag :h6, content, html_options
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def component_html_classes
|
44
|
+
'card-subtitle mb-2 text-muted'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -32,9 +32,6 @@ module UiBibz::Ui::Core::Boxes::Components::Body
|
|
32
32
|
#
|
33
33
|
class CardBodyText < UiBibz::Ui::Core::Component
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
|
-
super
|
37
|
-
end
|
38
35
|
|
39
36
|
# Render html tag
|
40
37
|
def pre_render
|
@@ -32,13 +32,10 @@ module UiBibz::Ui::Core::Boxes::Components::Body
|
|
32
32
|
#
|
33
33
|
class CardBodyTitle < UiBibz::Ui::Core::Component
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
|
-
super
|
37
|
-
end
|
38
35
|
|
39
36
|
# Render html tag
|
40
37
|
def pre_render
|
41
|
-
content_tag :
|
38
|
+
content_tag :h5, content, html_options
|
42
39
|
end
|
43
40
|
|
44
41
|
private
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'ui_bibz/ui/core/boxes/components/body/card_body_text'
|
4
4
|
require 'ui_bibz/ui/core/boxes/components/body/card_body_title'
|
5
|
+
require 'ui_bibz/ui/core/boxes/components/body/card_body_subtitle'
|
5
6
|
require 'ui_bibz/ui/core/boxes/components/body/card_body_link'
|
6
7
|
module UiBibz::Ui::Core::Boxes::Components
|
7
8
|
# Create a card body
|
@@ -34,6 +35,8 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
34
35
|
# end.render
|
35
36
|
#
|
36
37
|
class CardBody < UiBibz::Ui::Core::Component
|
38
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
39
|
+
|
37
40
|
# See UiBibz::Ui::Core::Component.initialize
|
38
41
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
39
42
|
super
|
@@ -55,6 +58,10 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
55
58
|
@items << UiBibz::Ui::Core::Boxes::Components::Body::CardBodyTitle.new(content, options, html_options, &block).render
|
56
59
|
end
|
57
60
|
|
61
|
+
def subtitle(content = nil, options = nil, html_options = nil, &block)
|
62
|
+
@items << UiBibz::Ui::Core::Boxes::Components::Body::CardBodySubtitle.new(content, options, html_options, &block).render
|
63
|
+
end
|
64
|
+
|
58
65
|
def link(content = nil, options = nil, html_options = nil, &block)
|
59
66
|
@items << UiBibz::Ui::Core::Boxes::Components::Body::CardBodyLink.new(content, options, html_options, &block).render
|
60
67
|
end
|
@@ -63,6 +70,14 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
63
70
|
@items << UiBibz::Ui::Core::Boxes::Components::Body::CardBodyText.new(content, options, html_options, &block).render
|
64
71
|
end
|
65
72
|
|
73
|
+
def row(content = nil, options = nil, html_options = nil, &block)
|
74
|
+
@items << if tapped?(block)
|
75
|
+
UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options).tap(&block).render
|
76
|
+
else
|
77
|
+
UiBibz::Ui::Core::Layouts::Row.new(content, options, html_options, &block).render
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
66
81
|
private
|
67
82
|
|
68
83
|
def component_html_classes
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Core::Boxes::Components
|
4
|
+
# Create a card col
|
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::CardCol.new(content, options = nil, html_options = nil)
|
20
|
+
#
|
21
|
+
# UiBibz::Ui::Core::Boxes::CardCol.new(options = nil, html_options = nil) do
|
22
|
+
# content
|
23
|
+
# end
|
24
|
+
#
|
25
|
+
# UiBibz::Ui::Core::Boxes::CardCol.new(options = nil, html_options = nil) do |col|
|
26
|
+
# col.body do
|
27
|
+
# content
|
28
|
+
# end
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# ==== Examples
|
32
|
+
#
|
33
|
+
# UiBibz::Ui::Core::Boxes::CardCol.new.render
|
34
|
+
#
|
35
|
+
# UiBibz::Ui::Core::Boxes::CardCol.new do
|
36
|
+
# 'Exemple'
|
37
|
+
# end.render
|
38
|
+
#
|
39
|
+
# UiBibz::Ui::Core::Boxes::CardCol.new do |col|
|
40
|
+
# col.body do
|
41
|
+
# 'Exemple'
|
42
|
+
# end
|
43
|
+
# end.render
|
44
|
+
#
|
45
|
+
class CardCol < UiBibz::Ui::Core::Layouts::Col
|
46
|
+
include UiBibz::Ui::Concerns::CardItemableConcern
|
47
|
+
|
48
|
+
# See UiBibz::Ui::Core::Component.initialize
|
49
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
50
|
+
content = content.is_a?(Integer) ? { num: content } : content
|
51
|
+
super
|
52
|
+
@items = [@content]
|
53
|
+
end
|
54
|
+
|
55
|
+
def pre_render
|
56
|
+
content_tag :div, html_structure, html_options
|
57
|
+
end
|
58
|
+
|
59
|
+
private
|
60
|
+
|
61
|
+
def html_structure
|
62
|
+
[@header, @items.join, @footer].compact.join.html_safe
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -32,9 +32,6 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
32
32
|
#
|
33
33
|
class CardFooter < UiBibz::Ui::Core::Component
|
34
34
|
# See UiBibz::Ui::Core::Component.initialize
|
35
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
36
|
-
super
|
37
|
-
end
|
38
35
|
|
39
36
|
# Render html tag
|
40
37
|
def pre_render
|
@@ -39,10 +39,8 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
39
39
|
# end.render
|
40
40
|
#
|
41
41
|
class CardHeader < UiBibz::Ui::Core::Component
|
42
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
42
43
|
# See UiBibz::Ui::Core::Component.initialize
|
43
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
44
|
-
super
|
45
|
-
end
|
46
44
|
|
47
45
|
# Render html tag
|
48
46
|
def pre_render
|
@@ -50,7 +48,7 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
50
48
|
end
|
51
49
|
|
52
50
|
def tab_group(content = nil, options = nil, html_options = nil, &block)
|
53
|
-
@content = if
|
51
|
+
@content = if tapped?(block)
|
54
52
|
CardTabGroup.new(content, options, html_options).tap(&block).render
|
55
53
|
else
|
56
54
|
CardTabGroup.new(content, options, html_options, &block).render
|
@@ -34,9 +34,6 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
34
34
|
#
|
35
35
|
class CardImage < UiBibz::Ui::Core::Component
|
36
36
|
# See UiBibz::Ui::Core::Component.initialize
|
37
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
38
|
-
super
|
39
|
-
end
|
40
37
|
|
41
38
|
# Render html tag
|
42
39
|
def pre_render
|
@@ -51,7 +48,7 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
51
48
|
end
|
52
49
|
|
53
50
|
def position
|
54
|
-
"card-img-#{@options[:position] || :top}"
|
51
|
+
"card-img-#{@options[:position] || :top}" if @options[:position]
|
55
52
|
end
|
56
53
|
end
|
57
54
|
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'ui_bibz/ui/core/boxes/components/card_col'
|
4
|
+
module UiBibz::Ui::Core::Boxes::Components
|
5
|
+
# Create a card row
|
6
|
+
#
|
7
|
+
# ==== Attributes
|
8
|
+
#
|
9
|
+
# * +content+ - Content of element
|
10
|
+
# * +options+ - Options of element
|
11
|
+
# * +html_options+ - Html Options of element
|
12
|
+
#
|
13
|
+
# ==== Options
|
14
|
+
#
|
15
|
+
# You can add HTML attributes using the +html_options+.
|
16
|
+
# You can pass arguments in options attribute:
|
17
|
+
#
|
18
|
+
# ==== Signatures
|
19
|
+
#
|
20
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new(content, options = nil, html_options = nil)
|
21
|
+
#
|
22
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new(options = nil, html_options = nil) do
|
23
|
+
# content
|
24
|
+
# end
|
25
|
+
#
|
26
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new(options = nil, html_options = nil) do |row|
|
27
|
+
# row.col do
|
28
|
+
# content
|
29
|
+
# end
|
30
|
+
# end
|
31
|
+
#
|
32
|
+
# ==== Examples
|
33
|
+
#
|
34
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new.render
|
35
|
+
#
|
36
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new do
|
37
|
+
# 'Exemple'
|
38
|
+
# end.render
|
39
|
+
#
|
40
|
+
# UiBibz::Ui::Core::Boxes::CardRow.new do |row|
|
41
|
+
# row.col do
|
42
|
+
# 'Exemple'
|
43
|
+
# end
|
44
|
+
# end.render
|
45
|
+
#
|
46
|
+
class CardRow < UiBibz::Ui::Core::Layouts::Row
|
47
|
+
# See UiBibz::Ui::Core::Component.initialize
|
48
|
+
def initialize(content = nil, options = nil, html_options = nil, &block)
|
49
|
+
super
|
50
|
+
@items = [@content]
|
51
|
+
end
|
52
|
+
|
53
|
+
def pre_render
|
54
|
+
content_tag :div, @items.join.html_safe, html_options
|
55
|
+
end
|
56
|
+
|
57
|
+
def col(content = nil, options = nil, html_options = nil, &block)
|
58
|
+
@items << if tapped?(block)
|
59
|
+
UiBibz::Ui::Core::Boxes::Components::CardCol.new(content, options, html_options).tap(&block).render
|
60
|
+
else
|
61
|
+
UiBibz::Ui::Core::Layouts::Col.new(content, options, html_options, &block).render
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -12,10 +12,6 @@ module UiBibz::Ui::Core::Boxes::Components
|
|
12
12
|
# * +html_options+ - Html Options of element
|
13
13
|
#
|
14
14
|
class CardTabGroup < UiBibz::Ui::Core::Navigations::TabGroup
|
15
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
16
|
-
super
|
17
|
-
end
|
18
|
-
|
19
15
|
private
|
20
16
|
|
21
17
|
def component_html_classes
|
@@ -43,9 +43,6 @@ module UiBibz::Ui::Core::Boxes
|
|
43
43
|
#
|
44
44
|
class Jumbotron < UiBibz::Ui::Core::Component
|
45
45
|
# See UiBibz::Ui::Core::Boxes::Component.initialize
|
46
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
47
|
-
super
|
48
|
-
end
|
49
46
|
|
50
47
|
# Render html tag
|
51
48
|
def pre_render
|
@@ -61,7 +58,7 @@ module UiBibz::Ui::Core::Boxes
|
|
61
58
|
private
|
62
59
|
|
63
60
|
def component_html_classes
|
64
|
-
['jumbotron', fluid]
|
61
|
+
['jumbotron', fluid, 'bg-light', 'rounded p-4']
|
65
62
|
end
|
66
63
|
|
67
64
|
def fluid
|
@@ -18,7 +18,8 @@ module UiBibz::Ui::Core
|
|
18
18
|
# You can add HTML attributes using the +html_options+.
|
19
19
|
# You can pass arguments in options attribute:
|
20
20
|
# * +status+ - status of element with symbol value:
|
21
|
-
# (+:
|
21
|
+
# (+:primary+, +:secondary+, +:success+, +:info+, +:warning+, +:danger+,
|
22
|
+
# +:light+, :+dark+)
|
22
23
|
# * +glyph+ - Add glyph with name or hash options
|
23
24
|
# * +name+ - String
|
24
25
|
# * +size+ - Integer
|
@@ -47,7 +48,8 @@ module UiBibz::Ui::Core
|
|
47
48
|
|
48
49
|
# Constants
|
49
50
|
STATUSES = %i[primary secondary success danger warning info light dark].freeze
|
50
|
-
|
51
|
+
BREAKPOINTS = %i[xxl xl lg md sm xs].freeze
|
52
|
+
SIZES = %i[lg md sm].freeze
|
51
53
|
|
52
54
|
attr_accessor :content, :html_options, :options
|
53
55
|
|
@@ -58,6 +60,7 @@ module UiBibz::Ui::Core
|
|
58
60
|
# * Html options is defined in hash html_options
|
59
61
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
60
62
|
if !block.nil?
|
63
|
+
@tapped = tapped?(block)
|
61
64
|
@html_options = options
|
62
65
|
@options = content
|
63
66
|
read_cache = Rails.cache.read(@options.try(:[], :cache))
|
@@ -92,8 +95,8 @@ module UiBibz::Ui::Core
|
|
92
95
|
end
|
93
96
|
|
94
97
|
# Know if component is tapped or not
|
95
|
-
def
|
96
|
-
|
98
|
+
def tapped?(block)
|
99
|
+
UiBibz::Utils::Screwdriver.tapped?(block)
|
97
100
|
end
|
98
101
|
|
99
102
|
protected
|
@@ -108,17 +111,17 @@ module UiBibz::Ui::Core
|
|
108
111
|
def component_html_data
|
109
112
|
# To stimulusjs
|
110
113
|
data_target = html_options.try(:[], :data).try(:[], :target) || options.try(:delete, :target)
|
111
|
-
add_html_data(:target, data_target) unless data_target.nil?
|
114
|
+
add_html_data(:target, value: data_target) unless data_target.nil?
|
112
115
|
|
113
116
|
data_controller = html_options.try(:[], :data).try(:[], :controller) || options.try(:delete, :controller)
|
114
|
-
add_html_data(:controller, data_controller) unless data_controller.nil?
|
117
|
+
add_html_data(:controller, value: data_controller) unless data_controller.nil?
|
115
118
|
|
116
119
|
data_action = html_options.try(:[], :data).try(:[], :action) || options.try(:delete, :action)
|
117
|
-
add_html_data(:action, data_action) unless data_action.nil?
|
120
|
+
add_html_data(:action, value: data_action) unless data_action.nil?
|
118
121
|
|
119
122
|
# To turbolinks
|
120
123
|
data_turbolinks = html_options.try(:[], :data).try(:[], :turbolinks) || options.try(:delete, :turbolinks)
|
121
|
-
add_html_data(:turbolinks, data_turbolinks) unless data_turbolinks.nil?
|
124
|
+
add_html_data(:turbolinks, value: data_turbolinks) unless data_turbolinks.nil?
|
122
125
|
end
|
123
126
|
|
124
127
|
# Override this method to add html Options
|
@@ -139,7 +142,7 @@ module UiBibz::Ui::Core
|
|
139
142
|
end
|
140
143
|
|
141
144
|
# Add html data arguments
|
142
|
-
def add_html_data(name, value
|
145
|
+
def add_html_data(name, value: true)
|
143
146
|
html_options[:data] = {} if html_options[:data].nil?
|
144
147
|
value = value.is_a?(String) ? value.strip : value
|
145
148
|
html_options[:data].update(Hash[name, value])
|
@@ -149,6 +152,10 @@ module UiBibz::Ui::Core
|
|
149
152
|
options[:state] == :disabled || html_options[:disabled]
|
150
153
|
end
|
151
154
|
|
155
|
+
def sanitize_text(text)
|
156
|
+
sanitize(text, tags: [], attributes: [])
|
157
|
+
end
|
158
|
+
|
152
159
|
private
|
153
160
|
|
154
161
|
def render_with_or_without_cache
|
@@ -16,7 +16,7 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
16
16
|
# You can add HTML attributes using the +html_options+.
|
17
17
|
# You can pass arguments in options attribute:
|
18
18
|
# * +status+ - status of element with symbol value:
|
19
|
-
# (+:primary+, +:secondary+, +:info+, +:warning+, +:danger+, +:
|
19
|
+
# (+:primary+, +:secondary+, +:success+, :info+, +:warning+, +:danger+, +:light+, +:dark+)
|
20
20
|
# * +size+
|
21
21
|
# (+:xs+, +:sm+, +:lg+)
|
22
22
|
# * +outline+ - Boolean
|
@@ -116,7 +116,7 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
116
116
|
end
|
117
117
|
|
118
118
|
def action
|
119
|
-
add_html_data('action', options[:action]) unless options[:action].nil?
|
119
|
+
add_html_data('action', value: options[:action]) unless options[:action].nil?
|
120
120
|
end
|
121
121
|
|
122
122
|
def badge_html
|
@@ -47,6 +47,8 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
47
47
|
# end
|
48
48
|
#
|
49
49
|
class ButtonGroup < UiBibz::Ui::Core::Component
|
50
|
+
include UiBibz::Ui::Concerns::HtmlConcern
|
51
|
+
|
50
52
|
# See UiBibz::Ui::Core::Component.initialize
|
51
53
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
52
54
|
super
|
@@ -55,7 +57,7 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
55
57
|
|
56
58
|
# Render html tag
|
57
59
|
def pre_render
|
58
|
-
content_tag :div, @items.join.html_safe, html_options
|
60
|
+
content_tag :div, @items.map { |item| item.respond_to?(:render) ? item.try(:render) : item }.join.html_safe, html_options
|
59
61
|
end
|
60
62
|
|
61
63
|
def button(content = nil, options = nil, html_options = nil, &block)
|
@@ -65,7 +67,7 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
65
67
|
content = @options.merge(content || {})
|
66
68
|
end
|
67
69
|
|
68
|
-
@items << Button.new(content, options, html_options, &block)
|
70
|
+
@items << Button.new(content, options, html_options, &block)
|
69
71
|
end
|
70
72
|
|
71
73
|
def button_link(content = nil, options = nil, html_options = nil, &block)
|
@@ -75,17 +77,17 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
75
77
|
content = @options.merge(content || {})
|
76
78
|
end
|
77
79
|
|
78
|
-
@items << ButtonLink.new(content, options, html_options, &block)
|
80
|
+
@items << ButtonLink.new(content, options, html_options, &block)
|
79
81
|
end
|
80
82
|
|
81
83
|
def dropdown(content, options = {}, html_options = nil, &block)
|
82
84
|
options = @options.merge(options)
|
83
|
-
@items << ButtonGroupDropdown.new(content, options, html_options).tap(&block)
|
85
|
+
@items << ButtonGroupDropdown.new(content, options, html_options).tap(&block)
|
84
86
|
end
|
85
87
|
|
86
88
|
def split_dropdown(content, options = {}, html_options = nil, &block)
|
87
89
|
options = @options.merge(options)
|
88
|
-
@items << ButtonGroupSplitDropdown.new(content, options, html_options).tap(&block)
|
90
|
+
@items << ButtonGroupSplitDropdown.new(content, options, html_options).tap(&block)
|
89
91
|
end
|
90
92
|
|
91
93
|
def input(attribute_name, options = {}, &block)
|
@@ -95,11 +97,11 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
95
97
|
end
|
96
98
|
|
97
99
|
def html(content = nil, options = nil, html_options = nil, &block)
|
98
|
-
@items << UiBibz::Ui::Core::Component.new(content, options, html_options, &block)
|
100
|
+
@items << UiBibz::Ui::Core::Component.new(content, options, html_options, &block)
|
99
101
|
end
|
100
102
|
|
101
103
|
def choice_group(content = nil, options = nil, html_options = nil, &block)
|
102
|
-
@items << UiBibz::Ui::Core::Forms::Choices::ChoiceGroup.new(content, options, html_options).tap(&block)
|
104
|
+
@items << UiBibz::Ui::Core::Forms::Choices::ChoiceGroup.new(content, options, html_options).tap(&block)
|
103
105
|
end
|
104
106
|
|
105
107
|
private
|
@@ -116,10 +118,6 @@ module UiBibz::Ui::Core::Forms::Buttons
|
|
116
118
|
options[:type] || :group
|
117
119
|
end
|
118
120
|
|
119
|
-
def component_html_data
|
120
|
-
super
|
121
|
-
end
|
122
|
-
|
123
121
|
def class_name
|
124
122
|
'btn-group' if options[:position] != :vertical
|
125
123
|
end
|