turbo_boost-elements 0.0.12 → 0.0.13
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/README.md +1 -1
- data/app/assets/builds/@turbo-boost/elements.js +6 -6
- data/app/assets/builds/@turbo-boost/elements.js.map +4 -4
- data/app/javascript/elements/toggle_elements/target_element/index.js +5 -13
- data/app/javascript/elements/toggle_elements/{target_element → trigger_element}/focus.js +20 -27
- data/app/javascript/elements/toggle_elements/trigger_element/index.js +21 -17
- data/lib/turbo_boost/elements/version.rb +1 -1
- metadata +3 -3
@@ -1,5 +1,4 @@
|
|
1
1
|
import ToggleElement from '../toggle_element'
|
2
|
-
import './focus'
|
3
2
|
|
4
3
|
export default class ToggleTargetElement extends ToggleElement {
|
5
4
|
connectedCallback () {
|
@@ -91,19 +90,8 @@ export default class ToggleTargetElement extends ToggleElement {
|
|
91
90
|
)
|
92
91
|
}
|
93
92
|
|
94
|
-
applyFocus () {
|
95
|
-
if (this.focusElement) this.focusElement.focus()
|
96
|
-
}
|
97
|
-
|
98
93
|
get focusSelector () {
|
99
|
-
|
100
|
-
if (this.triggerElement)
|
101
|
-
value = this.triggerElement.getAttribute('focus-selector') || value
|
102
|
-
return value
|
103
|
-
}
|
104
|
-
|
105
|
-
get focusElement () {
|
106
|
-
return this.querySelector(this.focusSelector)
|
94
|
+
return this.getAttribute('focus-selector')
|
107
95
|
}
|
108
96
|
|
109
97
|
get triggerElement () {
|
@@ -114,6 +102,10 @@ export default class ToggleTargetElement extends ToggleElement {
|
|
114
102
|
return this.getAttribute('aria-labeledby')
|
115
103
|
}
|
116
104
|
|
105
|
+
set labeledBy (value) {
|
106
|
+
return this.setAttribute('aria-labeledby', value)
|
107
|
+
}
|
108
|
+
|
117
109
|
get collapseOn () {
|
118
110
|
const value = this.getAttribute('collapse-on')
|
119
111
|
if (!value) return []
|
@@ -1,3 +1,5 @@
|
|
1
|
+
let focusTimeout
|
2
|
+
|
1
3
|
function deactivateTrixAttributes (editor) {
|
2
4
|
const attributes = [
|
3
5
|
'bold',
|
@@ -43,35 +45,26 @@ function focusTrixEditorElement (element) {
|
|
43
45
|
])
|
44
46
|
}
|
45
47
|
|
46
|
-
function
|
47
|
-
|
48
|
-
const toggleTargetElement = element.closest('turbo-boost-toggle-target') || {}
|
49
|
-
return !!toggleTargetElement.focusElement
|
50
|
-
}
|
48
|
+
function debouncedFocus (element) {
|
49
|
+
clearTimeout(focusTimeout)
|
51
50
|
|
52
|
-
|
53
|
-
|
51
|
+
focusTimeout = setTimeout(() => {
|
52
|
+
if (!element) return
|
54
53
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
54
|
+
element.focus()
|
55
|
+
const trixEditorElement = element.closest('trix-editor')
|
56
|
+
|
57
|
+
try {
|
58
|
+
if (trixEditorElement) {
|
59
|
+
focusTrixEditorElement(trixEditorElement)
|
60
|
+
} else {
|
61
|
+
element.selectionStart = element.selectionEnd = element.value.length
|
62
|
+
}
|
63
|
+
} catch (_) {
|
64
|
+
} finally {
|
65
|
+
element.scrollIntoView({ block: 'center', behavior: 'smooth' })
|
60
66
|
}
|
61
|
-
}
|
62
|
-
} finally {
|
63
|
-
setTimeout(
|
64
|
-
() => element.scrollIntoView({ block: 'center', behavior: 'smooth' }),
|
65
|
-
100
|
66
|
-
)
|
67
|
-
}
|
67
|
+
}, 100)
|
68
68
|
}
|
69
69
|
|
70
|
-
|
71
|
-
'focus',
|
72
|
-
event => {
|
73
|
-
if (shouldEnhanceFocus(document.activeElement))
|
74
|
-
enhanceFocus(document.activeElement)
|
75
|
-
},
|
76
|
-
true
|
77
|
-
)
|
70
|
+
export default element => debouncedFocus(element)
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import ToggleElement, { busyDuration } from '../toggle_element'
|
2
2
|
import Devtool from './devtool'
|
3
|
+
import focus from './focus'
|
4
|
+
|
5
|
+
let currentFocusSelector
|
3
6
|
|
4
7
|
export default class ToggleTriggerElement extends ToggleElement {
|
5
8
|
connectedCallback () {
|
6
9
|
super.connectedCallback()
|
7
10
|
|
8
|
-
if (this.targetElement)
|
9
|
-
this.targetElement.setAttribute('aria-labeledby', this.id)
|
10
|
-
|
11
11
|
const { start: commandStartEvent } = TurboBoost.Commands.events
|
12
12
|
this.commandStartHandler = this.onCommandStart.bind(this)
|
13
13
|
this.addEventListener(commandStartEvent, this.commandStartHandler)
|
@@ -25,15 +25,19 @@ export default class ToggleTriggerElement extends ToggleElement {
|
|
25
25
|
}
|
26
26
|
|
27
27
|
disconnectedCallback () {
|
28
|
-
|
29
|
-
|
28
|
+
// delay cleanup because the trigger may have been morphed out of the DOM,
|
29
|
+
// but it's needed to apply behavior like focus etc...
|
30
|
+
setTimeout(() => {
|
31
|
+
const { start: commandStartEvent } = TurboBoost.Commands.events
|
32
|
+
this.removeEventListener(commandStartEvent, this.commandStartHandler)
|
30
33
|
|
31
|
-
|
32
|
-
|
34
|
+
const { before: beforeInvokeEvent } = TurboBoost.Streams.invokeEvents
|
35
|
+
removeEventListener(beforeInvokeEvent, this.beforeInvokeHandler)
|
33
36
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
+
this.devtool.hide({ active: false })
|
38
|
+
this.devtool.unregisterEventListeners()
|
39
|
+
delete this.devtool
|
40
|
+
}, 1000)
|
37
41
|
}
|
38
42
|
|
39
43
|
initializeDevtool () {
|
@@ -61,7 +65,8 @@ export default class ToggleTriggerElement extends ToggleElement {
|
|
61
65
|
}
|
62
66
|
|
63
67
|
onCommandStart (event) {
|
64
|
-
|
68
|
+
currentFocusSelector = this.focusSelector
|
69
|
+
this.targetElement.labeledBy = this.id
|
65
70
|
this.targetElement.collapseMatches()
|
66
71
|
this.targetElement.busy = true
|
67
72
|
this.busy = true
|
@@ -92,10 +97,10 @@ export default class ToggleTriggerElement extends ToggleElement {
|
|
92
97
|
}, delay - 10)
|
93
98
|
|
94
99
|
// runs after the morph is executed
|
95
|
-
setTimeout(
|
96
|
-
this.targetElement.
|
97
|
-
|
98
|
-
|
100
|
+
setTimeout(
|
101
|
+
() => focus(this.targetElement.querySelector(currentFocusSelector)),
|
102
|
+
delay + 100
|
103
|
+
)
|
99
104
|
}
|
100
105
|
|
101
106
|
// a list of views shared between the trigger and target
|
@@ -151,8 +156,7 @@ export default class ToggleTriggerElement extends ToggleElement {
|
|
151
156
|
|
152
157
|
get focusSelector () {
|
153
158
|
return (
|
154
|
-
this.getAttribute('focus-selector') ||
|
155
|
-
this.targetElement.getAttribute('focus-selector')
|
159
|
+
this.getAttribute('focus-selector') || this.targetElement.focusSelector
|
156
160
|
)
|
157
161
|
}
|
158
162
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: turbo_boost-elements
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nate Hopkins (hopsoft)
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -144,10 +144,10 @@ files:
|
|
144
144
|
- app/javascript/devtools/index.js
|
145
145
|
- app/javascript/devtools/supervisor.js
|
146
146
|
- app/javascript/elements/index.js
|
147
|
-
- app/javascript/elements/toggle_elements/target_element/focus.js
|
148
147
|
- app/javascript/elements/toggle_elements/target_element/index.js
|
149
148
|
- app/javascript/elements/toggle_elements/toggle_element/index.js
|
150
149
|
- app/javascript/elements/toggle_elements/trigger_element/devtool.js
|
150
|
+
- app/javascript/elements/toggle_elements/trigger_element/focus.js
|
151
151
|
- app/javascript/elements/toggle_elements/trigger_element/index.js
|
152
152
|
- app/javascript/elements/turbo_boost_element/index.js
|
153
153
|
- app/javascript/index.js
|