mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-05-05 10:21:01 +09:00
Hello world
First open source release of Campfire 🎉
This commit is contained in:
33
app/javascript/controllers/soft_keyboard_controller.js
Normal file
33
app/javascript/controllers/soft_keyboard_controller.js
Normal file
@@ -0,0 +1,33 @@
|
||||
import { Controller } from "@hotwired/stimulus"
|
||||
import { nextEventNamed } from "helpers/timing_helpers"
|
||||
import { isTouchDevice } from "helpers/navigator_helpers"
|
||||
|
||||
export default class extends Controller {
|
||||
static get shouldLoad() {
|
||||
return isTouchDevice()
|
||||
}
|
||||
|
||||
// Use a fake input to trigger the soft keyboard on actions that load async content
|
||||
// See https://gist.github.com/cathyxz/73739c1bdea7d7011abb236541dc9aaa
|
||||
async open(event) {
|
||||
const fakeInput = this.#focusOnFakeInput()
|
||||
this.#removeOnFocusOut(fakeInput)
|
||||
}
|
||||
|
||||
#focusOnFakeInput() {
|
||||
const fakeInput = document.createElement("input")
|
||||
|
||||
fakeInput.setAttribute("type", "text")
|
||||
fakeInput.setAttribute("class", "input--invisible")
|
||||
|
||||
this.element.appendChild(fakeInput)
|
||||
fakeInput.focus()
|
||||
|
||||
return fakeInput
|
||||
}
|
||||
|
||||
async #removeOnFocusOut(element) {
|
||||
await nextEventNamed("focusout", element)
|
||||
element.remove()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user