2017-12-15 21:39:18 +00:00
|
|
|
import { assert } from '@ember/debug';
|
|
|
|
import Mixin from '@ember/object/mixin';
|
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import { assign } from '@ember/polyfills';
|
2017-11-21 01:09:28 +00:00
|
|
|
import queryString from 'npm:query-string';
|
|
|
|
|
2017-11-21 23:05:28 +00:00
|
|
|
const MAX_OUTPUT_LENGTH = 50000;
|
2017-11-21 01:09:28 +00:00
|
|
|
|
|
|
|
export default Mixin.create({
|
|
|
|
url: '',
|
|
|
|
params: computed(() => ({})),
|
|
|
|
logFetch() {
|
2017-12-15 21:39:18 +00:00
|
|
|
assert('Loggers need a logFetch method, which should have an interface like window.fetch');
|
2017-11-21 01:09:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
endOffset: null,
|
|
|
|
|
|
|
|
offsetParams: computed('endOffset', function() {
|
|
|
|
const endOffset = this.get('endOffset');
|
|
|
|
return endOffset
|
|
|
|
? { origin: 'start', offset: endOffset }
|
2017-11-21 23:05:28 +00:00
|
|
|
: { origin: 'end', offset: MAX_OUTPUT_LENGTH };
|
2017-11-21 01:09:28 +00:00
|
|
|
}),
|
|
|
|
|
|
|
|
additionalParams: computed(() => ({})),
|
|
|
|
|
|
|
|
fullUrl: computed('url', 'params', 'offsetParams', 'additionalParams', function() {
|
|
|
|
const queryParams = queryString.stringify(
|
|
|
|
assign({}, this.get('params'), this.get('offsetParams'), this.get('additionalParams'))
|
|
|
|
);
|
|
|
|
return `${this.get('url')}?${queryParams}`;
|
|
|
|
}),
|
|
|
|
});
|