An easy way to validate forms using backend logic.
This package helps you quickly to build requests for REST API. Move your logic and backend requests to dedicated classes. Keep your code clean and elegant.
Wouldn't it be great if you could just use your back end to validate forms on the front end? This package provides a
BaseProxy
class that does exactly that. It can post itself to a configured endpoint and manage errors. The class
is meant to be used with a Laravel back end and it doesn't limit that you need only to work with laravel, Ruby on
Rail, NodeJs, ExpressJs, or any other languages.
Take a look at the usage section to view a detailed example on how to use it.
Install
You can install the package via yarn (or npm):
npm install laravel-vue-form-validator
yarn add laravel-vue-form-validator
Usage
import Vue from 'vue'
import FormValidator from 'laravel-vue-form-validator'
Vue.use(FormValidator)
Nuxt Support
Put it on top of axios module
export default {
modules: [
'laravel-vue-form-validator/nuxt',
'@nuxtjs/axios',
]
}
Note:
baseURL
is required.
You can define baseURL
at .env just one of them
API_URL=http://localhost::3000/api
API_HOST=http://localhost::3000/api
if your axios already defined in nuxt.config.js
export default {
axios: {
baseURL: process.env.API_URL
}
}
Advance usage
-------------- Todo --------------
Vue plugins
import Vue from 'vue'
import FormValidator from 'laravel-vue-form-validator'
Vue.use(FormValidator)
Note
Error response must look like:
{
"errors": {
"field": [
"The field is required."
]
}
}
It will create $errors
object inside components.
Methods are available:
Validator | Description |
---|---|
has(field = null) | check specific field error |
first(field) | get message by field name. |
missed(field = null) | check if there is no any error of given field name. |
nullState(field = null) | false |
any() | check if any errors exist. |
get(field) | get specific field. |
all() | get all errors. |
fill(errors = {}) | fill the errors object. |
flush() | clear all errors. |
clear(field) | clear specific error by field name. |
onKeydown(event) | event to clear error by event.target.name. (input the has name). |
Using with Vuex
1.Create proxies folder
~/proxies/NewsProxy.js
import { BaseProxy } from 'laravel-vue-form-validator'
class NewsProxy extends BaseProxy {
constructor(parameters = {}) {
super('news', parameters)
}
}
export default NewsProxy
2.Store
- Create news store
- actions.js
- getters.js
- mutation-types.js
- mutations.js
- state
actions.js
import { ALL } from './mutation-types'
import { NewsProxy } from '~/proxies'
import { NewsTransformer, PaginationTransformer } from '~/transformers'
import { pagination, notify } from '~/utils'
const proxy = new NewsProxy()
const all = async ({ commit, dispatch }, payload = {}) => {
const { fn } = payload
if (typeof fn === 'function') {
await fn(proxy)
}
try {
const { data, meta } = await proxy.all()
const all = {
items: NewsTransformer.fetchCollection(data),
pagination: PaginationTransformer.fetch(meta)
}
await commit(ALL, all)
} catch (e) {
const data = { items: [], pagination }
await commit(ALL, data)
await notify({ response: e })
}
}
export default {
all
}
getters.js
export default {
all: (state) => state.all
}
mutation-types.js
export const ALL = 'ALL'
export default { ALL }
mutations.js
import { ALL } from './mutation-types'
export default {
[ALL](state, payload = {}) {
const { items = [], pagination = {} } = payload
state.all = items
state.pagination = pagination
}
}
state.js
export default () => ({
all: [],
pagination: {}
})
How to call in components or pages
- news.vue pages
It can be called in mounted()
or asyncData()
asyncData()
export default {
async asyncData({ app, store }) {
const { id = null } = app.$auth.user
await store.dispatch('news/all', {
fn: (proxy) => {
proxy
.setParameters({
userId: id,
include: ['categories']
})
.removeParameters(['page', 'limit'])
}
})
}
}
mounted()
export default {
mounted() {
const { id = null } = this.$auth.user
this.$store.dispatch('news/all', {
fn: (proxy) => {
proxy
.setParameters({
userId: id,
include: ['categories']
})
.removeParameters(['page', 'limit'])
}
})
}
}
You can set or remove any parameters you like.
Proxy's methods are available
Method | Description |
---|---|
setParameter(key, value) | Set param by key and value |
removeParameter(key) | Remove param by key |
setParameters({ key: value, key1: value1 }) | Set params by key and value |
removeParameters([key1, key2]) | Remove params by keys |
removeParameters() | Remove all params |
if setParameter that value is empty or null it will remove that param for query string
Be sure to use only once in mounted()
or asyncData()
and asyncData()
is only available in NuxtJs
Use proxy in components
- news/_id.vue pages
import { NewsProxy } from '~/proxies'
const proxy = new NewsProxy()
export default {
methods: {
async fetchNews(id) {
try {
const { data } = await proxy.find(id)
this.detail = data
} catch (e) {
console.log(e)
}
}
},
mounted() {
this.fetchNews(this.$route.params.id)
}
}
Validations
Can use vue-vlidator
for client-side validator that inspired by Laravel.
Chantouch/vue-vlidator
Errors methods available
It can be called by this.$errors.**
Method | Description |
---|---|
all() | To get all errors messages |
has(attribute) | To check an attribute as any error |
has(attributes) | To check multiple attributes given have any errors |
first(attribute) | To get errors message by an attribute |
Todo
Add tests
Contact
Twitter @DevidCs83