playbook_ui 14.16.0.pre.alpha.play1881removelodash6986 → 14.16.0.pre.alpha.play1957inlinedatepickericonbugfix6872
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_advanced_table/_advanced_table.tsx +84 -86
- data/app/pb_kits/playbook/pb_advanced_table/docs/_advanced_table_pagination.jsx +1 -0
- data/app/pb_kits/playbook/pb_button/_button.scss +5 -5
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_autocomplete_and_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display.jsx +6 -6
- data/app/pb_kits/playbook/pb_dropdown/docs/_dropdown_with_custom_display_rails.html.erb +8 -8
- data/app/pb_kits/playbook/pb_filter/Filter/CurrentFilters.tsx +4 -3
- data/app/pb_kits/playbook/pb_filter/Filter/SortMenu.tsx +3 -2
- data/app/pb_kits/playbook/pb_form/pb_form_validation.js +1 -1
- data/app/pb_kits/playbook/pb_lightbox/hooks/useVisibility.js +1 -1
- data/app/pb_kits/playbook/pb_multi_level_select/_multi_level_select.tsx +1 -2
- data/app/pb_kits/playbook/pb_rich_text_editor/_rich_text_editor.tsx +11 -29
- data/app/pb_kits/playbook/pb_rich_text_editor/docs/_rich_text_editor_default.html.erb +1 -1
- data/app/pb_kits/playbook/pb_rich_text_editor/rich_text_editor.html.erb +4 -4
- data/app/pb_kits/playbook/pb_rich_text_editor/rich_text_editor.rb +0 -2
- data/app/pb_kits/playbook/pb_table/_table.tsx +0 -4
- data/app/pb_kits/playbook/pb_table/docs/example.yml +0 -2
- data/app/pb_kits/playbook/pb_table/docs/index.js +0 -2
- data/app/pb_kits/playbook/pb_table/styles/_headers.scss +0 -76
- data/app/pb_kits/playbook/pb_table/styles/_striped.scss +3 -3
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_head.tsx +1 -11
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_header.tsx +1 -11
- data/app/pb_kits/playbook/pb_table/subcomponents/_table_row.tsx +0 -5
- data/app/pb_kits/playbook/pb_table/table.test.js +0 -17
- data/app/pb_kits/playbook/pb_tooltip/floating_ui.js +282 -0
- data/app/pb_kits/playbook/pb_tooltip/index.js +56 -183
- data/app/pb_kits/playbook/pb_typeahead/docs/_typeahead_with_highlight.jsx +4 -4
- data/app/pb_kits/playbook/pb_typeahead/index.ts +2 -2
- data/app/pb_kits/playbook/utilities/globalProps.ts +1 -1
- data/app/pb_kits/playbook/utilities/object.test.js +1 -149
- data/app/pb_kits/playbook/utilities/object.ts +42 -124
- data/dist/chunks/_typeahead-BniHPQq8.js +22 -0
- data/dist/chunks/_weekday_stacked-CuaFaMk8.js +45 -0
- data/dist/chunks/lib-UIelzz2O.js +29 -0
- data/dist/chunks/{pb_form_validation-BvNy9Bd6.js → pb_form_validation-EUv1tqtI.js} +1 -1
- data/dist/chunks/vendor.js +1 -1
- data/dist/playbook-doc.js +1 -1
- data/dist/playbook-rails-react-bindings.js +1 -1
- data/dist/playbook-rails.js +1 -1
- data/dist/playbook.css +1 -1
- data/lib/playbook/version.rb +1 -1
- metadata +7 -10
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless.jsx +0 -50
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_borderless_react.md +0 -1
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating.jsx +0 -59
- data/app/pb_kits/playbook/pb_table/docs/_table_with_header_style_floating_react.md +0 -1
- data/dist/chunks/_typeahead-Djo6qCne.js +0 -22
- data/dist/chunks/_weekday_stacked-DIIHW0OV.js +0 -45
- data/dist/chunks/lib-BGzBzFZX.js +0 -29
@@ -14,79 +14,3 @@
|
|
14
14
|
}
|
15
15
|
}
|
16
16
|
}
|
17
|
-
// remove all outward facing borders from header
|
18
|
-
.header-borderless > thead,
|
19
|
-
.header-borderless > thead > tr,
|
20
|
-
.header-borderless > thead > tr > th,
|
21
|
-
.header-borderless > .pb_table_thead,
|
22
|
-
.header-borderless > .pb_table_thead > .pb_table_tr,
|
23
|
-
.header-borderless > .pb_table_thead .pb_table_th {
|
24
|
-
border-top: none !important;
|
25
|
-
border-left: none !important;
|
26
|
-
border-right: none !important;
|
27
|
-
}
|
28
|
-
|
29
|
-
// remove bottom border (internal to table) on header cells - only light mode needs this redundancy handled likely due to a difference in the base scss and table-dark.scss
|
30
|
-
.header-borderless:not(.table-dark) > thead > tr:last-child > th,
|
31
|
-
.header-borderless:not(.table-dark) > .pb_table_thead > .pb_table_tr:last-child > .pb_table_th {
|
32
|
-
border-bottom: none !important;
|
33
|
-
}
|
34
|
-
|
35
|
-
// preserves top rounded corners to header at top of table-card for unnested card
|
36
|
-
.header-borderless > thead > tr:first-child > th:first-child,
|
37
|
-
.header-borderless > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:first-child {
|
38
|
-
border-top-left-radius: $border_radius_md !important;
|
39
|
-
}
|
40
|
-
|
41
|
-
.header-borderless > thead > tr:first-child > th:last-child,
|
42
|
-
.header-borderless > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:last-child {
|
43
|
-
border-top-right-radius: $border_radius_md !important;
|
44
|
-
}
|
45
|
-
|
46
|
-
// ensures top border is from first row of body to prevent double borders
|
47
|
-
.header-borderless > tbody > tr:first-child > td,
|
48
|
-
.header-borderless > .pb_table_tbody > .pb_table_tr:first-child > .pb_table_td {
|
49
|
-
border-top: 1px solid $border_light !important;
|
50
|
-
}
|
51
|
-
|
52
|
-
// floating code - this carries over everything for header-borderless
|
53
|
-
.header-floating > thead,
|
54
|
-
.header-floating > thead > tr,
|
55
|
-
.header-floating > thead > tr > th,
|
56
|
-
.header-floating > .pb_table_thead,
|
57
|
-
.header-floating > .pb_table_thead > .pb_table_tr,
|
58
|
-
.header-floating > .pb_table_thead .pb_table_th {
|
59
|
-
border-top: none !important;
|
60
|
-
border-left: none !important;
|
61
|
-
border-right: none !important;
|
62
|
-
}
|
63
|
-
|
64
|
-
.header-floating:not(.table-dark) > thead > tr:last-child > th,
|
65
|
-
.header-floating:not(.table-dark) > .pb_table_thead > .pb_table_tr:last-child > .pb_table_th {
|
66
|
-
border-bottom: none !important;
|
67
|
-
}
|
68
|
-
|
69
|
-
.header-floating > thead > tr:first-child > th:first-child,
|
70
|
-
.header-floating > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:first-child {
|
71
|
-
border-top-left-radius: $border_radius_md !important;
|
72
|
-
}
|
73
|
-
|
74
|
-
.header-floating > thead > tr:first-child > th:last-child,
|
75
|
-
.header-floating > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:last-child {
|
76
|
-
border-top-right-radius: $border_radius_md !important;
|
77
|
-
}
|
78
|
-
|
79
|
-
.header-floating > tbody > tr:first-child > td,
|
80
|
-
.header-floating > .pb_table_tbody > .pb_table_tr:first-child > .pb_table_td {
|
81
|
-
border-top: 1px solid $border_light !important;
|
82
|
-
}
|
83
|
-
|
84
|
-
// flatten out corners for floating headerstyle variant to avoid small triangle of white/empty space
|
85
|
-
.header-floating > thead > tr:first-child > th:first-child,
|
86
|
-
.header-floating > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:first-child {
|
87
|
-
border-top-left-radius: 0 !important;
|
88
|
-
}
|
89
|
-
.header-floating > thead > tr:first-child > th:last-child,
|
90
|
-
.header-floating > .pb_table_thead > .pb_table_tr:first-child > .pb_table_th:last-child {
|
91
|
-
border-top-right-radius: 0 !important;
|
92
|
-
}
|
@@ -1,7 +1,7 @@
|
|
1
|
-
[class^=pb_table]
|
1
|
+
[class^=pb_table] {
|
2
2
|
&.striped {
|
3
3
|
tbody, .pb_table_tbody {
|
4
|
-
tr:nth-child(odd)
|
4
|
+
tr:nth-child(odd), .pb_table_tr:nth-child(odd) {
|
5
5
|
background-color: $bg_light;
|
6
6
|
}
|
7
7
|
}
|
@@ -10,7 +10,7 @@
|
|
10
10
|
&.dark {
|
11
11
|
&.striped {
|
12
12
|
tbody, .pb_table_tbody {
|
13
|
-
tr:nth-child(odd)
|
13
|
+
tr:nth-child(odd), .pb_table_tr:nth-child(odd) {
|
14
14
|
background-color: $bg_dark;
|
15
15
|
}
|
16
16
|
}
|
@@ -12,7 +12,6 @@ type TableHeadPropTypes = {
|
|
12
12
|
children: React.ReactNode[] | React.ReactNode;
|
13
13
|
className: string;
|
14
14
|
data?: { [key: string]: string };
|
15
|
-
headerStyle?: "default" | "borderless" | "floating";
|
16
15
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
17
16
|
id?: string;
|
18
17
|
tag?: "table" | "div";
|
@@ -24,7 +23,6 @@ const TableHead = (props: TableHeadPropTypes): React.ReactElement => {
|
|
24
23
|
children,
|
25
24
|
className,
|
26
25
|
data = {},
|
27
|
-
headerStyle = "default",
|
28
26
|
htmlOptions = {},
|
29
27
|
id,
|
30
28
|
tag = "table",
|
@@ -33,15 +31,7 @@ const TableHead = (props: TableHeadPropTypes): React.ReactElement => {
|
|
33
31
|
const ariaProps = buildAriaProps(aria);
|
34
32
|
const dataProps = buildDataProps(data);
|
35
33
|
const htmlProps = buildHtmlProps(htmlOptions);
|
36
|
-
const classes = classnames(
|
37
|
-
"pb_table_thead",
|
38
|
-
{
|
39
|
-
"pb_table_thead_borderless": headerStyle === "borderless" || headerStyle === "floating",
|
40
|
-
"pb_table_thead_floating": headerStyle === "floating",
|
41
|
-
},
|
42
|
-
globalProps(props),
|
43
|
-
className
|
44
|
-
);
|
34
|
+
const classes = classnames("pb_table_thead", globalProps(props), className);
|
45
35
|
const isTableTag = tag === "table";
|
46
36
|
|
47
37
|
return (
|
@@ -12,7 +12,6 @@ type TableHeaderPropTypes = {
|
|
12
12
|
children: React.ReactNode[] | React.ReactNode;
|
13
13
|
className: string;
|
14
14
|
data?: { [key: string]: string };
|
15
|
-
headerStyle?: "default" | "borderless" | "floating";
|
16
15
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
17
16
|
id?: string;
|
18
17
|
tag?: "table" | "div";
|
@@ -25,7 +24,6 @@ const TableHeader = (props: TableHeaderPropTypes): React.ReactElement => {
|
|
25
24
|
children,
|
26
25
|
className,
|
27
26
|
data = {},
|
28
|
-
headerStyle = "default",
|
29
27
|
htmlOptions = {},
|
30
28
|
id,
|
31
29
|
tag = "table",
|
@@ -35,15 +33,7 @@ const TableHeader = (props: TableHeaderPropTypes): React.ReactElement => {
|
|
35
33
|
const ariaProps = buildAriaProps(aria);
|
36
34
|
const dataProps = buildDataProps(data);
|
37
35
|
const htmlProps = buildHtmlProps(htmlOptions);
|
38
|
-
const classes = classnames(
|
39
|
-
"pb_table_th",
|
40
|
-
{
|
41
|
-
"pb_table_thead_borderless": headerStyle === "borderless" || headerStyle === "floating",
|
42
|
-
"pb_table_thead_floating": headerStyle === "floating",
|
43
|
-
},
|
44
|
-
globalProps(props),
|
45
|
-
className
|
46
|
-
);
|
36
|
+
const classes = classnames("pb_table_th", globalProps(props), className);
|
47
37
|
const isTableTag = tag === "table";
|
48
38
|
|
49
39
|
return (
|
@@ -22,7 +22,6 @@ type TableRowPropTypes = {
|
|
22
22
|
dark?: boolean;
|
23
23
|
dragId?: string;
|
24
24
|
draggableItem?: boolean;
|
25
|
-
headerStyle?: "default" | "borderless" | "floating";
|
26
25
|
htmlOptions?: { [key: string]: string | number | boolean | (() => void) };
|
27
26
|
id?: string;
|
28
27
|
toggleCellId?: string;
|
@@ -42,7 +41,6 @@ const TableRow = (props: TableRowPropTypes): React.ReactElement => {
|
|
42
41
|
dark = false,
|
43
42
|
dragId,
|
44
43
|
draggableItem = false,
|
45
|
-
headerStyle = "default",
|
46
44
|
htmlOptions = {},
|
47
45
|
id,
|
48
46
|
toggleCellId,
|
@@ -62,9 +60,6 @@ const TableRow = (props: TableRowPropTypes): React.ReactElement => {
|
|
62
60
|
const classes = classnames(
|
63
61
|
buildCss("pb_table_row_kit", sideHighlightClass),
|
64
62
|
"pb_table_tr",
|
65
|
-
{
|
66
|
-
"pb_table_tr_borderless_header": headerStyle === "borderless",
|
67
|
-
},
|
68
63
|
collapsibleRow,
|
69
64
|
globalProps(props),
|
70
65
|
className
|
@@ -167,20 +167,3 @@ test("Should have outerPadding class", () => {
|
|
167
167
|
const kit = renderKit(Table, props, { outerPadding: "sm" })
|
168
168
|
expect(kit).toHaveClass("pb_table table-sm table-responsive-collapse table-card outer_padding_space_sm table-collapse-sm")
|
169
169
|
})
|
170
|
-
|
171
|
-
test("when headerStyle is default", () => {
|
172
|
-
const kit = renderKit(Table, props)
|
173
|
-
expect(kit).toHaveClass("pb_table table-sm table-responsive-collapse table-card table-collapse-sm")
|
174
|
-
expect(kit).not.toHaveClass("header-borderless")
|
175
|
-
expect(kit).not.toHaveClass("header-floating")
|
176
|
-
})
|
177
|
-
|
178
|
-
test("when headerStyle is borderless", () => {
|
179
|
-
const kit = renderKit(Table, props, { headerStyle: "borderless" })
|
180
|
-
expect(kit).toHaveClass("pb_table table-sm table-responsive-collapse table-card header-borderless table-collapse-sm")
|
181
|
-
})
|
182
|
-
|
183
|
-
test("when headerStyle is floating", () => {
|
184
|
-
const kit = renderKit(Table, props, { headerStyle: "floating" })
|
185
|
-
expect(kit).toHaveClass("pb_table table-sm table-responsive-collapse table-card header-floating table-collapse-sm")
|
186
|
-
})
|
@@ -0,0 +1,282 @@
|
|
1
|
+
import PbEnhancedElement from '../pb_enhanced_element'
|
2
|
+
import { computePosition, offset, flip, shift, arrow, autoUpdate } from '@floating-ui/dom'
|
3
|
+
|
4
|
+
const TOOLTIP_OFFSET = 20
|
5
|
+
const TOOLTIP_TIMEOUT = 250
|
6
|
+
const SAFE_ZONE_MARGIN = 1
|
7
|
+
|
8
|
+
export default class PbTooltipFloatingUi extends PbEnhancedElement {
|
9
|
+
static get selector() {
|
10
|
+
return '[data-pb-tooltip-kit="true"][data-pb-tooltip-delay-open], [data-pb-tooltip-kit="true"][data-pb-tooltip-delay-close], [data-pb-tooltip-kit="true"][data-pb-tooltip-interaction="true"]'
|
11
|
+
}
|
12
|
+
|
13
|
+
connect() {
|
14
|
+
if (this.tooltipInteraction) {
|
15
|
+
document.addEventListener('mousemove', (e) => {
|
16
|
+
this.lastMouseX = e.clientX
|
17
|
+
this.lastMouseY = e.clientY
|
18
|
+
})
|
19
|
+
}
|
20
|
+
|
21
|
+
this.triggerElements.forEach((trigger) => {
|
22
|
+
const method = this.triggerMethod
|
23
|
+
const interactionEnabled = this.tooltipInteraction
|
24
|
+
|
25
|
+
if (method === 'click') {
|
26
|
+
trigger.addEventListener('click', () => {
|
27
|
+
this.showTooltip(trigger)
|
28
|
+
})
|
29
|
+
} else {
|
30
|
+
trigger.addEventListener('mouseenter', () => {
|
31
|
+
clearSafeZoneListener(this)
|
32
|
+
clearTimeout(this.mouseleaveTimeout)
|
33
|
+
this.currentTrigger = trigger
|
34
|
+
const delayOpen = this.delayOpen ? parseInt(this.delayOpen) : TOOLTIP_TIMEOUT
|
35
|
+
this.mouseenterTimeout = setTimeout(() => {
|
36
|
+
this.showTooltip(trigger)
|
37
|
+
if (interactionEnabled) {
|
38
|
+
this.checkCloseTooltip(trigger)
|
39
|
+
}
|
40
|
+
}, delayOpen)
|
41
|
+
})
|
42
|
+
|
43
|
+
trigger.addEventListener('mouseleave', () => {
|
44
|
+
clearTimeout(this.mouseenterTimeout)
|
45
|
+
if (this.delayClose) {
|
46
|
+
const delayClose = parseInt(this.delayClose)
|
47
|
+
this.mouseleaveTimeout = setTimeout(() => {
|
48
|
+
if (interactionEnabled) {
|
49
|
+
this.attachSafeZoneListener()
|
50
|
+
} else {
|
51
|
+
this.hideTooltip()
|
52
|
+
}
|
53
|
+
}, delayClose)
|
54
|
+
} else {
|
55
|
+
if (interactionEnabled) {
|
56
|
+
this.attachSafeZoneListener()
|
57
|
+
} else {
|
58
|
+
this.hideTooltip()
|
59
|
+
}
|
60
|
+
}
|
61
|
+
})
|
62
|
+
|
63
|
+
if (interactionEnabled) {
|
64
|
+
this.tooltip.addEventListener('mouseenter', () => {
|
65
|
+
clearSafeZoneListener(this)
|
66
|
+
})
|
67
|
+
|
68
|
+
this.tooltip.addEventListener('mouseleave', () => {
|
69
|
+
this.attachSafeZoneListener()
|
70
|
+
})
|
71
|
+
}
|
72
|
+
}
|
73
|
+
})
|
74
|
+
}
|
75
|
+
|
76
|
+
attachSafeZoneListener() {
|
77
|
+
clearSafeZoneListener(this)
|
78
|
+
this.safeZoneHandler = (e) => {
|
79
|
+
if (!this.currentTrigger) return
|
80
|
+
const triggerRect = this.currentTrigger.getBoundingClientRect()
|
81
|
+
const tooltipRect = this.tooltip.getBoundingClientRect()
|
82
|
+
const safeRect = getSafeZone(triggerRect, tooltipRect, this.position, SAFE_ZONE_MARGIN)
|
83
|
+
if (!isPointInsideRect(e.clientX, e.clientY, safeRect)) {
|
84
|
+
this.hideTooltip()
|
85
|
+
clearSafeZoneListener(this)
|
86
|
+
}
|
87
|
+
}
|
88
|
+
document.addEventListener('mousemove', this.safeZoneHandler)
|
89
|
+
}
|
90
|
+
|
91
|
+
checkCloseTooltip(trigger) {
|
92
|
+
document.querySelector('body').addEventListener('click', ({ target }) => {
|
93
|
+
const isTooltip = target.closest(`#${this.tooltipId}`) === this.tooltip
|
94
|
+
const isTrigger = target.closest(this.triggerElementSelector) === trigger
|
95
|
+
if (isTrigger || isTooltip) {
|
96
|
+
this.checkCloseTooltip(trigger)
|
97
|
+
} else {
|
98
|
+
this.hideTooltip()
|
99
|
+
}
|
100
|
+
}, { once: true })
|
101
|
+
}
|
102
|
+
|
103
|
+
showTooltip(trigger) {
|
104
|
+
if (this.shouldShowTooltip === 'false') return
|
105
|
+
|
106
|
+
clearSafeZoneListener(this)
|
107
|
+
|
108
|
+
this.tooltip.style.opacity = '1'
|
109
|
+
this.tooltip.style.visibility = 'visible'
|
110
|
+
this.tooltip.style.pointerEvents = 'auto'
|
111
|
+
|
112
|
+
if (this.cleanup) {
|
113
|
+
this.cleanup()
|
114
|
+
}
|
115
|
+
|
116
|
+
const arrowElement = document.querySelector(`#${this.tooltipId}-arrow`)
|
117
|
+
|
118
|
+
this.cleanup = autoUpdate(trigger, this.tooltip, () => {
|
119
|
+
computePosition(trigger, this.tooltip, {
|
120
|
+
placement: this.position,
|
121
|
+
strategy: 'fixed',
|
122
|
+
middleware: [
|
123
|
+
offset({ mainAxis: TOOLTIP_OFFSET, crossAxis: 0 }),
|
124
|
+
flip(),
|
125
|
+
shift(),
|
126
|
+
arrow({ element: arrowElement })
|
127
|
+
],
|
128
|
+
}).then(({ x, y, placement, middlewareData }) => {
|
129
|
+
Object.assign(this.tooltip.style, {
|
130
|
+
left: `${x}px`,
|
131
|
+
top: `${y}px`,
|
132
|
+
position: 'fixed'
|
133
|
+
})
|
134
|
+
this.tooltip.setAttribute('data-popper-placement', placement)
|
135
|
+
if (arrowElement && middlewareData.arrow) {
|
136
|
+
const { x: arrowX, y: arrowY } = middlewareData.arrow
|
137
|
+
Object.assign(arrowElement.style, {
|
138
|
+
left: arrowX != null ? `${arrowX}px` : '',
|
139
|
+
top: arrowY != null ? `${arrowY}px` : '',
|
140
|
+
position: 'absolute'
|
141
|
+
})
|
142
|
+
}
|
143
|
+
})
|
144
|
+
})
|
145
|
+
|
146
|
+
this.tooltip.classList.add('show')
|
147
|
+
|
148
|
+
if (this.triggerMethod === 'click') {
|
149
|
+
clearTimeout(this.autoHideTimeout)
|
150
|
+
this.autoHideTimeout = setTimeout(() => {
|
151
|
+
this.hideTooltip()
|
152
|
+
}, 1000)
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
hideTooltip() {
|
157
|
+
if (!this.tooltip) return
|
158
|
+
|
159
|
+
this.tooltip.classList.add('fade_out')
|
160
|
+
setTimeout(() => {
|
161
|
+
if (this.cleanup) {
|
162
|
+
this.cleanup()
|
163
|
+
this.cleanup = null
|
164
|
+
}
|
165
|
+
this.tooltip.classList.remove('show')
|
166
|
+
this.tooltip.classList.remove('fade_out')
|
167
|
+
this.tooltip.style.opacity = '0'
|
168
|
+
this.tooltip.style.visibility = 'hidden'
|
169
|
+
this.tooltip.style.pointerEvents = 'none'
|
170
|
+
this.tooltip.style.position = ''
|
171
|
+
this.tooltip.style.top = ''
|
172
|
+
this.tooltip.style.left = ''
|
173
|
+
this.tooltip.style.transform = ''
|
174
|
+
}, TOOLTIP_TIMEOUT)
|
175
|
+
}
|
176
|
+
|
177
|
+
get triggerElements() {
|
178
|
+
let triggerEl
|
179
|
+
if (this.triggerElementId) {
|
180
|
+
triggerEl = document.querySelector(`#${this.triggerElementId}`)
|
181
|
+
} else if (this.triggerElementSelector) {
|
182
|
+
const selectorIsId = this.triggerElementSelector.indexOf('#') > -1
|
183
|
+
triggerEl = selectorIsId
|
184
|
+
? document.querySelector(this.triggerElementSelector)
|
185
|
+
: document.querySelectorAll(this.triggerElementSelector)
|
186
|
+
} else {
|
187
|
+
triggerEl = this.element
|
188
|
+
}
|
189
|
+
if (!triggerEl) {
|
190
|
+
console.error('Tooltip Kit: No valid trigger element found!')
|
191
|
+
return []
|
192
|
+
}
|
193
|
+
if (triggerEl.length === undefined) {
|
194
|
+
triggerEl = [triggerEl]
|
195
|
+
}
|
196
|
+
return triggerEl
|
197
|
+
}
|
198
|
+
|
199
|
+
get tooltip() {
|
200
|
+
return (this._tooltip = this._tooltip || this.element.querySelector(`#${this.tooltipId}`))
|
201
|
+
}
|
202
|
+
|
203
|
+
get position() {
|
204
|
+
return this.element.dataset.pbTooltipPosition
|
205
|
+
}
|
206
|
+
|
207
|
+
get triggerElementId() {
|
208
|
+
return this.element.dataset.pbTooltipTriggerElementId
|
209
|
+
}
|
210
|
+
|
211
|
+
get tooltipId() {
|
212
|
+
return this.element.dataset.pbTooltipTooltipId
|
213
|
+
}
|
214
|
+
|
215
|
+
get triggerElementSelector() {
|
216
|
+
return this.element.dataset.pbTooltipTriggerElementSelector
|
217
|
+
}
|
218
|
+
|
219
|
+
get shouldShowTooltip() {
|
220
|
+
return this.element.dataset.pbTooltipShowTooltip
|
221
|
+
}
|
222
|
+
|
223
|
+
get triggerMethod() {
|
224
|
+
return this.element.dataset.pbTooltipTriggerMethod || 'hover'
|
225
|
+
}
|
226
|
+
|
227
|
+
get tooltipInteraction() {
|
228
|
+
return this.element.dataset.pbTooltipInteraction === 'true'
|
229
|
+
}
|
230
|
+
|
231
|
+
get delayOpen() {
|
232
|
+
return this.element.dataset.pbTooltipDelayOpen
|
233
|
+
}
|
234
|
+
|
235
|
+
get delayClose() {
|
236
|
+
return this.element.dataset.pbTooltipDelayClose
|
237
|
+
}
|
238
|
+
}
|
239
|
+
|
240
|
+
function clearSafeZoneListener(context) {
|
241
|
+
if (context.safeZoneHandler) {
|
242
|
+
document.removeEventListener('mousemove', context.safeZoneHandler)
|
243
|
+
context.safeZoneHandler = null
|
244
|
+
}
|
245
|
+
}
|
246
|
+
|
247
|
+
function getSafeZone(triggerRect, tooltipRect, placement, margin) {
|
248
|
+
let safeRect = {}
|
249
|
+
if (placement.startsWith('top')) {
|
250
|
+
safeRect.left = triggerRect.left - margin
|
251
|
+
safeRect.right = triggerRect.right + margin
|
252
|
+
safeRect.top = tooltipRect.bottom - margin
|
253
|
+
safeRect.bottom = triggerRect.top + margin
|
254
|
+
} else if (placement.startsWith('bottom')) {
|
255
|
+
safeRect.left = triggerRect.left - margin
|
256
|
+
safeRect.right = triggerRect.right + margin
|
257
|
+
safeRect.top = triggerRect.bottom - margin
|
258
|
+
safeRect.bottom = tooltipRect.top + margin
|
259
|
+
} else if (placement.startsWith('left')) {
|
260
|
+
safeRect.top = triggerRect.top - margin
|
261
|
+
safeRect.bottom = triggerRect.bottom + margin
|
262
|
+
safeRect.left = tooltipRect.right - margin
|
263
|
+
safeRect.right = triggerRect.left + margin
|
264
|
+
} else if (placement.startsWith('right')) {
|
265
|
+
safeRect.top = triggerRect.top - margin
|
266
|
+
safeRect.bottom = triggerRect.bottom + margin
|
267
|
+
safeRect.left = triggerRect.right - margin
|
268
|
+
safeRect.right = tooltipRect.left + margin
|
269
|
+
} else {
|
270
|
+
safeRect = {
|
271
|
+
left: triggerRect.left - margin,
|
272
|
+
right: triggerRect.right + margin,
|
273
|
+
top: triggerRect.top - margin,
|
274
|
+
bottom: triggerRect.bottom + margin,
|
275
|
+
}
|
276
|
+
}
|
277
|
+
return safeRect
|
278
|
+
}
|
279
|
+
|
280
|
+
function isPointInsideRect(x, y, rect) {
|
281
|
+
return x >= rect.left && x <= rect.right && y >= rect.top && y <= rect.bottom
|
282
|
+
}
|