Skip to content

Commit d23a235

Browse files
committed
Keep track of Editor.js toolbar state
This should make the toolbar a bit less finicky and fix an issue that sometimes made it impossible to delete a block
1 parent b8716b3 commit d23a235

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

assets/js/campaign-editors/block/blocks/layout/index.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,22 @@ export default class Layout {
6161
}
6262
})
6363

64+
// NOTE: This variable keeps track of whether
65+
// we've manually opened or closed the toolbar.
66+
// This is necessary because the API doesn't expose
67+
// the toolbar state
68+
let maybeOpen = false
69+
6470
editorPlace.addEventListener("mouseenter", () => {
65-
editor.toolbar.open()
71+
if (!maybeOpen) editor.toolbar.open()
72+
maybeOpen = true
6673
})
6774

6875
editorPlace.addEventListener("mouseleave", () => {
6976
editor.toolbar.close()
77+
maybeOpen = false
7078
})
71-
79+
7280
editorPlace.addEventListener("paste", e => {
7381
e.preventDefault()
7482
e.stopPropagation()

assets/js/campaign-editors/block/index.js

+12
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,20 @@ export default class BlockEditor {
8686
})
8787
})
8888

89+
// NOTE: This variable keeps track of whether
90+
// we've manually opened or closed the toolbar.
91+
// This is necessary because the API doesn't expose
92+
// the toolbar state
93+
let maybeOpen = false
94+
8995
place.addEventListener("mouseleave", () => {
9096
editor.toolbar.close()
97+
maybeOpen = false
98+
})
99+
100+
place.addEventListener("mouseenter", () => {
101+
if (!maybeOpen) editor.toolbar.open()
102+
maybeOpen = true
91103
})
92104
}
93105
}

0 commit comments

Comments
 (0)