@onehat/data 1.21.12 → 1.21.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/data",
3
- "version": "1.21.12",
3
+ "version": "1.21.13",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -238,17 +238,26 @@ class OneBuildRepository extends AjaxRepository {
238
238
  */
239
239
  _processServerResponse(result) {
240
240
 
241
+ const retNull = {
242
+ root: null,
243
+ success: false,
244
+ total: 0,
245
+ message: null,
246
+ };
247
+
241
248
  if (result === false) { // e.g. 401 error
242
- return {
243
- root: null,
244
- success: false,
245
- total: 0,
246
- message: null,
247
- };
249
+ return retNull;
250
+ }
251
+
252
+ // use try/catch in case the response is not JSON
253
+ let response;
254
+ try {
255
+ response = _.isPlainObject(result.data) ? result.data : this.reader.read(result.data);
256
+ } catch(e) {
257
+ return retNull;
248
258
  }
249
259
 
250
260
  const
251
- response = _.isPlainObject(result.data) ? result.data : this.reader.read(result.data),
252
261
  root = response[this.rootProperty],
253
262
  success = response[this.successProperty],
254
263
  total = response[this.totalProperty],
@@ -543,22 +552,22 @@ class OneBuildRepository extends AjaxRepository {
543
552
  return;
544
553
  }
545
554
 
555
+ const data = {
556
+ url: 'Users/apiLogout',
557
+ method: 'POST',
558
+ baseURL: this.api.baseURL,
559
+ headers: _.merge({
560
+ 'Content-Type': 'application/json',
561
+ Accept: 'application/json',
562
+ }, this.headers),
563
+ timeout: this.timeout,
564
+ };
565
+
546
566
  if (this.debugMode) {
547
- console.log('logout');
567
+ console.log('logout', data);
548
568
  }
549
569
 
550
- const headers = _.merge({
551
- 'Content-Type': 'application/json',
552
- Accept: 'application/json',
553
- }, this.headers);
554
-
555
- return this.axios({
556
- url: 'Users/apiLogout',
557
- method: 'POST',
558
- baseURL: this.api.baseURL,
559
- headers,
560
- timeout: this.timeout,
561
- })
570
+ return this.axios(data)
562
571
  .then((result) => {
563
572
  if (this.debugMode) {
564
573
  console.log('logout response', result);