mirror of
https://github.com/hodgef/simple-keyboard.git
synced 2025-04-03 13:28:02 +08:00
Add module constructor check. Fixes https://github.com/hodgef/react-simple-keyboard/issues/3060
This commit is contained in:
parent
f82ae2369b
commit
485292ce68
@ -1614,7 +1614,9 @@ class SimpleKeyboard {
|
||||
loadModules() {
|
||||
if (Array.isArray(this.options.modules)) {
|
||||
this.options.modules.forEach((KeyboardModule) => {
|
||||
const keyboardModule = new KeyboardModule(this);
|
||||
const keyboardModule = this.utilities.isConstructor(KeyboardModule) ?
|
||||
new KeyboardModule(this) : KeyboardModule(this);
|
||||
|
||||
keyboardModule.init && keyboardModule.init(this);
|
||||
});
|
||||
|
||||
|
@ -561,6 +561,18 @@ class Utilities {
|
||||
* Reusable empty function
|
||||
*/
|
||||
static noop = () => {};
|
||||
|
||||
/**
|
||||
* Check if a function is a constructor
|
||||
*/
|
||||
isConstructor(f: any) {
|
||||
try {
|
||||
Reflect.construct(String, [], f);
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
export default Utilities;
|
||||
|
Loading…
x
Reference in New Issue
Block a user