Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@solid-primitives/active-element
Advanced tools
A reactive document.activeElement. Check which element is currently focused.
createActiveElement
- A reactive document.activeElement
. Check which element is currently focused.createIsElementActive
- Pass in an element, and see if it's focused.npm install @solid-primitives/active-element
# or
yarn add @solid-primitives/active-element
createActiveElement
A reactive document.activeElement
. Check which element is currently focused.
import { createActiveElement } from "@solid-primitives/active-element";
const [activeEl, clear] = createActiveElement();
createEffect(() => {
console.log(activeEl());
});
// clear all event listeners
clear();
function createActiveElement(): [getter: Accessor<null | Element>, clear: ClearListeners];
createIsElementActive
Pass in an element, and see if it's focused.
import { createIsElementActive } from "@solid-primitives/active-element";
const [isFocused, clear] = createIsElementActive(() => el);
// "stop" and "start" are for adding and removing event listeners
// you can also use signals for ref
const [ref, setRef] = createSignal<Element>();
const [isFocused] = createIsElementActive(ref);
// this way if the element changes,
// the "isFocused" will start checking the new element
// clear all event listeners
clear();
import { isElementActive } from "@solid-primitives/active-element";
// prevent tree-shaking
isElementActive;
const [active, setActive] = createSignal(false)
<input use:isElementActive={setActive} />
function createIsElementActive(
target: MaybeAccessor<Element>
): [getter: Accessor<boolean>, clear: ClearListeners];
type IsElementActiveProps = (isActive: boolean) => void;
https://codesandbox.io/s/solid-primitives-active-element-q4kul?file=/index.tsx
1.0.0
Initial release as a Stage-2 primitive.
1.0.1
Updated event listener and util dependencies.
FAQs
A reactive document.activeElement. Check which element is currently focused.
The npm package @solid-primitives/active-element receives a total of 952 weekly downloads. As such, @solid-primitives/active-element popularity was classified as not popular.
We found that @solid-primitives/active-element demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.