1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
2018-09-16 19:56:22 +02:00

13 lines
244 B
JavaScript

/*
* Routing helpers: Make query link with props (q and sorting)
*/
export const makeQueryLinkProps = function(routing, query, sort, order) {
return {
pathname: routing.pathname,
search: `?s=${sort}&o=${order}&q=${query}`
};
}