vue-api-platform
v0.9.0
Published
Link between APIPlatform (and mercure) and Vuejs
Downloads
11
Readme
vue-api-platform
How to install:
npm i -s vue-api-platform
Use in your project
import ApiPlugin from 'vue-api-platform/plugin'
Vue.use(ApiPlugin)
Use in a component
export default {
data() {
return {
user_: null
}
},
props: [
'user'
],
api: {
user_() {
return this.user
}
},
apiBindError(key, error) {
// An error occurs during the binding
}
}
With parameters
export default {
data() {
return {
users_: null,
pages: [1,2,3]
}
},
props: [
'users'
],
api: {
users_: {
func () {
return this.users
},
pages () {
return this.pages
}
}
},
apiBindError(key, error) {
// An error occurs during the binding
}
}
Functions
- $cacheDataApi set yourself ApiPlatform datas
fetch('/entities?page=1').then(response => {
if (response.ok) return response.json()
throw reponse
}).then(datas => {
this.$cacheDataApi(datas)
})
- $refreshApi force refresh of a key or an URI
import ApiMixin from 'vue-api-platform/mixin'
export default {
mixins: [
ApiMixin('user')
],
methods: {
refreshByKey() {
this.$refreshApi('user_')
},
refreshByURI() {
this.$refreshApi(this.user_['@id'])
}
}
}
Use with the mixin with props
import ApiMixin from 'vue-api-platform/mixin'
export default {
mixins: [
ApiMixin('user')
]
}
//Is the same than this
export default {
data() {
return {
user_: null
}
},
props: {
user: {
required: true
}
},
api: {
user_() {
return this.user
}
}
}
The mixin have got many parameters:
- expose (false) : create a mixin named like the property passed (only works with computed)
- collection (false) : set the data is an URI of a collection, so the return datas are in an array
- array (false) : set that the query is an array, so the return datas are in an array
- required (true) : set the props required or not
- pages: list of pages (only works with collection)
With parameters
import ApiMixin from 'vue-api-platform/mixin'
export default {
data() {
return {
itemUrl: null,
}
},
mixins: [
ApiMixin('item', {
computed () {
return this.itemUrl
},
expose: true
})
]
}
//Is the same than this
export default {
data() {
return {
itemUrl: null,
item_: null
}
},
api: {
item_() {
return this.itemUrl
}
},
computed: {
item() {
return this.item_
}
}
}
Other utils mixin
isLoading
Create a computed apiIsLoading
which return a boolean if the there's a resource which is actually downloading
import apiIsLoading from 'vue-api-platform/mixin/isLoading'
export default {
mixins: [
apiIsLoading
]
}
loadingRate
Create a computed apiLoadingRate
which return a percent that correspond to the number of variable which are actually downloading (0 => nothing downloaded, 100 => everything is downloaded)
import apiLoadingRate from 'vue-api-platform/mixin/loadingRate'
export default {
mixins: [
apiLoadingRate
]
}
Debouncing queries
You can enable debounce for queries at a global level, or mixin level. The query will be executed once immediately the first time, afterwards it won't be executed again if it's called before its debounceTimeout
is expired. This is useful if you need to fire a query according to a text input change for example.
By default, debouncing is disabled for all queries.
use at global level
import ApiPlugin from 'vue-api-platform/plugin'
Vue.use(ApiPlugin, {
debounce: Boolean, // default to false
debounceTimeout: Number // defaults to 500ms
// other options...
})
use at mixin level
import ApiMixin from 'vue-api-platform/mixin'
export default {
mixin: [
ApiMixin('myEntity', {
options: {
debounce: Boolean, // default to false
debounceTimeout: Number // defaults to 500ms
}
// other options...
})
]
}