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

@abcnews/mount-utils

v3.0.0

Published

Utilities for working with mount points

Downloads

109

Readme

@abcnews/mount-utils

Utilities for working with mount points.

Usage

npm i @abcnews/mount-utils
<body>
  <div id="abc" data-mount />
  <a id="abc123" />
  <a name="def" />
  <a id="ghi" href="https://www.abc.net.au/news/">
    A link that is also a #ghi deep link
  </a>
  <p>Not a mount</p>
</body>
import {
  isMount,
  getMountValue,
  selectMounts
} from '@abcnews/mount-utils';

selectMounts();
// > [<div id="abc" data-mount>, <div id="abc123" data-mount>, <div id="def" data-mount>]

selectMounts('abc', {exact: true})
// > [<div id="abc" data-mount>]

selectMounts('abc')
// > [<div id="abc" data-mount>, <div id="abc123" data-mount>]

[...document.body.children].filter(isMount).map(getMountValue);
// > ['abc', 'abc123, 'def']

History

Core Media allows the creation of deep links in Article documents' rich text by writing a line containing only a # character followed by one or more alphanumeric characters:

I'm a paragraph before the deep link.

#example

I'm a paragraph after the deep link.

In Phase 1 / Phase 2 applications, deep links are rendered as <a> elements with their name attribute set to the deep link's value, e.g: <a name="example" />. Our original strategy with mount points was to select these elements with something like: (value) => document.querySelector(`a[name^="${value}"]`), replace them with block elements (usually <div>s), then append interactive content to them.

When Presentation Layer was originally introduced, the News Web team had recognised that <a name="example" /> is invalid HTML5, as deep links should be defined by the id attribute. Because of this, PL applications debuted with the HTML5-spec-pleasing form: <a id="example" />.

This made things slightly more complicated, because although we could simply extend our selectors to `a[name^="${value}"],a[id^="${value}"]` and cover both variants, we'd have to update many older interactives/libraries to support the new pattern if we wanted them to have a chance of running atop PL. It would also be more dangerous to replace these elements with <div>s to mount interactives to, because PL's React DOM tree could be re-written at any point, reverting our modifications (or worse: introducing page-crashing bugs).

An effort to support mount points as a first-class citizen in PL began in early 2020, and has resulted in changes in how PL renders deep links on the News Web application, making them safer for our use. They are now <div> elements that are guaranteed to not revert any DOM structure appended to them. They now look like this: <div id="example" data-mount />.

Of course, this complicates our mount point selection further, which is the main thing this library tries to address (by hiding the implementation details behind an API), but it'll give us more power and consistency, going forward.

API

selectMounts(selector?: string, options?: SelectMountsOptions): Mount[]

Returns an array of mount nodes that match the selector and may have been transformed as per the supplied options.

type SelectMountsOptions{
  exact?: boolean; // default false
  includeOwnUsed?: boolean; // default false
  markAsUsed?: boolean; // default true
}

Any mount points that have been marked as used by another instance of this library will always be excluded from the results.

The examples below assume that they're run in isolation. In reality, unless the markAsUsed option is false and/or the includeOwnUsed option is true, the same mounts would not be returned on a subsequent call.

<body>
  <div id="abc" />
  <div id="abcdef" />
  <div id="ghi" data-mount />
  <div id="abc123" data-mount />
  <div id="other" data-mount data-mount-used="some-uuid" />
</body>
import { selectMounts } from '@abcnews/mount-utils';

selectMounts();
// > [<div id="abc">, <div id="abcdef">, <div id="ghi">, <div id="abc123">]

selectMounts('abc');
// > [<div id="abc">, <div id="abcdef">, <div id="abc123">]

selectMounts('abc', { exact: true });
// > [<div id="abc">]

isMount(x: unknown, selector?: string, exact?: boolean): boolean

Returns whether the argument passed in is a mount point.

Will return true for valid mount points even if marked as used, including those marked by another instance of this library.

<body>
  <div id="abc" data-mount />
</body>
import { isMount } from '@abcnews/mount-utils';

isMount(123);
// > false

isMount(document.body);
// > false

isMount(document.body.firstElementChild);
// > true

It first checks that the argument is an Element, then checks that it has attributes matching a valid mount point.

Use with a selector value

Returns whether the first argument passed in is a mount point and matches a given selector value (as a prefix by default and optionally as an exact match by passing true as the third argument).

<body>
  <p>Nope</p>
  <div id="abc" />
  <div id="abc123" />
  <div id="abc456" data-mount />
  <div id="def" data-mount />
</body>
[...document.body.children].map((el) => isMount(el));
// > [false, true, true, true, true]

[...document.body.children].map((el) => isMount(el, 'abc'));
// > [false, true, true, true, false]

[...document.body.children].map((el) => isMount(el, 'abc', true));
// > [false, true, false, false, false]

getMountValue(el: Element, prefix?: string): string

Returns the value of the applicable attribute on a mount point and optionally trims a supplied prefix.

<body>
  <div id="abc" />
  <div id="abcdef" />
  <div id="ghi" data-mount />
  <div id="abc123" data-mount />
</body>
import { getMountValue } from '@abcnews/mount-utils';

[...document.body.children].map((el) => getMountValue(el));
// > ['abc', 'abcdef, 'ghi', 'abc123']

[...document.body.children].map((el) => getMountValue(el, 'abc'));
// > ['', 'def, 'ghi', '123']

useMount(mount: Mount)

Mark a mount as used. This should be used sparingly since selectMounts will do this automatically by default.

A mount is considered used if it has a data-mount-used="<some uuid>" attribute set. The UUID is unique to the instance of this library.

<body>
  <div id="abc" data-mount />
</body>
const els = selectMounts('abc', { markAsUsed: false });
// > [<div id="abc" data-mount>]

useMount(els[0]);
// > <div id="abc" data-mount data-mount-used="<uuid>">

isUsed(mount: Mount)

Check if a mount point has been marked as used.

<body>
  <div id="abc" data-mount />
</body>
selectMounts('abc').map((mnt) => isUsed(mnt));
// > [true]

selectMounts('abc', { markAsUsed: false }).map((mnt) => isUsed(mnt));
// > [false]

Authors