ui_bibz 2.5.5 → 3.0.0.alpha6
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 +89 -1
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +96 -108
- 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 +16 -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 +0 -3
- 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 +0 -3
- 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 +28 -7
- 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/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_search_field.rb +5 -5
- 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 +39 -3
- 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 -109
- data/.rubocop_todo.yml +0 -25
- 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
@@ -1,55 +0,0 @@
|
|
1
|
-
// Awesome Font
|
2
|
-
//@import font-awesome-sprockets
|
3
|
-
@import fontawesome/fontawesome
|
4
|
-
@import fontawesome/solid
|
5
|
-
@import fontawesome/brands
|
6
|
-
@import fontawesome/regular
|
7
|
-
|
8
|
-
// Bootstrap
|
9
|
-
$enable-flex: true
|
10
|
-
|
11
|
-
//@import bootstrap-sprockets
|
12
|
-
//@import bootstrap/_variables
|
13
|
-
@import bootstrap/_functions
|
14
|
-
@import bootstrap/_variables
|
15
|
-
@import _custom_variables
|
16
|
-
@import bootstrap
|
17
|
-
|
18
|
-
@import jquery-ui.min
|
19
|
-
|
20
|
-
//$brand-secondary: $gray-lighter
|
21
|
-
//$states_colors: (success: $brand-success, primary: $brand-primary, secondary: $brand-secondary, info: $brand-info, danger: $brand-danger, warning: $brand-warning, light: $brand-light, dark: $brand-dark)
|
22
|
-
|
23
|
-
$states_colors: $theme-colors
|
24
|
-
|
25
|
-
// ##### Bootstrap Plugins
|
26
|
-
// date_picker_field component
|
27
|
-
@import bootstrap-datepicker3.min
|
28
|
-
// multi_column_field component
|
29
|
-
@import jquery.multi-select.min
|
30
|
-
// switch_field component
|
31
|
-
@import bootstrap-switch
|
32
|
-
// multi_select_field component
|
33
|
-
@import bootstrap-multiselect.min
|
34
|
-
// dropdown_select_field component
|
35
|
-
@import bootstrap-select.min
|
36
|
-
// mardown-editor component
|
37
|
-
@import bootstrap-markdown.min
|
38
|
-
// awesome bootstrap checkbox component
|
39
|
-
@import awesome-bootstrap-checkbox
|
40
|
-
|
41
|
-
// fix plugins
|
42
|
-
@import fix-bootstrap-4
|
43
|
-
|
44
|
-
// Components
|
45
|
-
@import containers
|
46
|
-
@import tables
|
47
|
-
@import forms
|
48
|
-
@import navigations
|
49
|
-
@import notifications
|
50
|
-
@import boxes
|
51
|
-
@import fix_addon
|
52
|
-
|
53
|
-
// Other section
|
54
|
-
.ui-bibz-clear
|
55
|
-
clear: both
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'rails/generators'
|
4
|
-
module UiBibz
|
5
|
-
module Generators
|
6
|
-
class InstallGenerator < ::Rails::Generators::Base
|
7
|
-
source_root File.expand_path('templates', __dir__)
|
8
|
-
desc 'Creates Ui Bibz initializer for your application'
|
9
|
-
|
10
|
-
def copy_initializer
|
11
|
-
template 'ui_bibz_initializer.rb', 'config/initializers/ui_bibz.rb'
|
12
|
-
|
13
|
-
puts 'Install complete in config/initializers/ui_bibz.rb. Now you can configure the library!'
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,125 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module UiBibz::Ui::Core::Forms::Selects
|
4
|
-
# Create a MultiSelectField
|
5
|
-
#
|
6
|
-
# This element is an extend of UiBibz::Ui::Core::Forms::Buttons::Button
|
7
|
-
# source : http://loudev.com/
|
8
|
-
#
|
9
|
-
# ==== Attributes
|
10
|
-
#
|
11
|
-
# * +content+ - Content of element
|
12
|
-
# * +options+ - Options of element
|
13
|
-
# * +html_options+ - Html Options of element
|
14
|
-
#
|
15
|
-
# ==== Options
|
16
|
-
#
|
17
|
-
# You can add HTML attributes using the +html_options+.
|
18
|
-
# You can pass arguments in options attribute:
|
19
|
-
# * +option_tags+ - Array, Object [required]
|
20
|
-
# * +clickable_opt_group+ - Boolean
|
21
|
-
# * +collapsible_opt_group+ - Boolean
|
22
|
-
# * +searchable+ - Boolean
|
23
|
-
# * +select_all_option+ - Boolean
|
24
|
-
# * +append+ - String, Html
|
25
|
-
# * +prepend+ - String, Html
|
26
|
-
# * +connect+ - Hash
|
27
|
-
# * +event+ - String
|
28
|
-
# * +mode+ - String
|
29
|
-
# * +target+ - Hash
|
30
|
-
# * +selector+ - String
|
31
|
-
# * +data+ - Array
|
32
|
-
# * +url+ - String
|
33
|
-
#
|
34
|
-
# ==== Signatures
|
35
|
-
#
|
36
|
-
# UiBibz::Ui::Core::Forms::Selects::MultiSelectField.new(content, options = {}, html_options = {}).render
|
37
|
-
#
|
38
|
-
# UiBibz::Ui::Core::Forms::Selects::MultiSelectField.new(options = {}, html_options = {}) do
|
39
|
-
# content
|
40
|
-
# end.render
|
41
|
-
#
|
42
|
-
# ==== Examples
|
43
|
-
#
|
44
|
-
# UiBibz::Ui::Core::Forms::Selects::MultiSelectField.new('fruits', { option_tags: list_of_fruits, searchable: true }, { class: 'test' })
|
45
|
-
#
|
46
|
-
# UiBibz::Ui::Core::Forms::Selects::MultiSelectField.new({ option_tags: list_of_fruits, select_all_option: true }, { class: 'test' }) do
|
47
|
-
# 'fruits'
|
48
|
-
# end
|
49
|
-
#
|
50
|
-
# ==== Helper
|
51
|
-
#
|
52
|
-
# multi_select_field(content, options = {}, html_options = {})
|
53
|
-
#
|
54
|
-
class MultiSelectField < UiBibz::Ui::Core::Forms::Selects::AbstractSelect
|
55
|
-
# See UiBibz::Ui::Core::Forms::Buttons::Button.initialize
|
56
|
-
def initialize(content = nil, options = nil, html_options = nil, &block)
|
57
|
-
super
|
58
|
-
end
|
59
|
-
|
60
|
-
private
|
61
|
-
|
62
|
-
def component_html_options
|
63
|
-
super.merge({
|
64
|
-
multiple: true,
|
65
|
-
disabled: options[:state] == :disabled,
|
66
|
-
include_blank: false,
|
67
|
-
prompt: false
|
68
|
-
})
|
69
|
-
end
|
70
|
-
|
71
|
-
def component_html_classes
|
72
|
-
super << [size, type, status, button_outline, 'multi-select-field']
|
73
|
-
end
|
74
|
-
|
75
|
-
def component_html_data
|
76
|
-
super
|
77
|
-
clickable_opt_group
|
78
|
-
collapsible_opt_group
|
79
|
-
searchable
|
80
|
-
select_all_options
|
81
|
-
number_displayed
|
82
|
-
end
|
83
|
-
|
84
|
-
def clickable_opt_group
|
85
|
-
add_html_data('enable_clickable_opt_groups') if options[:clickable_opt_group]
|
86
|
-
end
|
87
|
-
|
88
|
-
def collapsible_opt_group
|
89
|
-
add_html_data('enable_collapsible_opt_groups') if options[:collapsible_opt_group]
|
90
|
-
end
|
91
|
-
|
92
|
-
def searchable
|
93
|
-
add_html_data('enable_filtering') if options[:searchable]
|
94
|
-
end
|
95
|
-
|
96
|
-
def number_displayed
|
97
|
-
add_html_data('number_displayed') if options[:number_displayed]
|
98
|
-
end
|
99
|
-
|
100
|
-
def select_all_options
|
101
|
-
add_html_data('include_select_all_option') if options[:select_all_options]
|
102
|
-
end
|
103
|
-
|
104
|
-
def status
|
105
|
-
options[:status].nil? ? 'btn-secondary' : "btn-#{options[:status]}"
|
106
|
-
end
|
107
|
-
|
108
|
-
def type
|
109
|
-
'btn-block' if options[:type] == :block
|
110
|
-
end
|
111
|
-
|
112
|
-
# :lg, :sm or :xs
|
113
|
-
def size
|
114
|
-
"btn-#{options[:size]}" if options[:size]
|
115
|
-
end
|
116
|
-
|
117
|
-
def button_outline
|
118
|
-
['btn', outline, @status || :secondary].compact.join('-')
|
119
|
-
end
|
120
|
-
|
121
|
-
def outline
|
122
|
-
'outline' if @options[:outline]
|
123
|
-
end
|
124
|
-
end
|
125
|
-
end
|
@@ -1,101 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'ui_bibz/ui/core/icons/components/glyph_text'
|
4
|
-
require 'ui_bibz/ui/core/icons/components/glyph_counter'
|
5
|
-
module UiBibz::Ui::Core::Icons
|
6
|
-
# Create a glyph group
|
7
|
-
#
|
8
|
-
# This element is an extend of UiBibz::Ui::Core::Component.
|
9
|
-
#
|
10
|
-
# ==== Attributes
|
11
|
-
#
|
12
|
-
# * +content+ - Content of element
|
13
|
-
# * +options+ - Options of element
|
14
|
-
# * +html_options+ - Html Options of element
|
15
|
-
#
|
16
|
-
# ==== Options
|
17
|
-
#
|
18
|
-
# You can add HTML attributes using the +html_options+.
|
19
|
-
# You can pass arguments in options attribute:
|
20
|
-
# * +name+ - String
|
21
|
-
# * +size+ - Integer
|
22
|
-
# * +type+ - Symbol
|
23
|
-
# * +text+ - String
|
24
|
-
# * +status+ - Symbol
|
25
|
-
# (+:secondary+, +:primary+, +:info+, +:warning+, +:danger+)
|
26
|
-
#
|
27
|
-
# ==== Signatures
|
28
|
-
#
|
29
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new content = nil, options = nil, html_options = nil,
|
30
|
-
# &block
|
31
|
-
#
|
32
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new(options = nil, html_options = nil) do
|
33
|
-
# content
|
34
|
-
# end
|
35
|
-
#
|
36
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new content = {}
|
37
|
-
#
|
38
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new content, options = {}, html_options = {}
|
39
|
-
#
|
40
|
-
# ==== Exemples
|
41
|
-
#
|
42
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new('eye').render
|
43
|
-
#
|
44
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new() do
|
45
|
-
# name
|
46
|
-
# end.render
|
47
|
-
#
|
48
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new('eye', { size: 3, type: 'fw' }).render
|
49
|
-
#
|
50
|
-
# UiBibz::Ui::Core::Icons::GlyphGroup.new({ name: 'eye', size: 3, type: 'fw' }).render
|
51
|
-
#
|
52
|
-
# ==== Helper
|
53
|
-
#
|
54
|
-
# glyph(options = {})
|
55
|
-
#
|
56
|
-
# glyph(name, options = {}, html_options = {})
|
57
|
-
#
|
58
|
-
# glyph(options = {}, html_options = {}) do
|
59
|
-
# name
|
60
|
-
# end
|
61
|
-
class GlyphGroup < UiBibz::Ui::Core::Component
|
62
|
-
# See UiBibz::Ui::Core::Component.initialize
|
63
|
-
def initialize(content, options = nil, html_options = nil, &block)
|
64
|
-
super
|
65
|
-
@items = []
|
66
|
-
end
|
67
|
-
|
68
|
-
# Render html tag
|
69
|
-
def pre_render
|
70
|
-
content_tag :span, @items.join.html_safe, html_options
|
71
|
-
end
|
72
|
-
|
73
|
-
def glyph(content = nil, options = {}, html_options = nil, &block)
|
74
|
-
@items << UiBibz::Ui::Core::Icons::Glyph.new(content, options, html_options, &block).render
|
75
|
-
end
|
76
|
-
|
77
|
-
def text(content = nil, options = {}, html_options = nil, &block)
|
78
|
-
@items << UiBibz::Ui::Core::Icons::Components::GlyphText.new(content, options, html_options, &block).render
|
79
|
-
end
|
80
|
-
|
81
|
-
def counter(content = nil, options = {}, html_options = nil, &block)
|
82
|
-
@items << UiBibz::Ui::Core::Icons::Components::GlyphCounter.new(content, options, html_options, &block).render
|
83
|
-
end
|
84
|
-
|
85
|
-
private
|
86
|
-
|
87
|
-
def component_html_classes
|
88
|
-
super << ['fa-layers', 'fa-fw', size]
|
89
|
-
end
|
90
|
-
|
91
|
-
def size
|
92
|
-
return unless options[:size]
|
93
|
-
|
94
|
-
if options[:size].is_a?(Integer)
|
95
|
-
"fa-#{options[:size]}x"
|
96
|
-
else
|
97
|
-
"fa-#{options[:size]}"
|
98
|
-
end
|
99
|
-
end
|
100
|
-
end
|
101
|
-
end
|
data/test/dummy/bin/bundle
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
|
5
|
-
class TextFieldTest < ActionView::TestCase
|
6
|
-
test 'file_field' do
|
7
|
-
actual = UiBibz::Ui::Core::Forms::Files::FileField.new('test').render
|
8
|
-
expected = '<div class="custom-file"><input type="file" name="test" id="test" class="custom-file-input" /><label class="custom-file-label" for="test"></label></div>'
|
9
|
-
|
10
|
-
assert_equal expected, actual
|
11
|
-
end
|
12
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
|
5
|
-
class DropdownSelectFieldTest < ActionView::TestCase
|
6
|
-
test 'dropdown_select_field' do
|
7
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
8
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', options_tags: options).render
|
9
|
-
expected = '<select name="test" id="test" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
10
|
-
|
11
|
-
assert_equal expected, actual
|
12
|
-
end
|
13
|
-
|
14
|
-
test 'dropdown_select_field searchable' do
|
15
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
16
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, searchable: true }).render
|
17
|
-
expected = '<select name="test" id="test" data-live-search="true" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
18
|
-
|
19
|
-
assert_equal expected, actual
|
20
|
-
end
|
21
|
-
|
22
|
-
test 'dropdown_select_field max_options' do
|
23
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
24
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, max_options: 2 }).render
|
25
|
-
expected = '<select name="test" id="test" data-max-options="2" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
26
|
-
|
27
|
-
assert_equal expected, actual
|
28
|
-
end
|
29
|
-
|
30
|
-
test 'dropdown_select_field selected_text_format' do
|
31
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
32
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, selected_text_format: 'count > x' }).render
|
33
|
-
expected = '<select name="test" id="test" data-selected-text-format="count > x" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
34
|
-
|
35
|
-
assert_equal expected, actual
|
36
|
-
end
|
37
|
-
|
38
|
-
test 'dropdown_select_field menu_size' do
|
39
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
40
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, menu_size: 2 }).render
|
41
|
-
expected = '<select name="test" id="test" data-size="2" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
42
|
-
|
43
|
-
assert_equal expected, actual
|
44
|
-
end
|
45
|
-
|
46
|
-
test 'dropdown_select_field actions_box' do
|
47
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
48
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, actions_box: true }).render
|
49
|
-
expected = '<select name="test" id="test" data-style="btn-secondary" data-actions-box="true" class="dropdown-select-field"></select>'
|
50
|
-
|
51
|
-
assert_equal expected, actual
|
52
|
-
end
|
53
|
-
|
54
|
-
test 'dropdown_select_field show_tick' do
|
55
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
56
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, show_tick: true }).render
|
57
|
-
expected = '<select name="test" id="test" data-style="btn-secondary" class="dropdown-select-field show-tick"></select>'
|
58
|
-
|
59
|
-
assert_equal expected, actual
|
60
|
-
end
|
61
|
-
|
62
|
-
test 'dropdown_select_field show_menu_arrow' do
|
63
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
64
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, show_menu_arrow: true }).render
|
65
|
-
expected = '<select name="test" id="test" data-style="btn-secondary" class="dropdown-select-field"></select>'
|
66
|
-
|
67
|
-
assert_equal expected, actual
|
68
|
-
end
|
69
|
-
|
70
|
-
test 'dropdown_select_field dropup' do
|
71
|
-
options = options_for_select(2.times.map { |i| "option #{i}" })
|
72
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { options_tags: options, dropup: true }).render
|
73
|
-
expected = '<select name="test" id="test" data-style="btn-secondary" class="dropdown-select-field dropup"></select>'
|
74
|
-
|
75
|
-
assert_equal expected, actual
|
76
|
-
end
|
77
|
-
|
78
|
-
test 'dropdown_select_field refresh' do
|
79
|
-
actual = UiBibz::Ui::Core::Forms::Selects::DropdownSelectField.new('test', { refresh: { mode: 'local', target: { data: [] } } }).render
|
80
|
-
expected = '<div class="field-refresh input-group ui_surround_field"><select name="test" id="test" data-style="btn-secondary" class="dropdown-select-field"></select><div class="input-group-btn"><span data-connect="{"events":"click","mode":"local","target":{"selector":"#test","url":"","data":[]}}" class="btn-secondary ui-bibz-connect btn input-refresh-button"><i class="glyph fas fa-sync-alt"></i> </span></div></div>'
|
81
|
-
|
82
|
-
assert_equal expected, actual
|
83
|
-
end
|
84
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'test_helper'
|
4
|
-
|
5
|
-
class GlyphGroupTest < ActionView::TestCase
|
6
|
-
include UiBibz::Helpers::Ui::CoreHelper
|
7
|
-
|
8
|
-
test 'create glyph group' do
|
9
|
-
actual = ui_glyph_group do |gg|
|
10
|
-
gg.glyph 'bookmark'
|
11
|
-
gg.glyph 'heart', inverse: true, transform: 'shrink-10 up-2'
|
12
|
-
end
|
13
|
-
|
14
|
-
expected = '<span class="fa-layers fa-fw"><i class="glyph fas fa-bookmark"></i><i data-fa-transform="shrink-10 up-2" class="glyph fas fa-heart fa-inverse"></i></span>'
|
15
|
-
assert_equal expected, actual
|
16
|
-
end
|
17
|
-
|
18
|
-
test 'create glyph group with text' do
|
19
|
-
actual = ui_glyph_group do |gg|
|
20
|
-
gg.glyph 'certificate'
|
21
|
-
gg.text 'new', inverse: true, transform: 'shrink-11.5 rotate--30'
|
22
|
-
end
|
23
|
-
|
24
|
-
expected = '<span class="fa-layers fa-fw"><i class="glyph fas fa-certificate"></i><span data-fa-transform="shrink-11.5 rotate--30" class="fa-layers-text fa-inverse">new</span></span>'
|
25
|
-
assert_equal expected, actual
|
26
|
-
end
|
27
|
-
|
28
|
-
test 'create glyph group with counter' do
|
29
|
-
actual = ui_glyph_group do |gg|
|
30
|
-
gg.glyph 'envelope'
|
31
|
-
gg.counter '1419', position: 'top-right'
|
32
|
-
end
|
33
|
-
|
34
|
-
expected = '<span class="fa-layers fa-fw"><i class="glyph fas fa-envelope"></i><span class="fa-layers-counter fa-layers-top-right">1419</span></span>'
|
35
|
-
assert_equal expected, actual
|
36
|
-
end
|
37
|
-
end
|