matestack-ui-bootstrap 1.4.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +17 -5
- data/README.md +53 -19
- data/lib/matestack/ui/bootstrap.rb +97 -17
- data/{app/concepts → lib}/matestack/ui/bootstrap/apps/admin_template.rb +14 -7
- data/lib/matestack/ui/bootstrap/base_component.rb +13 -0
- data/lib/matestack/ui/bootstrap/base_vue_js_component.rb +13 -0
- data/lib/matestack/ui/bootstrap/components/accordion.rb +58 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/alert.js +12 -9
- data/lib/matestack/ui/bootstrap/components/alert.rb +43 -0
- data/lib/matestack/ui/bootstrap/components/avatar.rb +27 -0
- data/lib/matestack/ui/bootstrap/components/badge.rb +32 -0
- data/lib/matestack/ui/bootstrap/components/breadcrumb.rb +50 -0
- data/lib/matestack/ui/bootstrap/components/button.rb +71 -0
- data/lib/matestack/ui/bootstrap/components/button_group.rb +36 -0
- data/lib/matestack/ui/bootstrap/components/card.rb +105 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/carousel.js +21 -18
- data/lib/matestack/ui/bootstrap/components/carousel.rb +103 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/close.rb +10 -9
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/collapse.js +20 -17
- data/lib/matestack/ui/bootstrap/components/collapse.rb +54 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/dropdown.js +5 -2
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/dropdown.rb +31 -26
- data/lib/matestack/ui/bootstrap/components/icon.rb +21 -0
- data/lib/matestack/ui/bootstrap/components/list_group.rb +148 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/modal.js +24 -21
- data/lib/matestack/ui/bootstrap/components/modal.rb +121 -0
- data/lib/matestack/ui/bootstrap/components/navbar.rb +163 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/page_heading.rb +7 -5
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/pagination.rb +15 -13
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/popover.js +4 -1
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/popover.rb +26 -22
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/progress.rb +24 -24
- data/lib/matestack/ui/bootstrap/components/scrollspy.rb +50 -0
- data/lib/matestack/ui/bootstrap/components/section_card.rb +33 -0
- data/lib/matestack/ui/bootstrap/components/spinner.rb +35 -0
- data/lib/matestack/ui/bootstrap/components/tab_nav.rb +79 -0
- data/lib/matestack/ui/bootstrap/components/tab_nav_content.rb +35 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/toast.js +27 -18
- data/lib/matestack/ui/bootstrap/components/toast.rb +113 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/components/tooltip.js +4 -1
- data/lib/matestack/ui/bootstrap/components/tooltip.rb +66 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/content/figure.rb +4 -2
- data/lib/matestack/ui/bootstrap/content/smart_collection/collection.rb +120 -0
- data/{app/concepts/matestack/ui/bootstrap/content/collection → lib/matestack/ui/bootstrap/content/smart_collection}/collection.scss +0 -0
- data/lib/matestack/ui/bootstrap/content/smart_collection/content.rb +118 -0
- data/{app/concepts/matestack/ui/bootstrap/content/collection → lib/matestack/ui/bootstrap/content/smart_collection}/filter.rb +7 -3
- data/{app/concepts/matestack/ui/bootstrap/content/collection → lib/matestack/ui/bootstrap/content/smart_collection}/paginate.rb +19 -14
- data/lib/matestack/ui/bootstrap/form/checkbox.rb +90 -0
- data/lib/matestack/ui/bootstrap/form/input.rb +118 -0
- data/lib/matestack/ui/bootstrap/form/radio.rb +57 -0
- data/lib/matestack/ui/bootstrap/form/select.rb +63 -0
- data/lib/matestack/ui/bootstrap/form/submit.rb +20 -0
- data/lib/matestack/ui/bootstrap/form/switch.rb +32 -0
- data/lib/matestack/ui/bootstrap/form/textarea.rb +49 -0
- data/lib/matestack/ui/bootstrap/index.js +24 -0
- data/lib/matestack/ui/bootstrap/layout/column.rb +49 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/container.rb +12 -9
- data/lib/matestack/ui/bootstrap/layout/row.rb +25 -0
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/sidebar.js +5 -2
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/sidebar.rb +10 -10
- data/{app/concepts → lib}/matestack/ui/bootstrap/layout/sidebar.scss +0 -0
- data/lib/matestack/ui/bootstrap/registry.rb +173 -0
- data/{app/javascript/matestack-ui-bootstrap → lib/matestack/ui/bootstrap}/stylesheets/matestack-ui-bootstrap.scss +0 -0
- data/lib/matestack/ui/bootstrap/version.rb +1 -1
- data/lib/tasks/matestack/ui/bootstrap_tasks.rake +25 -25
- metadata +68 -76
- data/app/assets/images/avatar-placeholder.png +0 -0
- data/app/assets/images/icons/bootstrap-icons.svg +0 -1
- data/app/concepts/matestack/ui/bootstrap/components/accordion.rb +0 -53
- data/app/concepts/matestack/ui/bootstrap/components/alert.rb +0 -34
- data/app/concepts/matestack/ui/bootstrap/components/avatar.rb +0 -27
- data/app/concepts/matestack/ui/bootstrap/components/badge.rb +0 -30
- data/app/concepts/matestack/ui/bootstrap/components/breadcrumb.rb +0 -46
- data/app/concepts/matestack/ui/bootstrap/components/button.rb +0 -54
- data/app/concepts/matestack/ui/bootstrap/components/button_group.rb +0 -36
- data/app/concepts/matestack/ui/bootstrap/components/card.rb +0 -100
- data/app/concepts/matestack/ui/bootstrap/components/carousel.rb +0 -85
- data/app/concepts/matestack/ui/bootstrap/components/chart.js +0 -232
- data/app/concepts/matestack/ui/bootstrap/components/chart.rb +0 -71
- data/app/concepts/matestack/ui/bootstrap/components/collapse.rb +0 -43
- data/app/concepts/matestack/ui/bootstrap/components/icon.rb +0 -19
- data/app/concepts/matestack/ui/bootstrap/components/list_group.rb +0 -83
- data/app/concepts/matestack/ui/bootstrap/components/modal.rb +0 -106
- data/app/concepts/matestack/ui/bootstrap/components/navbar.rb +0 -120
- data/app/concepts/matestack/ui/bootstrap/components/scrollspy.rb +0 -33
- data/app/concepts/matestack/ui/bootstrap/components/section_card.rb +0 -31
- data/app/concepts/matestack/ui/bootstrap/components/spinner.rb +0 -31
- data/app/concepts/matestack/ui/bootstrap/components/tab_nav.rb +0 -81
- data/app/concepts/matestack/ui/bootstrap/components/tab_nav_content.rb +0 -32
- data/app/concepts/matestack/ui/bootstrap/components/toast.rb +0 -99
- data/app/concepts/matestack/ui/bootstrap/components/tooltip.rb +0 -82
- data/app/concepts/matestack/ui/bootstrap/content/collection/collection.rb +0 -112
- data/app/concepts/matestack/ui/bootstrap/content/collection/content.rb +0 -101
- data/app/concepts/matestack/ui/bootstrap/form/checkbox.rb +0 -90
- data/app/concepts/matestack/ui/bootstrap/form/date.js +0 -38
- data/app/concepts/matestack/ui/bootstrap/form/date.rb +0 -98
- data/app/concepts/matestack/ui/bootstrap/form/input.rb +0 -123
- data/app/concepts/matestack/ui/bootstrap/form/radio.rb +0 -65
- data/app/concepts/matestack/ui/bootstrap/form/select.haml +0 -11
- data/app/concepts/matestack/ui/bootstrap/form/select.rb +0 -74
- data/app/concepts/matestack/ui/bootstrap/form/submit.rb +0 -20
- data/app/concepts/matestack/ui/bootstrap/form/switch.rb +0 -90
- data/app/concepts/matestack/ui/bootstrap/layout/column.rb +0 -47
- data/app/concepts/matestack/ui/bootstrap/layout/row.rb +0 -15
- data/app/concepts/matestack/ui/bootstrap/pages/devise/sign_in.rb +0 -40
- data/app/concepts/matestack/ui/bootstrap/registry.rb +0 -63
- data/app/helpers/matestack/ui/bootstrap/application_helper.rb +0 -13
- data/app/javascript/matestack-ui-bootstrap/index.js +0 -26
- data/app/javascript/packs/matestack-ui-bootstrap.js +0 -2
- data/config/routes.rb +0 -2
- data/lib/matestack/ui/bootstrap/engine.rb +0 -26
@@ -1,6 +1,9 @@
|
|
1
1
|
import * as bootstrap from 'bootstrap'
|
2
|
+
import Vue from 'vue/dist/vue.esm'
|
2
3
|
|
3
|
-
MatestackUiCore
|
4
|
+
import MatestackUiCore from 'matestack-ui-core'
|
5
|
+
|
6
|
+
Vue.component('matestack-ui-bootstrap-popover', {
|
4
7
|
|
5
8
|
mixins: [MatestackUiCore.componentMixin],
|
6
9
|
data() {
|
@@ -1,5 +1,7 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
require_relative "../base_vue_js_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::Popover < Matestack::Ui::Bootstrap::BaseVueJsComponent
|
4
|
+
vue_name "matestack-ui-bootstrap-popover"
|
3
5
|
|
4
6
|
# How i imagine using a popover
|
5
7
|
#
|
@@ -26,16 +28,16 @@ class Matestack::Ui::Bootstrap::Components::Popover < Matestack::Ui::VueJsCompon
|
|
26
28
|
DATA_ALIAS_ATTRIBUTES = %i[container delay selector html template fallback_placement]
|
27
29
|
|
28
30
|
DATA_ALIAS_ATTRIBUTES.each do |attribute|
|
29
|
-
optional
|
31
|
+
optional :"#{attribute}"
|
30
32
|
end
|
31
33
|
|
32
34
|
# TODO:
|
33
35
|
# for security reasons the sanitize, sanitizeFn and whiteList options cannot be supplied using data attributes.
|
34
36
|
# sanitize sanitize_fn white_list
|
35
37
|
|
36
|
-
optional class: { as:
|
38
|
+
optional class: { as: :bs_class }
|
37
39
|
optional id: { as: :bs_id }
|
38
|
-
DATA_ATTRIBUTES = %i[tag content title
|
40
|
+
DATA_ATTRIBUTES = %i[tag content title variant animation placement tabindex trigger boundary offset popper_config]
|
39
41
|
optional *DATA_ATTRIBUTES
|
40
42
|
# :tag # different element to apply: div, span, links, button, ...
|
41
43
|
# :content, :title # popover title and content strings
|
@@ -43,49 +45,51 @@ class Matestack::Ui::Bootstrap::Components::Popover < Matestack::Ui::VueJsCompon
|
|
43
45
|
# :variant, :text # button styling & text
|
44
46
|
# :placement # placement direction as string
|
45
47
|
|
46
|
-
def response
|
47
|
-
if tag.present?
|
48
|
-
public_send(tag, popover_attributes) do
|
49
|
-
content_partial
|
48
|
+
def response(&block)
|
49
|
+
if context.tag.present?
|
50
|
+
public_send(context.tag, popover_attributes) do
|
51
|
+
content_partial(&block)
|
50
52
|
end
|
51
53
|
else
|
52
|
-
|
53
|
-
content_partial
|
54
|
+
bs_btn popover_attributes do
|
55
|
+
content_partial(&block)
|
54
56
|
end
|
55
57
|
end
|
56
58
|
end
|
57
59
|
|
58
60
|
protected
|
59
61
|
|
60
|
-
def content_partial
|
61
|
-
plain text if text
|
62
|
-
|
62
|
+
def content_partial(&block)
|
63
|
+
plain context.text if context.text
|
64
|
+
yield if block_given? unless context.text
|
63
65
|
end
|
64
66
|
|
65
67
|
def popover_attributes
|
66
68
|
attributes = {}.tap do |hash|
|
67
69
|
hash[:class] = popover_classes
|
68
|
-
hash[:
|
70
|
+
hash[:role] = (context.text ? 'button': nil)
|
71
|
+
hash[:title] = "#{context.title}"
|
72
|
+
hash[:tabindex] = "#{context.tabindex}"
|
69
73
|
hash[:data] = {}.tap do |data|
|
70
74
|
DATA_ALIAS_ATTRIBUTES.each do |attribute|
|
71
|
-
data["bs-#{attribute}"] =
|
75
|
+
data["bs-#{attribute}"] = context.send("#{attribute}") if context.send("#{attribute}")
|
72
76
|
end
|
73
77
|
(DATA_ATTRIBUTES - [:tag, :text, :variant]).each do |attribute|
|
74
|
-
data["bs-#{attribute}"] =
|
78
|
+
data["bs-#{attribute}"] = context.send("#{attribute}") if context.send("#{attribute}")
|
75
79
|
end
|
76
80
|
data["bs-toggle"] = "popover"
|
77
81
|
end
|
78
82
|
end
|
79
|
-
|
80
|
-
attributes
|
83
|
+
options.merge(
|
84
|
+
attributes || {}
|
81
85
|
)
|
82
86
|
end
|
83
87
|
|
84
88
|
def popover_classes
|
85
89
|
[].tap do |classes|
|
86
|
-
classes << "d-inline-block" unless text
|
87
|
-
classes << "btn btn-#{variant}" if variant
|
88
|
-
classes << bs_class
|
90
|
+
classes << "d-inline-block" unless context.text
|
91
|
+
classes << "btn btn-#{context.variant}" if context.variant
|
92
|
+
classes << context.bs_class
|
89
93
|
end.join(' ').strip
|
90
94
|
end
|
91
95
|
|
@@ -1,24 +1,26 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::Progress < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
optional class: { as: :bs_class }
|
6
|
+
optional :valuemin, :valuemax
|
5
7
|
# progress expects a number or a list containing hashes with at least a :value
|
6
|
-
# other options are :text, :
|
8
|
+
# other options are :text, class: { as: :bs_class }, :variant, :striped, :animated, :aria_valuenow
|
7
9
|
optional :progress
|
8
|
-
|
10
|
+
optional :value
|
9
11
|
optional :variant, :striped, :animated, :height
|
10
12
|
|
11
|
-
def response
|
13
|
+
def response
|
12
14
|
div progress_attributes do
|
13
|
-
progress =
|
15
|
+
progress = context.progress.is_a?(Array) ? context.progress : [{ value: context.progress || context.value, text: context.text }]
|
14
16
|
progress.each do |prog|
|
15
|
-
progress_bar(prog[:value], valuemin, valuemax,
|
16
|
-
text: prog[:text], klass: prog[:class], variant: prog[:variant] || variant,
|
17
|
-
striped: prog[:striped] || striped, animated: prog[:animated] || animated,
|
17
|
+
progress_bar(prog[:value], context.valuemin, context.valuemax,
|
18
|
+
text: prog[:text], klass: prog[:class], variant: prog[:variant] || context.variant,
|
19
|
+
striped: prog[:striped] || context.striped, animated: prog[:animated] || context.animated,
|
18
20
|
aria_valuenow: prog[:aria_valuenow]
|
19
21
|
)
|
20
22
|
end
|
21
|
-
|
23
|
+
yield if block_given?
|
22
24
|
end
|
23
25
|
end
|
24
26
|
|
@@ -26,30 +28,28 @@ class Matestack::Ui::Bootstrap::Components::Progress < Matestack::Ui::Component
|
|
26
28
|
|
27
29
|
def progress_attributes
|
28
30
|
attributes = {}.tap do |hash|
|
29
|
-
hash[:class] = "progress #{bs_class}".strip
|
30
|
-
hash[:
|
31
|
+
hash[:class] = "progress #{context.bs_class}".strip
|
32
|
+
hash[:style] = "height: #{context.height}px;" if context.height
|
31
33
|
end
|
32
|
-
|
34
|
+
options.merge(
|
33
35
|
attributes
|
34
36
|
)
|
35
37
|
end
|
36
38
|
|
37
39
|
def progress_bar(value, min, max, text: nil, klass: nil, variant: :primary, striped: false, animated: false, aria_valuenow: nil)
|
38
40
|
div progress_bar_attributes(value, klass, variant, striped, animated, aria_valuenow) do
|
39
|
-
plain text if text
|
41
|
+
plain text if text
|
40
42
|
end
|
41
43
|
end
|
42
44
|
|
43
45
|
def progress_bar_attributes(value, klass, variant, striped, animated, aria_valuenow)
|
44
46
|
{
|
45
47
|
class: progress_bar_classes(klass, variant, striped, animated),
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
'aria-valuemax': valuemax || 100
|
52
|
-
}
|
48
|
+
role: :progressbar,
|
49
|
+
style: "width: #{value.to_i > 0 ? value : 0}%;",
|
50
|
+
'aria-valuenow': aria_valuenow || value || 0,
|
51
|
+
'aria-valuemin': context.valuemin || 0,
|
52
|
+
'aria-valuemax': context.valuemax || 100
|
53
53
|
}
|
54
54
|
end
|
55
55
|
|
@@ -62,4 +62,4 @@ class Matestack::Ui::Bootstrap::Components::Progress < Matestack::Ui::Component
|
|
62
62
|
classes << klass
|
63
63
|
end.join(' ').strip
|
64
64
|
end
|
65
|
-
end
|
65
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::Scrollspy < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
required :height
|
6
|
+
|
7
|
+
optional :offset # pixel to offset from top, by default 10
|
8
|
+
optional method: { as: :bs_method } # find which section, by default auto
|
9
|
+
optional :target # scroll target id
|
10
|
+
optional class: { as: :bs_class } # adding custom class to scrollspy
|
11
|
+
|
12
|
+
def response
|
13
|
+
div scrollspy_attributes do
|
14
|
+
yield if block_given?
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
protected
|
19
|
+
|
20
|
+
def scrollspy_attributes
|
21
|
+
attributes = {}.tap do |hash|
|
22
|
+
hash[:class] = scrollspy_classes
|
23
|
+
hash[:data] = { "bs-spy": "scroll", "bs-target": "#{context.target}" }
|
24
|
+
hash[:data].merge!("bs-offset": context.offset) if context.offset.present?
|
25
|
+
hash[:data].merge!("bs-method": :"#{context.bs_method}") if context.bs_method.present?
|
26
|
+
hash[:style] = "overflow-y: scroll; position: relative;"
|
27
|
+
hash[:style] << "height: #{parsed_height};"
|
28
|
+
hash[:tabindex] = 0
|
29
|
+
end
|
30
|
+
options.merge(
|
31
|
+
attributes
|
32
|
+
)
|
33
|
+
end
|
34
|
+
|
35
|
+
def parsed_height
|
36
|
+
if context.height.present?
|
37
|
+
if context.height.to_s.include?("px") || context.height.to_s.include?("em") || context.height.to_s.include?("rem")
|
38
|
+
context.height
|
39
|
+
else
|
40
|
+
"#{context.height}px"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def scrollspy_classes
|
46
|
+
[].tap do |classes|
|
47
|
+
classes << context.bs_class
|
48
|
+
end.join(' ').strip
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::SectionCard < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
optional :id, :title, :subtitle, :icon, :slots, :content_padding
|
6
|
+
|
7
|
+
def response
|
8
|
+
section id: context.id, class: "section-card rounded shadow-sm mb-4 bg-white #{options[:class]}" do
|
9
|
+
div class: "d-flex flex-row justify-content-between" do
|
10
|
+
if context.title.present? || context.subtitle.present?
|
11
|
+
div class: "section-card-heading p-4" do
|
12
|
+
heading size: 5, class: "mb-0" do
|
13
|
+
bs_icon name: context.icon, size: "35" if context.icon.present?
|
14
|
+
plain context.title
|
15
|
+
end
|
16
|
+
small class: "text-muted" do
|
17
|
+
plain context.subtitle
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
if slots.present? && slots[:actions].present?
|
22
|
+
div class: "section-card-actions p-4" do
|
23
|
+
slot :actions
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
div class: "section-card-content #{'p-4' unless context.content_padding == false} #{'pt-1' if context.title || context.subtitle}" do
|
28
|
+
yield if block_given?
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::Spinner < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
optional class: { as: :bs_class }
|
6
|
+
optional :kind, :variant, :size, :sr_only
|
7
|
+
|
8
|
+
def response
|
9
|
+
div spinner_attributes do
|
10
|
+
span class: "visually-hidden" do
|
11
|
+
plain context.sr_only
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
protected
|
17
|
+
|
18
|
+
def spinner_attributes
|
19
|
+
options.merge(
|
20
|
+
class: spinner_class,
|
21
|
+
'role': "status"
|
22
|
+
)
|
23
|
+
end
|
24
|
+
|
25
|
+
def spinner_class
|
26
|
+
[].tap do |classes|
|
27
|
+
spinner_kind = context.kind || :border
|
28
|
+
classes << "spinner-#{spinner_kind}"
|
29
|
+
classes << "text-#{context.variant || 'primary'}"
|
30
|
+
classes << "spinner-#{spinner_kind}-sm" if context.size
|
31
|
+
#optional classes
|
32
|
+
classes << context.bs_class
|
33
|
+
end.join(' ').strip
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::TabNav < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
required :id
|
6
|
+
|
7
|
+
optional :items, :variant, :fill, :justified, :vertical, :vertical_up_to_sm,
|
8
|
+
:vertical_up_to_md, :vertical_up_to_xl, :horizontal,
|
9
|
+
class: { as: :bs_class }
|
10
|
+
|
11
|
+
def response
|
12
|
+
if context.items.present?
|
13
|
+
ul nav_attributes do
|
14
|
+
nav_items_partial
|
15
|
+
end
|
16
|
+
end
|
17
|
+
div class: "tab-content", id: "#{context.id}Content" do
|
18
|
+
yield if block_given?
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
protected
|
23
|
+
|
24
|
+
def nav_items_partial
|
25
|
+
context.items.each do |item|
|
26
|
+
li class: "nav-item", role: "presentation" do
|
27
|
+
a class: "nav-link #{'active' if item[:active]}",
|
28
|
+
id: "tab-#{item[:id]}",
|
29
|
+
path: "#tab-#{item[:id]}-content",
|
30
|
+
role: "tab",
|
31
|
+
"aria-controls": "tab-#{item[:id]}",
|
32
|
+
"aria-selected": "#{'true' if item[:active]}",
|
33
|
+
"data-bs-toggle": "tab" do
|
34
|
+
bs_icon name: item[:icon], size: 20 if item[:icon]
|
35
|
+
span item[:text], class: "#{'ps-3' if item[:icon]}" if item[:text]
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def link_attrs path, active, disabled, delay=nil
|
42
|
+
{}.tap do |hash|
|
43
|
+
hash[:class] = "nav-link #{'active' if path == request.fullpath } #{'disabled' if disabled}"
|
44
|
+
hash[:'aria-selected'] = path == request.fullpath ? 'true' : 'false'
|
45
|
+
hash[:'aria-current'] = 'page' if active == true
|
46
|
+
hash[:'aria-disabled'] = 'true' if disabled
|
47
|
+
hash[:role] = "tab" if toggle.present?
|
48
|
+
hash[:'aria-controls'] = "#{path.gsub('#','')}" if context.toggle.present?
|
49
|
+
|
50
|
+
hash[:data] = { "bs-toggle": "pill" } if context.pills
|
51
|
+
hash[:data] = { "bs-toggle": "tab" } if context.tabs
|
52
|
+
hash[:path] = path
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def nav_attributes
|
57
|
+
options.merge(
|
58
|
+
id: context.id,
|
59
|
+
class: nav_classes,
|
60
|
+
role: "tablist"
|
61
|
+
)
|
62
|
+
end
|
63
|
+
|
64
|
+
def nav_classes
|
65
|
+
[].tap do |classes|
|
66
|
+
classes << 'nav'
|
67
|
+
classes << 'nav-tabs' if context.variant == :tabs || context.variant.nil?
|
68
|
+
classes << 'nav-pills' if context.variant == :pills
|
69
|
+
classes << 'nav-fill' if context.fill
|
70
|
+
classes << 'nav-justified' if context.justified
|
71
|
+
classes << 'flex-column' if context.vertical
|
72
|
+
classes << 'flex-column flex-sm-column flex-md-row' if context.vertical_up_to_sm
|
73
|
+
classes << 'flex-column flex-sm-column flex-md-column flex-lg-row' if context.vertical_up_to_md
|
74
|
+
classes << 'flex-column flex-sm-column flex-md-column flex-lg-column flex-xl-row' if context.vertical_up_to_xl
|
75
|
+
classes << "justify-content-#{context.horizontal}" if context.horizontal.present?
|
76
|
+
classes << context.bs_class
|
77
|
+
end.join(' ').strip
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require_relative "../base_component"
|
2
|
+
|
3
|
+
class Matestack::Ui::Bootstrap::Components::TabNavContent < Matestack::Ui::Bootstrap::BaseComponent
|
4
|
+
|
5
|
+
required :id
|
6
|
+
|
7
|
+
optional :active, class: { as: :bs_class }
|
8
|
+
|
9
|
+
def response
|
10
|
+
div tab_content_attributes do
|
11
|
+
yield if block_given?
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
protected
|
16
|
+
|
17
|
+
def tab_content_attributes
|
18
|
+
options.merge(
|
19
|
+
id: "tab-#{context.id}-content",
|
20
|
+
class: tab_content_classes,
|
21
|
+
role: "tabpanel",
|
22
|
+
"aria-labelledby": "tab-#{context.id}"
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
def tab_content_classes
|
27
|
+
[].tap do |classes|
|
28
|
+
classes << 'tab-pane'
|
29
|
+
classes << 'fade'
|
30
|
+
classes << 'show ' if context.active
|
31
|
+
classes << 'active' if context.active
|
32
|
+
classes << context.bs_class
|
33
|
+
end.join(' ').strip
|
34
|
+
end
|
35
|
+
end
|
@@ -1,6 +1,9 @@
|
|
1
1
|
import * as bootstrap from 'bootstrap'
|
2
|
+
import Vue from 'vue/dist/vue.esm'
|
2
3
|
|
3
|
-
MatestackUiCore
|
4
|
+
import MatestackUiCore from 'matestack-ui-core'
|
5
|
+
|
6
|
+
Vue.component('matestack-ui-bootstrap-toast', {
|
4
7
|
|
5
8
|
mixins: [MatestackUiCore.componentMixin],
|
6
9
|
data() {
|
@@ -13,12 +16,18 @@ MatestackUiCore.Vue.component('matestack-ui-bootstrap-toast', {
|
|
13
16
|
methods: {
|
14
17
|
show: function(event){
|
15
18
|
const self = this;
|
16
|
-
if(this.
|
19
|
+
if(this.props["autohide"]){
|
17
20
|
setTimeout(function () {
|
18
21
|
self.showing = false;
|
19
22
|
}, 5000);
|
20
23
|
}
|
21
|
-
this.
|
24
|
+
if(this.props["delay"]){
|
25
|
+
setTimeout(function () {
|
26
|
+
self.showing = true;
|
27
|
+
}, parseInt(self.props["delay"]));
|
28
|
+
} else {
|
29
|
+
self.showing = true
|
30
|
+
}
|
22
31
|
this.eventData = event
|
23
32
|
},
|
24
33
|
hide: function(event){
|
@@ -42,37 +51,37 @@ MatestackUiCore.Vue.component('matestack-ui-bootstrap-toast', {
|
|
42
51
|
created: function() {
|
43
52
|
const self = this
|
44
53
|
|
45
|
-
if(this.
|
46
|
-
var show_events = this.
|
54
|
+
if(this.props["show_on"] != undefined){
|
55
|
+
var show_events = this.props["show_on"].split(",")
|
47
56
|
show_events.forEach(show_event => MatestackUiCore.matestackEventHub.$on(show_event.trim(), self.show));
|
48
57
|
}
|
49
58
|
|
50
|
-
if(this.
|
51
|
-
var show_events = this.
|
59
|
+
if(this.props["hide_on"] != undefined){
|
60
|
+
var show_events = this.props["hide_on"].split(",")
|
52
61
|
show_events.forEach(show_event => MatestackUiCore.matestackEventHub.$on(show_event.trim(), self.hide));
|
53
62
|
}
|
54
63
|
|
55
|
-
if(this.
|
56
|
-
var show_events = this.
|
64
|
+
if(this.props["dispose_on"] != undefined){
|
65
|
+
var show_events = this.props["dispose_on"].split(",")
|
57
66
|
show_events.forEach(show_event => MatestackUiCore.matestackEventHub.$on(show_event.trim(), self.dispose));
|
58
67
|
}
|
59
68
|
},
|
60
69
|
|
61
70
|
beforeDestroy: function() {
|
62
71
|
const self = this
|
63
|
-
MatestackUiCore.matestackEventHub.$off(this.
|
64
|
-
MatestackUiCore.matestackEventHub.$off(this.
|
65
|
-
MatestackUiCore.matestackEventHub.$off(this.
|
66
|
-
if(this.
|
67
|
-
var shown_events = this.
|
72
|
+
MatestackUiCore.matestackEventHub.$off(this.props["show_on"], self.show);
|
73
|
+
MatestackUiCore.matestackEventHub.$off(this.props["hide_on"], self.hide);
|
74
|
+
MatestackUiCore.matestackEventHub.$off(this.props["dispose_on"], self.hide);
|
75
|
+
if(this.props["show_on"] != undefined){
|
76
|
+
var shown_events = this.props["show_on"].split(",")
|
68
77
|
shown_events.forEach(show_event => MatestackUiCore.matestackEventHub.$off(show_event.trim(), self.show));
|
69
78
|
}
|
70
|
-
if(this.
|
71
|
-
var hiden_events = this.
|
79
|
+
if(this.props["hide_on"] != undefined){
|
80
|
+
var hiden_events = this.props["hide_on"].split(",")
|
72
81
|
hiden_events.forEach(hide_event => MatestackUiCore.matestackEventHub.$off(hide_event.trim(), self.hide));
|
73
82
|
}
|
74
|
-
if(this.
|
75
|
-
var hiden_events = this.
|
83
|
+
if(this.props["dispose_on"] != undefined){
|
84
|
+
var hiden_events = this.props["dispose_on"].split(",")
|
76
85
|
hiden_events.forEach(hide_event => MatestackUiCore.matestackEventHub.$off(hide_event.trim(), self.dispose));
|
77
86
|
}
|
78
87
|
},
|