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

@highlight-ui/visual-language-tools

v2.1.0

Published

Welcome to Highlight UI's visual-language-tools library. This library provides a series of components and hooks to allow teams the flexibility to switch between desired visual languages at various stages throughout their application.

Downloads

18

Readme

@highlight-ui/visual-language-tools

Welcome to Highlight UI's visual-language-tools library. This library provides a series of components and hooks to allow teams the flexibility to switch between desired visual languages at various stages throughout their application.

Please note that these utilities are only designed to be used inside of the web monorepo.

Installation

pnpm add @highlight-ui/visual-language-tools

Utilities

<VisualLanguageSwitch />

VisualLanguageSwitch is a wrapper component to help teams abstract the logic for switching between different components at any level in their application. This can be used to load different UI modules in-place, or even entirely different page layouts. The component supports both static and dynamically imported components and makes use of React.lazy under the hood to enable splitting bundles to keep the application size down.

props

| Prop Name | Description | | ----------------- | ----------------------------------------------------------------------------------------------------------------------- | | on | The static or dynamic component to render in the enabled state. | | off | The static or dynamic component to render in the disabled state. | | flag? | The name of a Split to determine if the visual language is turned on. Defaults to the global Flow visual language flag. | | visualLanguage? | The name of a visual language to switch on. Accepts either 'Flow' or 'Vintage' and defaults to 'Flow'. | | force? | Explicitly set the use of the visual language (helpful for development). | | fallback? | The "fallback" design to use while determining which state to display. |

Basic Usage

This example shows a theoretical scenario in which the sidebar of an application is being completely redesigned for the new Flow visual language. By default, this will use the value of the global Split.

import { VisualLanguageSwitch } from '@highlight-ui/visual-language-tools';
import { CharacterGrid } from './CharacterGrid';
import { CharacterList } from './CharacterList';

const MyApplication = () => (
  <article>
    <h1>The Silmarillion</h1>
    <p>...</p>
    <aside>
      <VisualLanguageSwitch
        on={() => <CharacterGrid />}
        off={() => <CharacterList />}
      />
    </aside>
  </article>
);
export default MyApplication;

Advanced Usage

Forcing a Visual Language

In development, it can be helpful to force on or off the use of a visual language. This can be done by using the force prop.

import { VisualLanguageSwitch } from '@highlight-ui/visual-language-tools';
import { CharacterGrid } from './CharacterGrid';
import { CharacterList } from './CharacterList';

const MyApplication = () => (
  <article>
    <h1>The Silmarillion</h1>
    <p>...</p>
    <aside>
      <VisualLanguageSwitch
        on={() => <CharacterGrid />}
        off={() => <CharacterList />}
        force
      />
    </aside>
  </article>
);
export default MyApplication;

Using a Split

You can also provide your own Split to control the rendering of new layouts separately from the global Flow visual language Split.

import { VisualLanguageSwitch } from '@highlight-ui/visual-language-tools';
import { CharacterGrid } from './CharacterGrid';
import { CharacterList } from './CharacterList';

const MyApplication = () => (
  <article>
    <h1>The Silmarillion</h1>
    <p>...</p>
    <aside>
      <VisualLanguageSwitch
        on={() => <CharacterGrid />}
        off={() => <CharacterList />}
        flag="OMG-enable-grid-characters"
      />
    </aside>
  </article>
);
export default MyApplication;

Using dynamic imports

The on and off props can also be used to dynamically import components. This is useful for splitting bundle sizes and keeping the application size down. Note that the fallback value will be used when waiting for the Split to load and when waiting for a dynamic import to load.

import { VisualLanguageSwitch } from '@highlight-ui/visual-language-tools';

const MyApplication = () => (
  <article>
    <h1>The Silmarillion</h1>
    <p>...</p>
    <aside>
      <VisualLanguageSwitch
        on={() => import('./CharacterGrid')}
        off={() => import('./CharacterList')}
        fallback="Loading Split and/or dynamic components..."
      />
    </aside>
  </article>
);
export default MyApplication;

Using a fallback

A fallback can be used to provide a default design while the Split is being loaded.

import { VisualLanguageSwitch } from '@highlight-ui/visual-language-tools';
import { CharacterGrid } from './CharacterGrid';
import { CharacterList } from './CharacterList';

const MyApplication = () => (
  <article>
    <h1>The Silmarillion</h1>
    <p>...</p>
    <aside>
      <VisualLanguageSwitch
        on={() => <CharacterGrid />}
        off={() => <CharacterList />}
        fallback="Loading Split..."
      />
    </aside>
  </article>
);
export default MyApplication;

useVisualLanguage

useVisualLanguage is a utility hook that allows teams to apply a specific visual language at a given level and all children within the render tree will use the design tokens and logic related to that visual language where necessary.

This can happen at any level in the render tree: leaf, subtree, root. A child can override a parent's visual language. The specific implementation detail is left to the team to decide.

At the moment, only two visual languages are supported: Vintage and Flow.

Prerequisites

Options

| Prop Name | Description | | ----------------- | ----------------------------------------------------------------------------------------------------------------------- | | visualLanguage? | The name of a visual language to switch on. Accepts either 'Flow' or 'Vintage' and defaults to 'Flow'. | | flag? | The name of a Split to determine if the visual language is turned on. Defaults to the global Flow visual language flag. | | force? | Force-enable the specified visual language, regardless of the values of the other options or feature flag states. |

Returns

| Value | Description | | ------------------- | ------------------------------------------------------------------------------------------------------------------------------ | | enabled: boolean | This indicates whether the specified visual language is enabled. | | className: string | This is a CSS class name that you can attach to your DOM elements to apply the visual language at that level and its children. |

Basic Usage

This example shows the common usage of scoping an entire module or page and consuming the Vintage visual language controlled by the master feature flag.

import { useVisualLanguage } from '@highlight-ui/visual-language-tools';

const MyPageModule = () => {
  const { className } = useVisualLanguage();

  return (
    <article className={className}>
      <h1>The Silmarillion</h1>
      <p>...</p>
      <nav>
        <Button onClick={handleBack}>Previous page</Button>
        <Button onClick={handleNext}>Next page</Button>
      </nav>
    </article>
  );
};
/*
<article class="hui-visual-language_vintage">
  <h1>The Silmarillion</h1>
  <p>...</p>
  <nav>
    <button>Previous page</button>
    <button>Next page</button>
  </nav>
</article>
*/

Advanced Usage

This example makes use of useVisualLanguage to provide one treatment of the Vintage visual language at the top level of the component, and then a different visual language treatment at the nav level.

import { useVisualLanguage } from '@highlight-ui/visual-language-tools';

const MyPageModule = () => {
  const { className: vintageClassName } = useVisualLanguage();
  const { className: flowClassName } = useVisualLanguage({
    flag: 'MPM-enable-flow-visual-language',
    visualLanguage: 'Flow',
  });

  return (
    <article className={vintageClassName}>
      <h1>The Silmarillion</h1>
      <p>...</p>
      <nav className={flowClassName}>
        <Button onClick={handleBack}>Previous page</Button>
        <Button onClick={handleNext}>Next page</Button>
      </nav>
    </article>
  );
};
/*
<article class="hui-visual-language_vintage">
  <h1>The Silmarillion</h1>
  <p>...</p>
  <nav class="hui-visual-language_flow">
    <button>Previous page</button>
    <button>Next page</button>
  </nav>
</article>
*/

Forcing a Visual Language

A certain visual language can be forced on with the force option, regardless of the value of the visualLanguage option or the status of the feature flag. The value passed to this option will be used to inform the returned class name.

import { useVisualLanguage } from '@highlight-ui/visual-language-tools';

const MyPageModule = () => {
  const { className: vintageClassName } = useVisualLanguage();
  const { className: flowClassName } = useVisualLanguage({
    visualLanguage: 'Flow'
    force: true
  });

  return (
    <article className={vintageClassName}>
      <h1>The Silmarillion</h1>
      <p>...</p>
      <nav className={flowClassName}>
        <Button onClick={handleBack}>Previous page</Button>
        <Button onClick={handleNext}>Next page</Button>
      </nav>
    </article>
  );
};
/*
<article class="hui-visual-language_vintage">
  <h1>The Silmarillion</h1>
  <p>...</p>
  <nav class="hui-visual-language_flow">
    <button>Previous page</button>
    <button>Next page</button>
  </nav>
</article>
*/