open-nomad/ui/app/utils/classes/query-params.js
Michael Lange 0d9b94ab10 QueryParams primitive ported with a helper
This QueryParams object is defined in Ember source, but it isn't
public, which means there is no out of the box way to construct
the query params arg for LinkTo in JavaScript
2018-03-13 16:34:01 -07:00

13 lines
380 B
JavaScript

// Copied from source since it isn't exposed to import
// https://github.com/emberjs/ember.js/blob/v2.18.2/packages/ember-routing/lib/system/query_params.js
import EmberObject from '@ember/object';
const QueryParams = EmberObject.extend({
isQueryParams: true,
values: null,
});
export const qpBuilder = values => QueryParams.create({ values });
export default QueryParams;