Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
laravel-vue-form-validator
Advanced tools
🔥 If you use Laravel, this package matches perfectly with andersao/l5-repository.
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.
You can install the package via yarn (or npm):
npm install laravel-vue-form-validator
yarn add laravel-vue-form-validator
import Vue from 'vue'
import FormValidator from 'laravel-vue-form-validator'
Vue.use(FormValidator)
Put it on top of axios module
export default {
modules: [
'laravel-vue-form-validator/nuxt',
'@nuxtjs/axios',
]
}
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
}
}
-------------- Todo --------------
import Vue from 'vue'
import FormValidator from 'laravel-vue-form-validator'
Vue.use(FormValidator)
Error response must look like:
{
"errors": {
"field": [
"The field is required."
]
}
}
It will create $errors
object inside components.
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). |
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
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: {}
})
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.
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
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)
}
}
Can use vue-vlidator
for client-side validator that inspired by Laravel.
Chantouch/vue-vlidator
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 |
Twitter @DevidCs83
FAQs
An easy way to validate forms using back end logic
The npm package laravel-vue-form-validator receives a total of 12 weekly downloads. As such, laravel-vue-form-validator popularity was classified as not popular.
We found that laravel-vue-form-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.