npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mq-trigger

v1.0.18

Published

Media Query Trigger is a tiny JS utility to get notified when a CSS media query becomes active or inactive - useful for bridging two forms of reactivity - media queries and reactive JS frameworks.

Downloads

47

Readme

mq-trigger

Media Query Trigger is a tiny JS utility to get notified when a CSS media query becomes matching or non-matching.

It's particularly useful for bridging two forms of reactivity - media queries and reactive JS frameworks, such that stateful data can be updated when CSS variables are updated by media queries.

Examples

Example 1: Listen for all media queries to change their matching vs. non-matching state and log the result.

document.addEventListener('mqChange', evt => {
    const status = evt.detail.matches ? 'matches' : 'fails to match';
    console.log(`
        Query with constraints "${evt.detail.query}" is now ${status}
    `);
});
mqTrigger();

Example 2: Listen for a particular CSS variable to be updated by media queries as they match or fail to match.

HTML:

<p></p>

CSS:

@media (max-width: 700px) {
    p { --foo: 1; }
}
@media (min-width: 701px) and (max-width: 800px) {
    p { --foo: 2; }
}
@media (min-width: 801px) {
    p { --foo: 3; }
}

JS:

const p = document.querySelector('p');
p.addEventListener('mqChange', evt =>
    p.textContent = evt.detail.styles.getPropertyValue('--foo')
);

Usage

Install MQT via NPM or Yarn:

npm install mq-trigger
#or
yarn mq-trigger

Import via:

import { mqTrigger } from 'mq-trigger'

MQT is then used by first binding an mqChange event to an element, and then calling mqTrigger(element, filter, stylesheet). All arguments are optional, and work as follows:

  • element (element reference) - the element to scope MQT to. If omitted, this will be document. Useful when working with components in reactive frameworks.
  • filter (array) - an array of strings with which to filter media queries, e.g. ["700px"] will consider only media queries whose constraint(s) mention "700px". Only matching media queries will be considered. Useful where the DOM contains a great many CSS sheets and it may impact performance to apply MQT to all of them.
  • stylesheet (stylesheet object) - a specific stylesheet object for MQT to use, rather than iterating over all the stylesheets under document.stylesheets. Again, useful if the DOM contains many attached stylesheets.

The event will fire once on page load (for initial setup) and then again whenever relevant media queries change state.

The event callback is passed an event object, which contains a sub-object, detail, containing:

  • query (string) - the constraint text of the media query whose status changed
  • matches (bool) - the media query's status - true if currently matches, false if it doesn't
  • styles (obj) - a live CSSStyleDeclaration object of CSS properties (including variables) present on element. These can be retrieved via getPropertyValue().

Use with reactive JS

MQT can be particularly useful when used with a reactive JavaScript framework such as Vue. This is because it can bridge between the reactivity of the framework and the reactivity of media queries.

Consider a Vue component that uses a carousel child component (example). The number of carousel slides visible at any one time is controlled by a prop passed to the carousel, :items-to-show, which we'll bind to a component ref, itemsToShow.

We want our carousel to be responsive, and so as the screen width changes, we want to change this number.

<template>
    <div class='container' ref='container'>
        <carousel :items-to-show='' :data='data' />
    </div>
</template>

<script setup>

//prep
import { ref } from 'vue';
import { mqTrigger } from 'mq-trigger'

//set up itemsToShow ref - data set later by mqTrigger callback
const itemsToShow = ref(null);

//set up container ref, to scope MQT to the container element
const container = ref(null);
mqTrigger(form.value);

//set up MQT
container.value.addEventListener('mqChange', evt => {
    itemsToShow.value = parseInt(evt.detail.styles.getPropertyValue('--itemsToShow'));
});
mqTrigger(container.value);
</script>

<style scoped>
.container { --itemsToShow: 4; }
@media (max-width: 800px) {
    .container { --itemsToShow: 3; }
}
@media (max-width: 600px) {
    .container { --itemsToShow: 2; }
}
</style>

Et voila! Now our carousle is responsive, and we don't have to listen to window.onresize events in JavaScript to make it so!

Like this?

If I've helped you, consider being amazing and buying me a coffee - thank you!