Comparing version
{ | ||
"name": "clockvine", | ||
"version": "2.0.0-alpha.6", | ||
"version": "2.0.0-alpha.7", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "author": "Kevin Hamer [kh] <kevin@imarc.com>", |
export { default as DefaultUrlFormatter } from './DefaultUrlFormatter.js' | ||
export { default as JsonApi } from './JsonApi.js' | ||
export { default as JsonSingletonApi } from './JsonSingletonApi.js' | ||
export { default as SingletonUrlFormatter } from './SingletonUrlFormatter.js' | ||
export { default as UrlFormatter } from './UrlFormatter.js' | ||
export { default as XsrfFetch } from './XsrfFetch.js' | ||
export { default as defineApiStore } from './defineApiStore.js' |
@@ -1,3 +0,1 @@ | ||
import { unref, isRef, isReactive } from 'vue' | ||
const filterKeys = (obj, remove = [null, undefined]) => { | ||
@@ -4,0 +2,0 @@ return Object.fromEntries(Object.entries(obj).filter(([_, v]) => !remove.includes(v))) |
@@ -1,16 +0,6 @@ | ||
export default function JsonApi (baseUrl) { | ||
const createQueryUrl = function (action) { | ||
if (['show', 'update', 'destroy'].includes(action)) { | ||
return baseUrl | ||
} else { | ||
throw new Error(`Invalid action ${action} on JsonSingletonApi endpoint.`) | ||
} | ||
} | ||
import SingletonUrlFormatter from './SingletonUrlFormatter.js' | ||
import JsonApi from './JsonApi.js' | ||
this.key = createQueryUrl | ||
this.show = async function (id) { | ||
const url = createQueryUrl('show', id) | ||
return fetch(url).then(r => r.json()).then(r => r.data) | ||
} | ||
export default function JsonSingletonApi (baseUrl, options) { | ||
return new JsonApi(baseUrl, { ...options, Formatter: SingletonUrlFormatter }) | ||
} |
25035
0.88%17
6.25%6
-14.29%