Git Product home page Git Product logo

superquery's Introduction

superquery

Build Status Coverage Status semantic-release Commitizen friendly

DEPRECATED

This library is no longer being maintained.

Usage

npm install --save superquery
import createQuery from 'superquery'

// choose parse and stringify functions from whatever library you want and pass them in
import {parse, stringify} from 'qs'
const Query = createQuery({parse, stringify})

Query(...) takes as many search strings or objects you want and merges them together

const query = Query('strings=work', {objects: 'work too'}, 'arguments=are%20unlimited')
// query.strings === 'work'
// query.objects === 'work too'
// query.arguments === 'are unlimited'

Query(...).toString() returns the query string, so it works inside template strings:

const newURL = `http://localhost?${Query('strings=work', {objects: 'work too'}, 'arguments=are%20unlimited')}`
// http://localhost?strings=work&objects=work%20too&arguments=are%20unlimited

So Query is super convenient for merging extra values into the existing query:

const Results = ({match, location}) => (
  <div>
    <table>...</table>
    ...
    <Link to={`${match.url}?${Query(location.search, {page: 1})}`}>
      Page 1
    </Link>
    <Link to={`${match.url}?${Query(location.search, {page: 2})}`}>
      Page 2
    </Link>
    ...
  </div>
)

superquery's People

Contributors

jedwards1211 avatar greenkeeper[bot] avatar

Watchers

James Cloos avatar Jason McLaurin avatar  avatar  avatar

superquery's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.