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

@lalit-rana/dynamic-middle-ellipsis

v1.3.3

Published

Components and helper functions code to dynamically ellipsis(truncate) text in the middle

Downloads

7

Readme

Dynamic Middle Ellipsis

NPM GitHub Repo stars Website

Framework agnostic code to dynamically truncate long text in the middle.

Component wrappers provided for:

  • React (TS/JS)
  • Vanilla (TS/JS)
  • Svelte (TS/JS) - In progress
  • Solid (TS/JS) - In progress

Live demo website

Demo gif


Features:

  • :ocean: Dynamic: Automatically truncate on element resize.
  • :dart: Precise: Use of space, it does not over or under truncate.
  • :gear: Custom ellipsis string: Can pass any ellipsis string.
  • :zap: Fast:
    • Calculating available width is O(h) operation,
      • where "h" is height of DOM sub-tree from offset-parent to target node.
      • In most cases, this will be a constant O(1) operation.
    • Font character width are calculated at build time and cached in advance.
      • So we don't have to do this calculation at run time.
    • All calculations and updating DOM element happens in JS land.
      • So that it'll not cause unnecessary re-renders and slow down your webapp.
  • :white_check_mark: Handle all use cases, e.g.:
    • Parent width is dependent on child (circular dependency).
    • Can handle different font families, sizes and mixed-cases.
    • Wrap to multiple lines before truncating.
    • Truncating text share space with other fixed size elements.
    • Multiple separate truncating element share same space.
    • Accounts for padding and margin on parent element
  • :no_entry: Not a dependency: In your project, you don't install this as a package dependency. But rather get the code/logic.
  • :control_knobs: Full control: You get access to full code, so that you can modify it according to your project's need.
  • :package: Component wrappers available in:
    • React (TS/JS)
    • Vanilla (TS/JS)
    • Svelte (TS/JS) - In progress
    • Solid (TS/JS) - In progress

Installation:

npx @lalit-rana/dynamic-middle-ellipsis 

Follow the CLI instructions to get the code for your choice of framework and language.


How to use:

Simple usage:

React:

import MiddleEllipsis from "@/components/MiddleEllipsis";

<MiddleEllipsis.Span
  ellipsisSymbol=" [ - - - - - ] "
  lineLimit={2}
>
  Ellipsis text in center automatically when element resize
</MiddleEllipsis.Span>

Vanilla:

<middle-ellipsis-span
  ellipsisSymbol=" [ - - - - - ] "
  lineLimit={2}
>
  Ellipsis text in center automatically when element resize
</middle-ellipsis-span>
For multiple truncating elements sharing same space:

React:

import MiddleEllipsis from "@/components/MiddleEllipsis";
import { Badge } from "@/components/ui/badge";

<MiddleEllipsis.BoundingDiv>
  <Badge className="mr-2">
    <MiddleEllipsis.Span>Truncating text 1</MiddleEllipsis.Span>
  </Badge>
  <Badge className="mr-2">
    <MiddleEllipsis.Span>Truncating text 2</MiddleEllipsis.Span>
  </Badge>
  <Badge>
    <MiddleEllipsis.Span>Truncating text 3</MiddleEllipsis.Span>
  </Badge>
</MiddleEllipsis.BoundingDiv>

Vanilla:

<middle-ellipsis-div>
  <custom-badge>
    <middle-ellipsis-span>Truncating text 1</middle-ellipsis-span>
  </custom-badge>
  <custom-badge>
    <middle-ellipsis-span>Truncating text 2</middle-ellipsis-span>
  </custom-badge>
  <custom-badge>
    <middle-ellipsis-span>Truncating text 3</middle-ellipsis-span>
  </custom-badge>
</middle-ellipsis-div>