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

use-url-search-params-hooks

v1.0.3

Published

React hook to use URLSearchParams browser API

Downloads

26

Readme

useUrlSearchParams

Simple collection of hooks to manipulate the URL search params. This package uses URLSearchParams browser API under the hood. Package API is simple, yet very powerful. Check out the documentation below on how to use it.

Why bother?

  • simple API
  • hooks that are responsible for single functionality
  • uses browser API URLSearchParams

Requirements

  • React >= 16.8.x
  • Node >= 10.x.x (if you need it for SSR)

Installation

Just install the package and import a hook that you want to use.

npm i use-url-search-params-hooks

or

yarn add use-url-search-params-hooks
import { useAppendSearchParam } from 'use-url-search-params-hooks';
import { useExcludeSearchParam } from 'use-url-search-params-hooks';
import { useGetAllSearchParams } from 'use-url-search-params-hooks';
import { useGetSearchParam } from 'use-url-search-params-hooks';
import { useHasSearchParam } from 'use-url-search-params-hooks';
import { usePickSearchParam } from 'use-url-search-params-hooks';
import { useStringifySearchParam } from 'use-url-search-params-hooks';

Usage

useGetSearchParams

Returns the values for a specific search param.

// With single param in the search
useGetSearchParam('?topic=api', 'topic'); // Returns 'api'

// With multiple params in the search
useGetSearchParam('?topic=api&topic=not-an-api', 'topic'); // Returns ['api', 'not-an-api']

| Name | Type | Description | Required | | -------- | -------- | -------------------------- | -------- | | search | string | Search params from the URL | true | | paramKey | string | Name of the param to get | true |

useGetAllSearchParams

Returns all params. It can either be an object with key/value pairs or array with just keys or values.

// Get object with key/value pairs
useGetAllSearchParams('?topic=api&technology=nodejs&level=junior');
// Returns {
//  topic: 'api',
//  technology: 'nodejs',
//  level: 'junior'
// }

// Get just an array of keys
useGetAllSearchParams('?topic=api&technology=nodejs&level=junior', {
  keysOnly: true,
}); // Returns ['topic', 'technology', 'level']

// Get just an array of keys
useGetAllSearchParams('?topic=api&technology=nodejs&level=junior', {
  valuesOnly: true,
}); // Returns ['api', 'nodejs', 'junior']

| Name | Type | Description | Required | | ------------------ | --------- | ----------------------------------------------- | -------- | | search | string | Search params from the URL | true | | options.keysOnly | boolean | If set to true, returns only an array of keys | false | | options.valuesOnly | boolean | If set to true, returns only an array of values | false |

useAppendSearchParam

Appends additional search params. Returns updated params string.

// Appends two params
useAppendSearchParam('?topic=api', {
  technology: 'nodejs',
  level: 'junior',
});
// Returns `topic=api&technology=nodejs&level=junior`
useAppendSearchParam(
  '?topic=api',
  { technology: ['javascript', 'nodejs', 'react'] },
  { arrayType: 'separator', separator: '|' }
);
// Returns `topic=api&technology=api|nodejs|react`

useAppendSearchParam(
  '?topic=api',
  { technology: ['javascript', 'nodejs', 'react'] },
  { arrayType: 'separator', separator: ',' }
);
// Returns `topic=api&technology=api,nodejs,react`

useAppendSearchParam(
  '?topic=api',
  { technology: ['javascript', 'nodejs', 'react'] },
  { arrayType: 'bracket' }
);
// Returns `topic=api&technology[]=api&technology[]=nodejs&technology[]=react`

useAppendSearchParam(
  '?topic=api',
  { technology: ['javascript', 'nodejs', 'react'] },
  { arrayType: 'indexedBracket' }
);
// Returns `topic=api&technology[0]=api&technology[1]=nodejs&technology[2]=react`

| Name | Type | Description | Required | | ------ | -------- | --------------------------------------------------- | -------- | | search | string | Search params from the URL | true | | params | object | Key/value pairs of params that needs to be appended | true |

useExcludeSearchParam

Removes search params from the url. Returns updated params string.

// Removes single param
useExcludeSearchParam('?topic=api&technology=nodejs', 'technology');
// Returns `topic=api`

// Removes multiple params
useExcludeSearchParam('?topic=api&technology=nodejs&level=junior', [
  'topic',
  'technology',
]);
// Returns `level=junior`

| Name | Type | Description | Required | | ------ | -------- | -------------------------- | -------------------------------------- | | search | string | Search params from the URL | true | | params | string | array<string> | Param or array of params to be removed | true |

useHasSearchParam

Checks if param exists.

useHasSearchParam('?topic=api&technology=nodejs&level=junior', 'topic');
// Returns true

useHasSearchParam('?topic=api&level=junior', 'technology');
// Returns false

| Name | Type | Description | Required | | ------ | -------- | ------------------------------------- | -------- | | search | string | Search params from the URL | true | | params | string | Param that existence is to be checked | true |

usePickSearchParam

Picks which param(s) needs to remain and removes other ones.

// Picks only topic param
usePickSearchParam('?topic=api&technology=nodejs&level=junior', 'topic');
// Returns `topic=api`

// Picks two params param
usePickSearchParam('?topic=api&technology=nodejs&level=junior', [
  'topic',
  'level',
]);
// Returns `topic=api&level=junior`

| Name | Type | Description | Required | | ------ | -------- | -------------------------- | ---------------------------------- | | search | string | Search params from the URL | true | | params | string | array<string> | Param or array of params to remain | true |

useStringifySearchParam

Creates a search param string, based on provided object.

useStringifySearchParam({ topic: 'api', technology: 'nodejs' });
// Returns `topic=api&technology=nodejs`

An array can also be passed as a value of the param. There are few options to do that.

useStringifySearchParam(
  { topic: ['api', 'nodejs', 'react'] },
  { arrayType: 'separator', separator: '|' }
);
// Returns `topic=api|nodejs|react`

useStringifySearchParam(
  { topic: ['api', 'nodejs', 'react'] },
  { arrayType: 'separator', separator: ',' }
);
// Returns `topic=api,nodejs,react`

useStringifySearchParam(
  { topic: ['api', 'nodejs', 'react'] },
  { arrayType: 'bracket' }
);
// Returns `topic[]=api&topic[]=nodejs&topic[]=react`

useStringifySearchParam(
  { topic: ['api', 'nodejs', 'react'] },
  { arrayType: 'indexedBracket' }
);
// Returns `topic[0]=api&topic[1]=nodejs&topic[2]=react`

| Name | Type | Description | Required | | ----------------- | ---------------------- | ---------------------------------------------------------------------------------------------------------------- | ------------------------------- | | params | object<string, string | array> | Object with params to stringify | true | | options.arrayType | 'separator' | 'bracket' | 'indexedBracket' | Defines how array should be parsed | false | | options.separator | string | Defines what kind of separator will be used in array. Use with care as not all characters will work with the URL | false |

Tips

  • to get the params from your url, you can use:
    • in most cases -> window.location.search
    • with React Router -> this.props.location.search or props.location.search
    • with Reach Router -> import { useLocation } from "@reach/router" and then const { search } = useLocation()
  • notice that hooks that returns the search string, will return it without the question mark i.e. topic=api&technology=nodejs, it's because assigning new string to location.search will add it automatically location.search = topic=api&technology=nodejs -> ?topic=api&technology=nodejs

Browser support

  • all major desktop and mobile browsers apart from Internet Explorer (there's no plan for supporting it)

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Maciek Grzybek - @maciek_g88 - [email protected] - www.maciekgrzybek.dev