ui_bibz 3.0.0.beta10 → 3.0.0.beta15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/Gemfile.lock +55 -55
- data/lib/ui_bibz.rb +2 -0
- data/lib/ui_bibz/infos.rb +2 -2
- data/lib/ui_bibz/inputs/ui_bibz_form/ui_bibz_form_builder.rb +8 -11
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_radio_field_input.rb +2 -13
- data/lib/ui_bibz/inputs/ui_bibz_inputs/ui_switch_field_input.rb +1 -13
- data/lib/ui_bibz/rails/engine.rb +2 -2
- data/lib/ui_bibz/ui/concerns/navigation_concern.rb +12 -0
- data/lib/ui_bibz/ui/concerns/notification_concern.rb +13 -0
- data/lib/ui_bibz/ui/core/component.rb +4 -0
- data/lib/ui_bibz/ui/core/forms/choices/checkbox_field.rb +28 -17
- data/lib/ui_bibz/ui/core/forms/choices/components/choice.rb +10 -4
- data/lib/ui_bibz/ui/core/forms/choices/radio_field.rb +5 -33
- data/lib/ui_bibz/ui/core/forms/choices/switch_field.rb +2 -2
- data/lib/ui_bibz/ui/core/navigations/nav.rb +1 -5
- data/lib/ui_bibz/ui/core/navigations/navbar.rb +1 -5
- data/lib/ui_bibz/ui/core/notifications/popover.rb +2 -6
- data/lib/ui_bibz/ui/core/notifications/tooltip.rb +2 -6
- data/lib/ui_bibz/ui/ux/tables/components/store.rb +3 -0
- data/lib/ui_bibz/ui/ux/tables/extensions/paginable.rb +0 -3
- data/lib/ui_bibz/ui/ux/tables/table_pagination.rb +0 -3
- data/lib/ui_bibz/ui/ux/tables/table_pagination_per_page.rb +0 -3
- data/test/simple_form_test.rb +48 -29
- data/test/ui/core/forms/choices/checkbox_field_test.rb +7 -0
- data/test/ui/core/forms/choices/choice_group_test.rb +3 -3
- data/test/ui/core/forms/choices/radio_field_test.rb +7 -0
- data/test/ui/core/forms/surrounds/surround_field_test.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a24ee2f7f963d13b2f79652d8e02c196072e3d674c1f528a92b121598f6ccd08
|
4
|
+
data.tar.gz: 9dd65d798d69e14c08de9c5e2fd6c198e0df7def2fe06e22341124f1a96e2d05
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f634662ead3cda0d2d6898352f9634666c3282d3e066a18eed7c76e3dd03b955b7cc465955584140d81a3d73e38f443fd537756f684d9d01e1831d6dc6cc90e0
|
7
|
+
data.tar.gz: 2d7b682c66482d611ec5ac47751027529caa59b5672bab233e9c413b0e3c45e82ec69c471330aae1a05002ea41aa353fd35de33e5677aa41b8ff3e70bf91e42b
|
data/.github/workflows/ci.yml
CHANGED
@@ -23,6 +23,6 @@ jobs:
|
|
23
23
|
- name: Test with Rake
|
24
24
|
uses: paambaati/codeclimate-action@v2.7.5
|
25
25
|
env:
|
26
|
-
CC_TEST_REPORTER_ID:
|
26
|
+
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
27
27
|
with:
|
28
28
|
coverageCommand: bundle exec rake
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ui_bibz (3.0.0.
|
4
|
+
ui_bibz (3.0.0.beta15)
|
5
5
|
will-paginate-i18n
|
6
6
|
will_paginate (~> 3.3.0)
|
7
7
|
will_paginate-bootstrap4
|
@@ -9,56 +9,56 @@ PATH
|
|
9
9
|
GEM
|
10
10
|
remote: https://rubygems.org/
|
11
11
|
specs:
|
12
|
-
actioncable (6.0.3.
|
13
|
-
actionpack (= 6.0.3.
|
12
|
+
actioncable (6.0.3.5)
|
13
|
+
actionpack (= 6.0.3.5)
|
14
14
|
nio4r (~> 2.0)
|
15
15
|
websocket-driver (>= 0.6.1)
|
16
|
-
actionmailbox (6.0.3.
|
17
|
-
actionpack (= 6.0.3.
|
18
|
-
activejob (= 6.0.3.
|
19
|
-
activerecord (= 6.0.3.
|
20
|
-
activestorage (= 6.0.3.
|
21
|
-
activesupport (= 6.0.3.
|
16
|
+
actionmailbox (6.0.3.5)
|
17
|
+
actionpack (= 6.0.3.5)
|
18
|
+
activejob (= 6.0.3.5)
|
19
|
+
activerecord (= 6.0.3.5)
|
20
|
+
activestorage (= 6.0.3.5)
|
21
|
+
activesupport (= 6.0.3.5)
|
22
22
|
mail (>= 2.7.1)
|
23
|
-
actionmailer (6.0.3.
|
24
|
-
actionpack (= 6.0.3.
|
25
|
-
actionview (= 6.0.3.
|
26
|
-
activejob (= 6.0.3.
|
23
|
+
actionmailer (6.0.3.5)
|
24
|
+
actionpack (= 6.0.3.5)
|
25
|
+
actionview (= 6.0.3.5)
|
26
|
+
activejob (= 6.0.3.5)
|
27
27
|
mail (~> 2.5, >= 2.5.4)
|
28
28
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (6.0.3.
|
30
|
-
actionview (= 6.0.3.
|
31
|
-
activesupport (= 6.0.3.
|
29
|
+
actionpack (6.0.3.5)
|
30
|
+
actionview (= 6.0.3.5)
|
31
|
+
activesupport (= 6.0.3.5)
|
32
32
|
rack (~> 2.0, >= 2.0.8)
|
33
33
|
rack-test (>= 0.6.3)
|
34
34
|
rails-dom-testing (~> 2.0)
|
35
35
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (6.0.3.
|
37
|
-
actionpack (= 6.0.3.
|
38
|
-
activerecord (= 6.0.3.
|
39
|
-
activestorage (= 6.0.3.
|
40
|
-
activesupport (= 6.0.3.
|
36
|
+
actiontext (6.0.3.5)
|
37
|
+
actionpack (= 6.0.3.5)
|
38
|
+
activerecord (= 6.0.3.5)
|
39
|
+
activestorage (= 6.0.3.5)
|
40
|
+
activesupport (= 6.0.3.5)
|
41
41
|
nokogiri (>= 1.8.5)
|
42
|
-
actionview (6.0.3.
|
43
|
-
activesupport (= 6.0.3.
|
42
|
+
actionview (6.0.3.5)
|
43
|
+
activesupport (= 6.0.3.5)
|
44
44
|
builder (~> 3.1)
|
45
45
|
erubi (~> 1.4)
|
46
46
|
rails-dom-testing (~> 2.0)
|
47
47
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
48
|
-
activejob (6.0.3.
|
49
|
-
activesupport (= 6.0.3.
|
48
|
+
activejob (6.0.3.5)
|
49
|
+
activesupport (= 6.0.3.5)
|
50
50
|
globalid (>= 0.3.6)
|
51
|
-
activemodel (6.0.3.
|
52
|
-
activesupport (= 6.0.3.
|
53
|
-
activerecord (6.0.3.
|
54
|
-
activemodel (= 6.0.3.
|
55
|
-
activesupport (= 6.0.3.
|
56
|
-
activestorage (6.0.3.
|
57
|
-
actionpack (= 6.0.3.
|
58
|
-
activejob (= 6.0.3.
|
59
|
-
activerecord (= 6.0.3.
|
51
|
+
activemodel (6.0.3.5)
|
52
|
+
activesupport (= 6.0.3.5)
|
53
|
+
activerecord (6.0.3.5)
|
54
|
+
activemodel (= 6.0.3.5)
|
55
|
+
activesupport (= 6.0.3.5)
|
56
|
+
activestorage (6.0.3.5)
|
57
|
+
actionpack (= 6.0.3.5)
|
58
|
+
activejob (= 6.0.3.5)
|
59
|
+
activerecord (= 6.0.3.5)
|
60
60
|
marcel (~> 0.3.1)
|
61
|
-
activesupport (6.0.3.
|
61
|
+
activesupport (6.0.3.5)
|
62
62
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
63
63
|
i18n (>= 0.7, < 2)
|
64
64
|
minitest (~> 5.1)
|
@@ -95,7 +95,7 @@ GEM
|
|
95
95
|
haml (>= 4.0, < 6)
|
96
96
|
nokogiri (>= 1.6.0)
|
97
97
|
ruby_parser (~> 3.5)
|
98
|
-
i18n (1.8.
|
98
|
+
i18n (1.8.9)
|
99
99
|
concurrent-ruby (~> 1.0)
|
100
100
|
iniparse (1.5.0)
|
101
101
|
jquery-rails (4.4.0)
|
@@ -128,29 +128,29 @@ GEM
|
|
128
128
|
rack (2.2.3)
|
129
129
|
rack-test (1.1.0)
|
130
130
|
rack (>= 1.0, < 3)
|
131
|
-
rails (6.0.3.
|
132
|
-
actioncable (= 6.0.3.
|
133
|
-
actionmailbox (= 6.0.3.
|
134
|
-
actionmailer (= 6.0.3.
|
135
|
-
actionpack (= 6.0.3.
|
136
|
-
actiontext (= 6.0.3.
|
137
|
-
actionview (= 6.0.3.
|
138
|
-
activejob (= 6.0.3.
|
139
|
-
activemodel (= 6.0.3.
|
140
|
-
activerecord (= 6.0.3.
|
141
|
-
activestorage (= 6.0.3.
|
142
|
-
activesupport (= 6.0.3.
|
131
|
+
rails (6.0.3.5)
|
132
|
+
actioncable (= 6.0.3.5)
|
133
|
+
actionmailbox (= 6.0.3.5)
|
134
|
+
actionmailer (= 6.0.3.5)
|
135
|
+
actionpack (= 6.0.3.5)
|
136
|
+
actiontext (= 6.0.3.5)
|
137
|
+
actionview (= 6.0.3.5)
|
138
|
+
activejob (= 6.0.3.5)
|
139
|
+
activemodel (= 6.0.3.5)
|
140
|
+
activerecord (= 6.0.3.5)
|
141
|
+
activestorage (= 6.0.3.5)
|
142
|
+
activesupport (= 6.0.3.5)
|
143
143
|
bundler (>= 1.3.0)
|
144
|
-
railties (= 6.0.3.
|
144
|
+
railties (= 6.0.3.5)
|
145
145
|
sprockets-rails (>= 2.0.0)
|
146
146
|
rails-dom-testing (2.0.3)
|
147
147
|
activesupport (>= 4.2.0)
|
148
148
|
nokogiri (>= 1.6)
|
149
149
|
rails-html-sanitizer (1.3.0)
|
150
150
|
loofah (~> 2.3)
|
151
|
-
railties (6.0.3.
|
152
|
-
actionpack (= 6.0.3.
|
153
|
-
activesupport (= 6.0.3.
|
151
|
+
railties (6.0.3.5)
|
152
|
+
actionpack (= 6.0.3.5)
|
153
|
+
activesupport (= 6.0.3.5)
|
154
154
|
method_source
|
155
155
|
rake (>= 0.8.7)
|
156
156
|
thor (>= 0.20.3, < 2.0)
|
@@ -182,9 +182,9 @@ GEM
|
|
182
182
|
ruby_parser (3.15.1)
|
183
183
|
sexp_processor (~> 4.9)
|
184
184
|
sexp_processor (4.15.2)
|
185
|
-
simple_form (5.0
|
186
|
-
actionpack (>= 5.
|
187
|
-
activemodel (>= 5.
|
185
|
+
simple_form (5.1.0)
|
186
|
+
actionpack (>= 5.2)
|
187
|
+
activemodel (>= 5.2)
|
188
188
|
simplecov (0.21.2)
|
189
189
|
docile (~> 1.1)
|
190
190
|
simplecov-html (~> 0.11)
|
data/lib/ui_bibz.rb
CHANGED
@@ -78,6 +78,8 @@ module UiBibz
|
|
78
78
|
module Concerns
|
79
79
|
autoload :HtmlConcern, 'ui_bibz/ui/concerns/html_concern'
|
80
80
|
autoload :CardItemableConcern, 'ui_bibz/ui/concerns/card_itemable_concern'
|
81
|
+
autoload :NavigationConcern, 'ui_bibz/ui/concerns/navigation_concern'
|
82
|
+
autoload :NotificationConcern, 'ui_bibz/ui/concerns/notification_concern'
|
81
83
|
end
|
82
84
|
|
83
85
|
# Core
|
data/lib/ui_bibz/infos.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
module UiBibz
|
4
4
|
NAME = 'Ui Bibz'
|
5
5
|
SLUG = 'ui_bibz'
|
6
|
-
BOOTSTRAP_VERSION = '5.0.0.
|
6
|
+
BOOTSTRAP_VERSION = '5.0.0.beta2'
|
7
7
|
DESCRIPTION = "A Rails Interface Framework using Bootstrap #{BOOTSTRAP_VERSION}."
|
8
8
|
SUMMARY = "Ui Bibz is an Ui Framework that allows you to build an interface very quickly and simply using Bootstrap #{BOOTSTRAP_VERSION}."
|
9
9
|
LICENSE = 'MIT'
|
@@ -12,6 +12,6 @@ module UiBibz
|
|
12
12
|
REPO = 'git+https://github.com/thooams/ui_bibz.git'
|
13
13
|
EMAIL = 'thomas@hummel.link'
|
14
14
|
AUTHOR = 'Thooams [Thomas HUMMEL]'
|
15
|
-
VERSION = '3.0.0.
|
15
|
+
VERSION = '3.0.0.beta15'
|
16
16
|
AUTHORS = ['Thooams'].freeze
|
17
17
|
end
|
@@ -32,19 +32,16 @@ module UiBibzForm
|
|
32
32
|
end
|
33
33
|
|
34
34
|
def ui_button_group(content = nil, opts = nil, html_options = nil, &block)
|
35
|
-
|
36
|
-
content = content.merge(template: @template, form: self)
|
37
|
-
|
38
|
-
input_classes = UiBibz::Utils::Screwdriver.join_classes('button_group', options[:input_html].try(:[], :class))
|
39
|
-
wrapper_html = (options[:input_html] || {}).merge({ class: input_classes })
|
40
|
-
|
41
|
-
content_tag :div, wrapper_html do
|
42
|
-
concat content_tag(:label, content[:label]) unless content[:label].nil?
|
43
|
-
concat UiBibz::Ui::Core::Forms::Buttons::ButtonGroup.new(content, opts, html_options).tap(&block).render
|
44
|
-
end
|
35
|
+
ui_component_group_by(UiBibz::Ui::Core::Forms::Buttons::ButtonGroup, content, opts, html_options, &block)
|
45
36
|
end
|
46
37
|
|
47
38
|
def ui_choice_group(content = nil, opts = nil, html_options = nil, &block)
|
39
|
+
ui_component_group_by(UiBibz::Ui::Core::Forms::Choices::ChoiceGroup, content, opts, html_options, &block)
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def ui_component_group_by(component_class, content = nil, opts = nil, html_options = nil, &block)
|
48
45
|
content = (options || {}).merge(content || {})
|
49
46
|
content = content.merge(template: @template, form: self)
|
50
47
|
|
@@ -53,7 +50,7 @@ module UiBibzForm
|
|
53
50
|
|
54
51
|
content_tag :div, wrapper_html do
|
55
52
|
concat content_tag(:label, content[:label]) unless content[:label].nil?
|
56
|
-
concat
|
53
|
+
concat component_class.new(content, opts, html_options).tap(&block).render
|
57
54
|
end
|
58
55
|
end
|
59
56
|
end
|
@@ -1,20 +1,9 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module UiBibzInputs
|
4
|
-
class UiRadioFieldInput <
|
5
|
-
include UiBibz::Ui::Core::Forms::Choices
|
6
|
-
|
4
|
+
class UiRadioFieldInput < UiCheckboxFieldInput
|
7
5
|
def input(_wrapper_options)
|
8
|
-
|
9
|
-
options[:item_wrapper_tag] = :div
|
10
|
-
options[:item_wrapper_class] = i.html_options[:class]
|
11
|
-
|
12
|
-
label_method, value_method = detect_collection_methods
|
13
|
-
|
14
|
-
@builder.send(:collection_radio_buttons,
|
15
|
-
attribute_name, collection, value_method, label_method,
|
16
|
-
input_options, i.html_options,
|
17
|
-
&collection_block_for_nested_boolean_style)
|
6
|
+
UiBibz::Ui::Core::Forms::Choices::RadioField.new(input_attribute_name, new_options, input_html_options).render
|
18
7
|
end
|
19
8
|
end
|
20
9
|
end
|
@@ -1,23 +1,11 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module UiBibzInputs
|
4
|
-
class UiSwitchFieldInput <
|
4
|
+
class UiSwitchFieldInput < UiCheckboxFieldInput
|
5
5
|
include UiBibz::Ui::Core::Forms::Choices
|
6
6
|
|
7
7
|
def input(_wrapper_options)
|
8
8
|
UiBibz::Ui::Core::Forms::Choices::SwitchField.new(input_attribute_name, new_options, new_input_html_options).render
|
9
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: attribute_name.to_s.titleize })
|
21
|
-
end
|
22
10
|
end
|
23
11
|
end
|
data/lib/ui_bibz/rails/engine.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# to load pagination in rails app
|
4
|
-
require 'will_paginate' if
|
5
|
-
require 'simple_form' if
|
4
|
+
require 'will_paginate' if Gem.loaded_specs.key?('will_paginate')
|
5
|
+
require 'simple_form' if Gem.loaded_specs.key?('simple_form')
|
6
6
|
|
7
7
|
module UiBibz
|
8
8
|
module Rails
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Concerns::NavigationConcern #:nodoc:
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
|
6
|
+
included do
|
7
|
+
def spacer(num = 'auto')
|
8
|
+
kls = " me-#{num}"
|
9
|
+
@items.last.html_options[:class].nil? ? @items.last.html_options[:class] = kls : @items.last.html_options[:class] << kls
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module UiBibz::Ui::Concerns::NotificationConcern #:nodoc:
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
|
6
|
+
included do
|
7
|
+
def data_attributes
|
8
|
+
self.class.const_get('DATA_ATTRIBUTES').map do |data_attribute|
|
9
|
+
options[data_attribute].to_s.blank? ? nil : { "data-bs-#{data_attribute}" => data_attribute_value(data_attribute) }
|
10
|
+
end.compact.reduce(&:merge) || {}
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -122,6 +122,10 @@ module UiBibz::Ui::Core
|
|
122
122
|
# To turbolinks
|
123
123
|
data_turbolinks = html_options.try(:[], :data).try(:[], :turbolinks) || options.try(:delete, :turbolinks)
|
124
124
|
add_html_data(:turbolinks, value: data_turbolinks) unless data_turbolinks.nil?
|
125
|
+
|
126
|
+
# To Turbo
|
127
|
+
data_turbo = html_options.try(:[], :data).try(:[], :turbo) || options.try(:delete, :turbo)
|
128
|
+
add_html_data(:turbo, value: data_turbo) unless data_turbo.nil?
|
125
129
|
end
|
126
130
|
|
127
131
|
# Override this method to add html Options
|
@@ -22,6 +22,8 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
22
22
|
# * +action+ - String Stimulus Option
|
23
23
|
# * +label+ - [String/Boolean]
|
24
24
|
# * +boolean+ - Boolean Add an hidden field for rails
|
25
|
+
# * +wrapper_html+: - Hash html_options for the wrapper
|
26
|
+
# * +label_html+: - Hash html_options for the label
|
25
27
|
#
|
26
28
|
# ==== Signatures
|
27
29
|
#
|
@@ -52,30 +54,35 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
52
54
|
|
53
55
|
# Render html tag
|
54
56
|
def pre_render
|
55
|
-
|
57
|
+
content_tag :div, wrapper_html_options do
|
58
|
+
concat hidden_field_tag(content, '0', id: "#{content}-hidden") if options[:boolean]
|
59
|
+
concat check_box_tag(content, options[:value] || '1', options[:checked] || html_options[:checked], checkbox_html_options)
|
60
|
+
concat label_tag(label_name, label_content, label_html_options) if options[:label] != false
|
61
|
+
end
|
56
62
|
end
|
57
63
|
|
58
64
|
private
|
59
65
|
|
60
|
-
def
|
61
|
-
|
62
|
-
|
63
|
-
concat check_box_tag content, options[:value] || '1', options[:checked] || html_options[:checked], checkbox_html_options
|
64
|
-
concat label_tag(label_name, label_content, class: 'form-check-label') if options[:label] != false
|
66
|
+
def wrapper_html_options
|
67
|
+
(options[:wrapper_html] || {}).tap do |option|
|
68
|
+
option[:class] = UiBibz::Utils::Screwdriver.join_classes(wrapper_classes, inline, options[:wrapper_html].try(:[], :class))
|
65
69
|
end
|
66
70
|
end
|
67
71
|
|
68
|
-
def
|
69
|
-
{
|
70
|
-
|
71
|
-
indeterminate: options[:indeterminate],
|
72
|
-
"data-action": options[:action],
|
73
|
-
class: UiBibz::Utils::Screwdriver.join_classes('form-check-input', input_status)
|
74
|
-
}.tap do |html|
|
75
|
-
html[:id] = html_options[:id] if html_options[:id]
|
72
|
+
def label_html_options
|
73
|
+
(options[:label_html] || {}).tap do |option|
|
74
|
+
option[:class] = UiBibz::Utils::Screwdriver.join_classes(label_classes, options[:label_html].try(:[], :class))
|
76
75
|
end
|
77
76
|
end
|
78
77
|
|
78
|
+
def checkbox_html_options
|
79
|
+
html_options.merge({
|
80
|
+
disabled: disabled?,
|
81
|
+
checked: html_options[:checked] || options[:state] == :active,
|
82
|
+
indeterminate: options[:indeterminate]
|
83
|
+
})
|
84
|
+
end
|
85
|
+
|
79
86
|
def label_name
|
80
87
|
html_options[:id] || content
|
81
88
|
end
|
@@ -92,7 +99,7 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
92
99
|
end
|
93
100
|
|
94
101
|
def component_html_classes
|
95
|
-
super <<
|
102
|
+
super << ['form-check-input', input_status]
|
96
103
|
end
|
97
104
|
|
98
105
|
def input_status
|
@@ -105,8 +112,12 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
105
112
|
'form-check-inline' if options[:inline]
|
106
113
|
end
|
107
114
|
|
108
|
-
def
|
109
|
-
|
115
|
+
def wrapper_classes
|
116
|
+
'form-check'
|
117
|
+
end
|
118
|
+
|
119
|
+
def label_classes
|
120
|
+
'form-check-label'
|
110
121
|
end
|
111
122
|
end
|
112
123
|
end
|
@@ -82,10 +82,14 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
82
82
|
if options[:label]
|
83
83
|
content_tag :label, options[:label], html_options.merge(for: input_id)
|
84
84
|
else
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
85
|
+
generated_label
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def generated_label
|
90
|
+
content_tag :label, html_options.merge(for: input_id) do
|
91
|
+
concat glyph_and_content_html(options[:text].nil? ? @content : ' ')
|
92
|
+
concat badge_html unless options[:badge].nil?
|
89
93
|
end
|
90
94
|
end
|
91
95
|
|
@@ -116,5 +120,7 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
116
120
|
def input_id
|
117
121
|
@input_id ||= @options[:id] || generate_id('choice')
|
118
122
|
end
|
123
|
+
|
124
|
+
def state; end
|
119
125
|
end
|
120
126
|
end
|
@@ -21,6 +21,8 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
21
21
|
# * +inline+ - Boolean
|
22
22
|
# * +action+ - String Stimulus Option
|
23
23
|
# * +label+ - String
|
24
|
+
# * +wrapper_html+: - Hash html_options for the wrapper
|
25
|
+
# * +label_html+: - Hash html_options for the label
|
24
26
|
#
|
25
27
|
# ==== Signatures
|
26
28
|
#
|
@@ -51,46 +53,16 @@ module UiBibz::Ui::Core::Forms::Choices
|
|
51
53
|
|
52
54
|
# Render html tag
|
53
55
|
def pre_render
|
54
|
-
|
55
|
-
end
|
56
|
-
|
57
|
-
private
|
58
|
-
|
59
|
-
def radio_field_html_tag
|
60
|
-
content_tag :div, html_options.except(:id) do
|
56
|
+
content_tag :div, wrapper_html_options do
|
61
57
|
concat radio_button_tag content, options[:value], options[:checked] || false, checkbox_html_options
|
62
58
|
concat label_tag(label_name, label_content, class: 'form-check-label') if options[:label] != false
|
63
59
|
end
|
64
60
|
end
|
65
61
|
|
66
|
-
|
67
|
-
{
|
68
|
-
disabled: options[:state] == :disabled,
|
69
|
-
"data-action": options[:action],
|
70
|
-
class: UiBibz::Utils::Screwdriver.join_classes('form-check-input', input_status)
|
71
|
-
}
|
72
|
-
end
|
62
|
+
private
|
73
63
|
|
74
64
|
def label_name
|
75
|
-
"#{content}_#{options[:value]}"
|
76
|
-
end
|
77
|
-
|
78
|
-
def component_html_classes
|
79
|
-
super << component_wrapper_html_classes
|
80
|
-
end
|
81
|
-
|
82
|
-
def status; end
|
83
|
-
|
84
|
-
def input_status
|
85
|
-
"form-check-input-#{options[:status]}" if options[:status]
|
86
|
-
end
|
87
|
-
|
88
|
-
def inline
|
89
|
-
'form-check-inline' if options[:inline]
|
90
|
-
end
|
91
|
-
|
92
|
-
def component_wrapper_html_classes
|
93
|
-
['form-check', inline]
|
65
|
+
html_options[:id] || "#{content}_#{options[:value]}"
|
94
66
|
end
|
95
67
|
end
|
96
68
|
end
|
@@ -67,6 +67,7 @@ module UiBibz::Ui::Core::Navigations
|
|
67
67
|
#
|
68
68
|
class Nav < UiBibz::Ui::Core::Component
|
69
69
|
include UiBibz::Ui::Concerns::HtmlConcern
|
70
|
+
include UiBibz::Ui::Concerns::NavigationConcern
|
70
71
|
|
71
72
|
# See UiBibz::Ui::Core::Component.initialize
|
72
73
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
@@ -108,11 +109,6 @@ module UiBibz::Ui::Core::Navigations
|
|
108
109
|
@items << NavDropdown.new(content, options, html_options).tap(&block)
|
109
110
|
end
|
110
111
|
|
111
|
-
def spacer(num = 'auto')
|
112
|
-
kls = " me-#{num}"
|
113
|
-
@items.last.html_options[:class].nil? ? @items.last.html_options[:class] = kls : @items.last.html_options[:class] << kls
|
114
|
-
end
|
115
|
-
|
116
112
|
protected
|
117
113
|
|
118
114
|
def component_html_classes
|
@@ -75,6 +75,7 @@ module UiBibz::Ui::Core::Navigations
|
|
75
75
|
#
|
76
76
|
class Navbar < UiBibz::Ui::Core::Component
|
77
77
|
include UiBibz::Ui::Concerns::HtmlConcern
|
78
|
+
include UiBibz::Ui::Concerns::NavigationConcern
|
78
79
|
|
79
80
|
# See UiBibz::Ui::Core::Component.initialize
|
80
81
|
def initialize(content = nil, options = nil, html_options = nil, &block)
|
@@ -124,11 +125,6 @@ module UiBibz::Ui::Core::Navigations
|
|
124
125
|
@brand = UiBibz::Ui::Core::Navigations::NavbarBrand.new(content, options, html_options, &block).render
|
125
126
|
end
|
126
127
|
|
127
|
-
def spacer(num = 'auto')
|
128
|
-
kls = " me-#{num}"
|
129
|
-
@items.last.html_options[:class].nil? ? @items.last.html_options[:class] = kls : @items.last.html_options[:class] << kls
|
130
|
-
end
|
131
|
-
|
132
128
|
def id
|
133
129
|
@id ||= generate_id('navbar-id')
|
134
130
|
end
|
@@ -47,6 +47,8 @@ module UiBibz::Ui::Core::Notifications
|
|
47
47
|
# ui_glyph("diamond", popover: { title: "My content", position: :right})
|
48
48
|
#
|
49
49
|
class Popover < UiBibz::Ui::Core::Component
|
50
|
+
include UiBibz::Ui::Concerns::NotificationConcern
|
51
|
+
|
50
52
|
# Note that for security reasons the sanitize, sanitizeFn, and allowList
|
51
53
|
# options cannot be supplied using data attributes.
|
52
54
|
# https://getbootstrap.com/docs/5.0/components/popovers/#options
|
@@ -76,12 +78,6 @@ module UiBibz::Ui::Core::Notifications
|
|
76
78
|
end
|
77
79
|
end
|
78
80
|
|
79
|
-
def data_attributes
|
80
|
-
DATA_ATTRIBUTES.map do |data_attribute|
|
81
|
-
options[data_attribute].to_s.blank? ? nil : { "data-bs-#{data_attribute}" => data_attribute_value(data_attribute) }
|
82
|
-
end.compact.reduce(&:merge) || {}
|
83
|
-
end
|
84
|
-
|
85
81
|
def data_attribute_value(data_attribute)
|
86
82
|
options[data_attribute].is_a?(String) ? options[data_attribute].html_safe : options[data_attribute]
|
87
83
|
end
|
@@ -48,6 +48,8 @@ module UiBibz::Ui::Core::Notifications
|
|
48
48
|
# ui_glyph("diamond", tooltip: { title: "My content", position: :right})
|
49
49
|
#
|
50
50
|
class Tooltip < UiBibz::Ui::Core::Component
|
51
|
+
include UiBibz::Ui::Concerns::NotificationConcern
|
52
|
+
|
51
53
|
# Note that for security reasons the sanitize, sanitizeFn, and allowList
|
52
54
|
# options cannot be supplied using data attributes.
|
53
55
|
# https://getbootstrap.com/docs/5.0/components/tooltips/#options
|
@@ -76,12 +78,6 @@ module UiBibz::Ui::Core::Notifications
|
|
76
78
|
end
|
77
79
|
end
|
78
80
|
|
79
|
-
def data_attributes
|
80
|
-
DATA_ATTRIBUTES.map do |data_attribute|
|
81
|
-
options[data_attribute].to_s.blank? ? nil : { "data-bs-#{data_attribute}" => data_attribute_value(data_attribute) }
|
82
|
-
end.compact.reduce(&:merge) || {}
|
83
|
-
end
|
84
|
-
|
85
81
|
def data_attribute_value(data_attribute)
|
86
82
|
options[data_attribute].is_a?(String) ? options[data_attribute].html_safe : options[data_attribute]
|
87
83
|
end
|
@@ -8,6 +8,9 @@ module UiBibz::Ui::Ux::Tables
|
|
8
8
|
|
9
9
|
# Store Use WillPaginate store methods
|
10
10
|
def initialize(store)
|
11
|
+
raise 'Store is nil!' if store.nil?
|
12
|
+
raise 'Store can be created only with "table_search_pagination" method!' if store.try(:records).nil?
|
13
|
+
|
11
14
|
@records = store.records
|
12
15
|
@store = store
|
13
16
|
@model = store.model
|
@@ -26,9 +26,6 @@ module UiBibz::Ui::Ux::Tables
|
|
26
26
|
private
|
27
27
|
|
28
28
|
def store
|
29
|
-
raise 'Store is nil!' if @search_field.options[:store].nil?
|
30
|
-
raise 'Store can be created only with "table_search_pagination" method!' if @search_field.options[:store].try(:records).nil?
|
31
|
-
|
32
29
|
@store ||= Store.new @search_field.options[:store]
|
33
30
|
end
|
34
31
|
end
|
@@ -53,9 +53,6 @@ module UiBibz::Ui::Ux::Tables
|
|
53
53
|
|
54
54
|
# Store must be generated by *table_search_pagination* method
|
55
55
|
def store
|
56
|
-
raise 'Store is nil!' if @pagination.options[:store].nil?
|
57
|
-
raise 'Store can be created only with "table_search_pagination" method!' if @pagination.options[:store].try(:records).nil?
|
58
|
-
|
59
56
|
@store ||= Store.new @pagination.options[:store]
|
60
57
|
end
|
61
58
|
end
|
@@ -46,9 +46,6 @@ module UiBibz::Ui::Ux::Tables
|
|
46
46
|
private
|
47
47
|
|
48
48
|
def store
|
49
|
-
raise 'Store is nil!' if @per_page_field.options[:store].nil?
|
50
|
-
raise 'Store can be created only with "table_search_pagination" method!' if @per_page_field.options[:store].try(:records).nil?
|
51
|
-
|
52
49
|
@store ||= Store.new @per_page_field.options[:store]
|
53
50
|
end
|
54
51
|
|
data/test/simple_form_test.rb
CHANGED
@@ -21,6 +21,16 @@ class SimpleFormTest < ActionView::TestCase
|
|
21
21
|
@user = @users.first
|
22
22
|
end
|
23
23
|
|
24
|
+
test 'simple form input' do
|
25
|
+
actual = simple_form_for @user do |f|
|
26
|
+
f.input :name_fr
|
27
|
+
end
|
28
|
+
|
29
|
+
expected = "<form class=\"simple_form edit_user\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"form-group string optional user_name_fr\"><label class=\"control-label string optional\" for=\"user_name_fr\">Name fr</label><input class=\"form-control string optional\" type=\"text\" value=\"test1\" name=\"user[name_fr]\" id=\"user_name_fr\" /></div></form>"
|
30
|
+
|
31
|
+
assert_equal expected, actual
|
32
|
+
end
|
33
|
+
|
24
34
|
test 'auto complete field input in simple form' do
|
25
35
|
actual = simple_form_for @user do |f|
|
26
36
|
f.input :name_fr, as: :ui_auto_complete_field, collection: @users, label_method: :name_fr
|
@@ -122,10 +132,10 @@ test1</textarea></div></form>"
|
|
122
132
|
|
123
133
|
test 'radio field input in simple form' do
|
124
134
|
actual = simple_form_for @user do |f|
|
125
|
-
f.input :name_fr, as: :ui_radio_field,
|
135
|
+
f.input :name_fr, as: :ui_radio_field, label: 'Radio 1', input_html: { id: "radio_1" }
|
126
136
|
end
|
127
137
|
|
128
|
-
expected = "<form class=\"simple_form edit_user\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"form-group ui_radio_field optional user_name_fr\"><
|
138
|
+
expected = "<form class=\"simple_form edit_user\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"form-group ui_radio_field optional user_name_fr\"><div class=\"form-check\"><input type=\"radio\" name=\"user[name_fr]\" id=\"radio_1\" value=\"test1\" class=\"ui_radio_field optional form-check-input\" /><label class=\"form-check-label\" for=\"radio_1\">Radio 1</label></div></div></form>"
|
129
139
|
|
130
140
|
assert_equal expected, actual
|
131
141
|
end
|
@@ -227,31 +237,40 @@ test1</textarea></div></form>"
|
|
227
237
|
assert_equal expected, actual
|
228
238
|
end
|
229
239
|
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
240
|
+
test 'ui_button_group' do
|
241
|
+
actual = ui_form_for @user do |f|
|
242
|
+
f.ui_button_group do |bg|
|
243
|
+
bg.button "test"
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
expected = "<form class=\"simple_form\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"button_group\"><div class=\"btn-group\" role=\"group\"><button class=\"btn-secondary btn\">test</button></div></div></form>"
|
248
|
+
|
249
|
+
assert_equal expected, actual
|
250
|
+
end
|
251
|
+
|
252
|
+
test 'ui_choice_group' do
|
253
|
+
actual = ui_form_for @user do |f|
|
254
|
+
f.ui_choice_group do |cg|
|
255
|
+
cg.input :name_fr, as: :ui_checkbox_field
|
256
|
+
end
|
257
|
+
end
|
258
|
+
|
259
|
+
expected = "<form class=\"simple_form\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"button_group\"><div data-toggle=\"buttons\" class=\"btn-group button-choice btn-group-toggle\"><div class=\"form-check\"><input type=\"checkbox\" name=\"user[name_fr]\" id=\"user_name_fr\" value=\"test1\" class=\"ui_checkbox_field optional form-check-input\" checked=\"checked\" /><label class=\"form-check-label\" for=\"user_name_fr\">Name Fr</label></div></div></div></form>"
|
260
|
+
|
261
|
+
assert_equal expected, actual
|
262
|
+
end
|
263
|
+
|
264
|
+
test 'test surround field into simple form' do
|
265
|
+
actual = ui_form_for @user do |f|
|
266
|
+
f.ui_surround_field do |sf|
|
267
|
+
sf.input :name_en, as: :ui_text_field
|
268
|
+
sf.addon("€")
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
expected = "<form class=\"simple_form\" id=\"edit_user_1\" action=\"/users/1\" accept-charset=\"UTF-8\" method=\"post\"><input type=\"hidden\" name=\"_method\" value=\"patch\" /><div class=\"form-group surround_field\"><div class=\"input-group ui_surround_field\"><input type=\"text\" name=\"user[name_en]\" id=\"user_name_en\" value=\"test1 en\" class=\"form-control string ui_text_field optional\" /><span class=\"input-group-text\">€</span></div></div></form>"
|
273
|
+
|
274
|
+
assert_equal expected, actual
|
275
|
+
end
|
257
276
|
end
|
@@ -16,4 +16,11 @@ class CheckboxFieldTest < ActionView::TestCase
|
|
16
16
|
|
17
17
|
assert_equal expected, actual
|
18
18
|
end
|
19
|
+
|
20
|
+
test 'checkbox_field with options and html_options' do
|
21
|
+
actual = UiBibz::Ui::Core::Forms::Choices::CheckboxField.new('John', action: 'click->controller#action', label_html: { class: 'test' }, wrapper_html: { title: "My title" }).render
|
22
|
+
expected = "<div title=\"My title\" class=\"form-check\"><input type=\"checkbox\" name=\"John\" id=\"John\" value=\"1\" data-action=\"click->controller#action\" class=\"form-check-input\" /><label class=\"form-check-label test\" for=\"John\">John</label></div>"
|
23
|
+
|
24
|
+
assert_equal expected, actual
|
25
|
+
end
|
19
26
|
end
|
@@ -11,7 +11,7 @@ class ChoiceGroupTest < ActionView::TestCase
|
|
11
11
|
bc.choice 'Checkbox 2', state: :active
|
12
12
|
end
|
13
13
|
|
14
|
-
expected = "<div data-toggle=\"buttons\" class=\"btn-group button-choice btn-group-toggle\"><input type=\"checkbox\" autocomplete=\"off\" class=\"btn-check\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-secondary btn\" for=\"#{actual.items.first.input_options[:id]}\">Checkbox 1</label><input type=\"checkbox\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"
|
14
|
+
expected = "<div data-toggle=\"buttons\" class=\"btn-group button-choice btn-group-toggle\"><input type=\"checkbox\" autocomplete=\"off\" class=\"btn-check\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-secondary btn\" for=\"#{actual.items.first.input_options[:id]}\">Checkbox 1</label><input type=\"checkbox\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"btn-secondary btn\" aria-pressed=\"true\" for=\"#{actual.items.last.input_options[:id]}\">Checkbox 2</label></div>"
|
15
15
|
|
16
16
|
assert_equal expected, actual.render
|
17
17
|
end
|
@@ -22,7 +22,7 @@ class ChoiceGroupTest < ActionView::TestCase
|
|
22
22
|
bc.choice 'Radio 2', state: :active
|
23
23
|
end
|
24
24
|
|
25
|
-
expected = "<div data-toggle=\"buttons\" class=\"btn-group button-choice btn-group-toggle\"><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" name=\"#{actual.items.first.input_options[:name]}\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-secondary btn\" for=\"#{actual.items.first.input_options[:id]}\">Radio 1</label><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" name=\"#{actual.items.last.input_options[:name]}\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"
|
25
|
+
expected = "<div data-toggle=\"buttons\" class=\"btn-group button-choice btn-group-toggle\"><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" name=\"#{actual.items.first.input_options[:name]}\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-secondary btn\" for=\"#{actual.items.first.input_options[:id]}\">Radio 1</label><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" name=\"#{actual.items.last.input_options[:name]}\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"btn-secondary btn\" aria-pressed=\"true\" for=\"#{actual.items.last.input_options[:id]}\">Radio 2</label></div>"
|
26
26
|
|
27
27
|
assert_equal expected, actual.render
|
28
28
|
end
|
@@ -32,7 +32,7 @@ class ChoiceGroupTest < ActionView::TestCase
|
|
32
32
|
bc.choice 'Radio 1', glyph: 'diamond', status: :primary
|
33
33
|
bc.choice 'Radio 2', state: :active
|
34
34
|
end
|
35
|
-
expected = "<div data-toggle=\"buttons\" class=\"btn-group btn-group-lg button-choice btn-group-toggle\"><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" name=\"#{actual.items.first.input_options[:name]}\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-outline-primary btn btn-lg\" for=\"#{actual.items.first.input_options[:id]}\"><i class=\"glyph fas fa-diamond\"></i> Radio 1</label><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" name=\"#{actual.items.last.input_options[:name]}\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"
|
35
|
+
expected = "<div data-toggle=\"buttons\" class=\"btn-group btn-group-lg button-choice btn-group-toggle\"><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" name=\"#{actual.items.first.input_options[:name]}\" id=\"#{actual.items.first.input_options[:id]}\" /><label class=\"btn-outline-primary btn btn-lg\" for=\"#{actual.items.first.input_options[:id]}\"><i class=\"glyph fas fa-diamond\"></i> Radio 1</label><input type=\"radio\" autocomplete=\"off\" class=\"btn-check\" checked=\"checked\" name=\"#{actual.items.last.input_options[:name]}\" id=\"#{actual.items.last.input_options[:id]}\" /><label class=\"btn-outline-secondary btn btn-lg\" aria-pressed=\"true\" for=\"#{actual.items.last.input_options[:id]}\">Radio 2</label></div>"
|
36
36
|
|
37
37
|
assert_equal expected, actual.render
|
38
38
|
end
|
@@ -9,4 +9,11 @@ class RadioFieldTest < ActionView::TestCase
|
|
9
9
|
|
10
10
|
assert_equal expected, actual
|
11
11
|
end
|
12
|
+
|
13
|
+
test 'checkbox_field with options and html_options' do
|
14
|
+
actual = UiBibz::Ui::Core::Forms::Choices::RadioField.new('John', action: 'click->controller#action', label_html: { class: 'test' }, wrapper_html: { title: "My title" }).render
|
15
|
+
expected = "<div title=\"My title\" class=\"form-check\"><input type=\"radio\" name=\"John\" id=\"John_\" data-action=\"click->controller#action\" class=\"form-check-input\" /><label class=\"form-check-label\" for=\"John_\">John</label></div>"
|
16
|
+
|
17
|
+
assert_equal expected, actual
|
18
|
+
end
|
12
19
|
end
|
@@ -87,7 +87,7 @@ class SurroundFieldTest < ActionView::TestCase
|
|
87
87
|
sf.button_refresh
|
88
88
|
end.render
|
89
89
|
|
90
|
-
expected = "<div class=\"input-group ui_surround_field\"><span class=\"input-group-text\"><i class=\"glyph fas fa-gem\"></i></span><span class=\"input-group-text\">test</span><button class=\"btn-secondary btn\">button</button><div class=\"input-group-btn\" role=\"group\"><button class=\"btn-secondary btn\">test</button></div><a class=\"btn-secondary btn\" role=\"button\" href=\"#\">link</a><div class=\"
|
90
|
+
expected = "<div class=\"input-group ui_surround_field\"><span class=\"input-group-text\"><i class=\"glyph fas fa-gem\"></i></span><span class=\"input-group-text\">test</span><button class=\"btn-secondary btn\">button</button><div class=\"input-group-btn\" role=\"group\"><button class=\"btn-secondary btn\">test</button></div><a class=\"btn-secondary btn\" role=\"button\" href=\"#\">link</a><div class=\"form-check\"><input type=\"checkbox\" name=\"check\" id=\"check\" value=\"1\" class=\"form-check-input input-group-text\" label=\"false\" /><label class=\"form-check-label\" for=\"check\">check</label></div><div class=\"form-check\"><input type=\"radio\" name=\"radio\" id=\"radio_\" class=\"form-check-input input-group-text\" label=\"false\" /><label class=\"form-check-label\" for=\"radio_\">radio</label></div><input type=\"text\" name=\"text\" id=\"text\" class=\"form-control\" /><input type=\"text\" name=\"date\" id=\"date\" data-date-locale=\"en\" data-provide=\"datepicker\" data-date-format=\"yyyy-mm-dd\" data-date-today-btn=\"linked\" data-date-toggle-active=\"true\" class=\"date_picker form-control\" /><select name=\"dropdown_select\" id=\"dropdown_select\" data-wrapper-classes=\"input-group-btn\" data-dropdown-classes=\"dropdown\" class=\"btn-secondary multi-select-field\"></select><select name=\"select\" id=\"select\" class=\"select-field form-control form-select\"></select><input type=\"text\" name=\"auto\" id=\"auto\" class=\"form-control auto-complete-field\" autocomplete=\"true\" list=\"auto-datalist\" /><datalist id=\"auto-datalist\"></datalist><span data-connect=\"{"events":"click","mode":"remote","target":{"selector":"","url":"","data":[]}}\" class=\"btn-secondary ui-bibz-connect btn input-refresh-button\"><i class=\"glyph fas fa-sync-alt\"></i></span></div>"
|
91
91
|
|
92
92
|
assert_equal expected, actual
|
93
93
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ui_bibz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0.
|
4
|
+
version: 3.0.0.beta15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thooams [Thomas HUMMEL]
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -240,7 +240,7 @@ dependencies:
|
|
240
240
|
- - ">="
|
241
241
|
- !ruby/object:Gem::Version
|
242
242
|
version: '0'
|
243
|
-
description: A Rails Interface Framework using Bootstrap 5.0.0.
|
243
|
+
description: A Rails Interface Framework using Bootstrap 5.0.0.beta2.
|
244
244
|
email: thomas@hummel.link
|
245
245
|
executables:
|
246
246
|
- test
|
@@ -312,6 +312,8 @@ files:
|
|
312
312
|
- lib/ui_bibz/ui/base.rb
|
313
313
|
- lib/ui_bibz/ui/concerns/card_itemable_concern.rb
|
314
314
|
- lib/ui_bibz/ui/concerns/html_concern.rb
|
315
|
+
- lib/ui_bibz/ui/concerns/navigation_concern.rb
|
316
|
+
- lib/ui_bibz/ui/concerns/notification_concern.rb
|
315
317
|
- lib/ui_bibz/ui/core/boxes/card.rb
|
316
318
|
- lib/ui_bibz/ui/core/boxes/card_accordion.rb
|
317
319
|
- lib/ui_bibz/ui/core/boxes/card_column.rb
|
@@ -666,7 +668,7 @@ rubygems_version: 3.1.2
|
|
666
668
|
signing_key:
|
667
669
|
specification_version: 4
|
668
670
|
summary: Ui Bibz is an Ui Framework that allows you to build an interface very quickly
|
669
|
-
and simply using Bootstrap 5.0.0.
|
671
|
+
and simply using Bootstrap 5.0.0.beta2.
|
670
672
|
test_files:
|
671
673
|
- test/dummy/README.rdoc
|
672
674
|
- test/dummy/Rakefile
|