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

@pageworks/device-manager

v1.2.3

Published

A TypeScript module for handling device detection and status classes.

Downloads

14

Readme

Device Manager

A TypeScript module for handling device detection and status classes.

Installation

Download Device Manager via NPM:

npm i --save @pageworks/device-manager

Once the package is installed import the package:

import DeviceManager from '@pageworks/device-manager';

Using Device Manager

Start by instantiating a new DeviceManager class with new DeviceManager();. The Device Manager class take two optional parameters. First is a boolean for enabling debug mode, by default this value is false. The second value is a boolean telling Device Manager if you want the status classes added to the document, the default value is false.

Device Manager offers several static functions that can be called to check the users' browser agent. To use these functions combine DeviceManager with one of the function names from the table below. (ex: DeviceManager.isIE).

| Function | Return | Default | | ------------------- |:----------------------- |:-------------- | | isChrome | boolean | false | | isIE | boolean | false | | isEdge | boolean | false | | isSafari | boolean | false | | isFirefox | boolean | false | | isOpera | boolean | false | | isBlinkEngine | boolean | false | | connection | NetworkInformation | undefined |

Using The Custom Touch Class

In order to fix the annoying sticky :hover status on mobile/touch devices Device Manager offers a simple way to track touch classes. To see the custom touch classes in action view the demo on a device that supports touch input.

Working With Custom Touch

To add the custom touch status tracking to any element just add the js-touch class.

<div class="js-touch">
    <span>Touch Me!</span>
</div>

Styling Raw Touch

Any element with js-touch will toggle the is-touching status class when the element is being touched by the user. You could style elements yourself using the example below.

div{
    border: 2px solid red;
}

div.is-touching{
    border-color: blue;
}

SASS Mixin

The mixin below allows you to easily manage the style of elements only when they're being touched.

@mixin touch{
    &.is-touching{
        @content;
    }
}

In order to prevent the sticky status you could also use two other mixins for only applying :hover CSS when the user is not using a touch device or if the device supports touch but the user isn't using touch.

@mixin hover{
    &:hover{
        html.is-not-touch-device & {
            @content;
        }

        html.is-touch-device:not(.has-touched) & {
            @content
        }
    }
}

@mixin active{
    &:active{
        html.is-not-touch-device & {
            @content;
        }
    }
}

Experimental NetworkInformation API

PLEASE NOTE: The NetworkInformation API is still in the initial draft stage but is supported on the majority of mobile browsers. Use on production at your own risk.

The safest way to work the NetworkInformation API in it's current (draft) stage is to use it to restrict features when needed. You should always assume that the NetworkInformation will be undefined. As an example let's say you have an auto-playing background video on the page. The videos load() method should fire if the NetworkInformation is undefined or if the effectiveType is 4g. If the type is 3g, 2g, or slow-2g you could use a background image instead. This won't prevent you from wasting mobile users date since LTE connections are 4g and any device connected via WIFI are also 4g you'll need to assume someone on 4g is connected via WIFI and data isn't that big of an issue.

Suggested Uses:

  • Always assume NetworkInformation will return undefined
  • Only use NetworkInformation to optimize the loading speed of your website/application
  • Assume any device on a 4g connection is using WIFI