1.0.3 • Published 4 years ago

use-url-search-params-hooks v1.0.3

Weekly downloads
4
License
ISC
Repository
-
Last release
4 years ago

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']
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
paramKeystringName of the param to gettrue

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']
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
options.keysOnlybooleanIf set to true, returns only an array of keysfalse
options.valuesOnlybooleanIf set to true, returns only an array of valuesfalse

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`
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
paramsobjectKey/value pairs of params that needs to be appendedtrue

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`
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
paramsstring | array<string>Param or array of params to be removedtrue

useHasSearchParam

Checks if param exists.

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

useHasSearchParam('?topic=api&level=junior', 'technology');
// Returns false
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
paramsstringParam that existence is to be checkedtrue

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`
NameTypeDescriptionRequired
searchstringSearch params from the URLtrue
paramsstring | array<string>Param or array of params to remaintrue

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`
NameTypeDescriptionRequired
paramsobject<string, string | array>Object with params to stringifytrue
options.arrayType'separator' | 'bracket' | 'indexedBracket'Defines how array should be parsedfalse
options.separatorstringDefines what kind of separator will be used in array. Use with care as not all characters will work with the URLfalse

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 - maciekgrzybek1@gmail.com - www.maciekgrzybek.dev

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago