Your ember component has just been rendered. Have you ever wanted to focus an element in the DOM right after that? Like focusing this lonely input on your page? Or like focusing a full-screen modal's close button?
This package wraps a modifier to autofocus an element in the DOM. It works for inputs and for other elements.
As an alternative to installing this package, you might want to consider using this snippet.
By default, it will search for the first non-disabled input in the dom node that it has been attached to.
You can specify a custom selector to target other element as the first positional parameter.
If no child is found, then it will try to focus the element itself.
Here, #input-2
will be focused as input-1
is disabled:
Here, the autofocus will be applied to the button
Here, the autofocus will be applied to the button
yarn add -D ember-autofocus-modifier
or
npm install --save-dev ember-autofocus-modifier
- Ember.js v3.28 or above
- Ember CLI v3.28 or above
- Node.js v18 or above
- TypeScript v5.0 or above
The autofocus
helper has proper Glint types, which allow you to get strict type checking in your templates when using TypeScript.
Unless you are using strict mode templates (via first class component templates), you need to import the addon's Glint template registry entries as described in the Using Addons documentation:
// e.g. types/glint.d.ts
import "@glint/environment-ember-loose";
import type AutofocusRegistry from "ember-autofocus-modifier/template-registry";
declare module "@glint/environment-ember-loose/registry" {
export default interface Registry
extends AutofocusRegistry /* other addon registries */ {
// local entries
}
}
See the Contributing guide for details.
This project is licensed under the MIT License.