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

multi-source-select

v2.4.0

Published

Multi-source select control

Downloads

175

Readme

MultiSelect

MultiSelect is a select component that can lookup or match text as a user types. MultiSelect will search across multiple sources and show matches in a dropdown list. It is intended to be an alternative to having multiple select components, and supports and/or opertions and multiple comparison types.

Visit the Demo page

To install

yarn add multi-select

or

npm i multi-select

Quick start

const dataSource: DataSource[] = [
  {
    name: 'list',
    title: 'list of strings',
    comparisons: defaultComparison,
    precedence: 1,
    source: ['asdas', 'assda', 'loadsp'],
  },
  {
    name: 'promise',
    title: 'Promise list',
    comparisons: defaultComparison,
    precedence: 3,
    source: async (text) => {
      return new Promise((resolve) => {
        setTimeout(
          () =>
            resolve(
              ['delayed', 'aploked', 'loadsp'].filter((item) =>
                item.includes(text),
              ),
            ),
          250,
        )
      })
    },
  },
  {
    name: 'function',
    title: 'Functions',
    comparisons: numberComparisons,
    match: (text: string) => !isNaN(Number(text)),
    value: (text: string) => Number.parseInt(text),
  },
  {
    name: 'regex',
    title: 'Regular Expression',
    comparisons: stringComparisons,
    precedence: 2,
    match: /^[a-zA-Z]{2,}$/,
    value: (text: string) => text,
  },
]

const App = () => {
  const [matchers, setMatchers] = React.useState<Matcher[]>()

  return (
    <>
      <h2>MutliSelect</h2>
      <MutliSelect
        matchers={matchers}
        dataSources={dataSource}
        onMatchersChanged={setMatchers}
      />
  )
}

Properties

  • matchers - matchers to show in the control
  • dataSources - datasources available to the control
  • defaultComparison - default comparison symbol, defaults to =
  • and - the and symbol, defaults to &
  • or - the or symbol, defaults to -
  • defaultItemLimit - default number of items to show for each datasource in the dropdown
  • simpleOperation - only allow users to selct comparisons, no brackets or and or
  • onMatchersChanged - event for when the matchers change
  • clearIcon - alternative icon to the X
  • maxDropDownHeight - the maximium hieght of the options dropdown
  • minDropDownWidth - the minimum width of the option dropdown
  • searchStartLength - the length of text at which to look for matches
  • styles - allows styles to be set for the different components

DataSources

There are two types of dataSource a lookup source that can be either a list or a promise, and a match datasource that can be either a function or a regex.

Lookup

source: SourceItem[] | ((text: string) => Promise<SourceItem[]>)
textGetter?: (item: object) => string
valueGetter?: (item: object) => Value
ignoreCase?: boolean
itemLimit?: number
searchStartLength?: number
  • Source - either a list of strings/objects, or a promise that returns a list of strings/objects
  • textGetter - if the source is an object, then this is a function to extract the display texst
  • valueGetter - if the source is an object, then this is a function to extract the value
  • ignoreCase - a boolean value to indicate if case is ignored when matching items
  • itemLimit - the maximium number of matches to shouw ina dropdown
  • searchStartLength - the text length required before datas source is searched

Match

match: RegExp | ((text: string) => boolean) | RegExp[] | ((text: string) => boolean)[]
value: (text: string) => Value
  • match - either a regex or a function, or an array to determine if the text entered is a match
  • value - a function that can extract a value from the text

Operators and Comparisons

and the compairsons on both sides must be true
or the comparisons on either side can be true

Comparisons can be configured as can the symbol for and/or

(   open bracket
)   close bracket

Keyboard shortcuts

  • Shift + ArrowLeft - navigate through the matchers
  • Shift + ArrowRight - navigate through the matchers
  • Ctrl + ArrowLeft - move selected matcher left
  • Ctrl + ArrowRight - move selected matcher right
  • Shift + Backspace - delete previous matcher
  • Ctrl + Backspace - delete all matchers
  • ArrowUp - move to next option in the list
  • ArrowDown - move to previuos option in the list
  • PageUp - move to next data source group in the option list
  • PageDown - move to previous data source group in the option list
  • Home - move to first data source group in the option list
  • End - move to last data source group in the option list
  • Enter - select current option / enter selection
  • Tab - select current option

Styling

The following components can be styled

  • optionsList
  • option
  • optionCategory
  • matcherView
  • matcherViewSelected
  • atcherToolTip
  • matcherEdit
  • input
  • mutliSelect
  • errorMessage

Style structure

{
  optionsList?: React.CSSProperties
  option?: React.CSSProperties
  optionCategory?: React.CSSProperties
  matcherView?: React.CSSProperties
  matcherViewSelected?: React.CSSProperties
  matcherToolTip?: React.CSSProperties
  matcherEdit?: React.CSSProperties
  input?: React.CSSProperties
  mutliSelect?: React.CSSProperties
  errorMessage?: React.CSSProperties
}

Global Variables

MultiSelect Main

  • border - --multiSelectMainBorder, default=1px solid rgb(204, 204, 204)
  • background color - --multiSelectMainBackgroundColor, default=rgb(255, 255, 255)
  • clear icon color - --multiSelectClearIcon
  • clear icon hover color - --multiSelectClearIconHoverColor, default=gray

Matcher View

  • background-color - --matcherViewMainBackgroundColor
  • delete icon color - --matcherViewMainDeleteIconColor
  • delete icon hover - --matcherViewMainDeleteIconHowverColor - default=gray
  • warning background color - --matcherViewWarningBackgroundColor, default=orange

ToolTip

  • background-color - --matcherViewTooltipBackgroundColor, default=rgb(255, 255, 255)
  • border - --matcherEditOptionsBorder, default=1px solid rgb(204, 204, 204)

Error Message

  • background-color - --errorMessageMainBackgroundColor, default=rgb(255, 255, 255)
  • border - --matcherEditOptionsBorder, default=1px solid rgb(204, 204, 204)
  • color --errorMessageMainErrorColor, default=red
  • icon hover color - --errorMessageMainErrorHoverColor, default=rgb(255, 124, 124)

Option List

  • color - --matcherEditOptionsColor, default=black
  • border - --matcherEditOptionsBorder, default=1px solid rgb(204, 204, 204)
  • background-color - --matcherEditOptionsBackgroundColor, default=rgb(255, 255, 255)
  • active opton background - --optionListActiveOption, default=lightgray
  • option category background - --matcherEditMainCategoryBackground, defalt=darkgrey