
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
# install dependencies
npm install
# start playground
npm start
import Vue from 'vue'
import Vrf from 'vrf'
Vue.use(Vrf)
Vrf (Vue Resource Form) is a solution for quickly writing declarative user interface forms.
First of all vrf is the specification of form components. There are so many great ui frameworks with different components API, so if you want migrate from one to other you will must refactor each form and probably, it isn't what you want. Vrf provides common abstract standard for forms like pure html forms, but more powerful.
This package contains a set of descriptors for each form element that you can use to create your own implementation. If you need to add a new property/feature to some component - this is probably an occasion to think about whether it is possible to add it to the core (this can be discussed in issues). If the it can be added to the core, this will mean that it is included in the standard and all authors of other implementations will also be able to implement it. If this is not possible, the property is added only for the adapter component and will work only for this adapter.
Vrf doesn't depends on current I18n, validation and network interaction libraries. Instead, it provides interfaces for integration with any one.
Vrf puts form at the forefront of your application, but at the same time all high-level features are provided unobtrusively and their activation is implemented explicitly. The main thesis of vrf is to stay simple while it is possible. This means, for example, that you can make the most of the built-in autoforming capabilities and not write any code, but if one day you need a more complex flow than effects can offer, you can simply turn off the auto mode and manually manipulate the form, while still taking the other advantages that vrf gives.
In other words, the complex things have the right to be complex, but simple must remain simple.
It allows you to write forms in this way:
<rf-form name="User" auto>
<rf-input name="firstName" />
<rf-input name="lastName" />
<rf-switch name="blocked" />
<rf-select name="roleId" options="roles" />
<rf-textarea name="comment" />
<rf-submit>Save</rf-submit>
</rf-form>
Such form will load and save data without a single line of Javascript code. This is possible due to the use of the effects, which describes the general logic of working with entities in your project. If some form required very specific logic, the form can be used in a lower level mode(without "auto" flag).
disabled / readonly for entire formBinding to an object is the cornerstone of vrf. This concept assumes that instead of defining a v-model for a field each time, you do a binding once — entirely on the form object, and simply inform each component of the form what the name of the field to which it is attached is called. Due to this knowledge, the form can take on the tasks of internationalization and display of validations (whereas when determining the v-model for each field, you are forced to do it yourself).
<template>
<rf-form :resource="resource" :errors="errors">
<rf-input name="title">
</rf-form>
</template>
<script>
export default {
data(){
return {
resource: {
title: ""
},
errors:{
title: ['Should not be empty']
}
}
}
}
</script>
The form passes a reactive context to all child components (using the Provide / Inject API), so any descendant of the form (not even direct) can receive this data. This allows you to break complex forms into parts, but without the need, it is better not to use this opportunity and try to keep the entire form in one file.
There are several ways to access the resource:
<rf-resource v-slot="{$resource}">
<div>{{$resource}}</div>
</rf-resource>
<template>
<div>
{{$resource}}
</div>
</template>
<script>
import {Resource} from 'vrf'
export default {
mixins: [
Resource
]
}
</script>
<template>
<div>
<input v-model="$value" />
{{$resource}}
</div>
</template>
<script>
import {descriptors} from 'vrf'
export default {
extends: descriptors.input
}
</script>
The resource can be in three places:
resource prop). In this case, you can get a reference to the resource using :resource.sync prop.The standard way of writing expressions that depdends on resource is using $resource variable from scoped slot on rf-form in main form file
<rf-form
name="Todo"
v-slot="{$resource}"
>
<rf-input name="title" :disabled="$resource.id" />
</rf-form>
It won't fail if $resource is not loaded yet, because scoped slot is rendered only after $resource is loaded. All required sources are initialized using empty arrays, so using $sources reference is safe as well.
If your form is splitted into files and you need conditional rendering in the file without rf-form - you should use rf-resource component to access the resource.
Some components (for example, such as selects) require options for their work. For these purposes, the form
sources property serves. It expects a hash of all the necessary options that can be accessed in specific components by name.
<template>
<rf-form :resource="todo" :sources="sources">
<rf-select name="status" options="statuses" />
</rf-form>
</template>
<script>
export default {
data(){
return {
resource: {
status: 1
},
sources: {
statuses: [
{
id: 1,
title: 'pending'
},
{
id: 2,
title: 'ready'
}
]
}
}
}
}
</script>
Instead of a string with the name of the options, you may also pass directly an array of options(but it is used less often since vrf's strength is precisely the declarative descriptions of forms and autoforms can load sources by name).
When you use a source name with autoforms, form uses effects to load the collection for a source. Internally, this is achieved by calling the method requireSource on the form when component was mounted or options prop was updated. Then the form chooses the most effective loading strategy depending on the stage at which the method requireSource was called. You may use this method in your own components, when you need sources for their work.
Vrf supports work with nested entities, both single and with collections. To work with them, the rf-nested component is used, which expects a scoped slot with form components for a nested entity. Internally, rf-nested uses the rf-form the required number of times, so the use of rf-nested can be equated with the declaration of the form inside the form, which can be duplicated if necessary.
<template>
<rf-form :resource="todo">
<rf-input name="title" />
<rf-nested name="subtasks"> // you may specify translation-name for nested scope, by default it will be singularized name
<template v-slot="props">
<rf-input name="title">
<rf-datepicker name="deadline" />
</template>
</rf-nested>
</rf-form>
</template>
<script>
export default {
data(){
return {
resource: {
title: '',
subtasks: [
{
title: '',
deadline: new Date
}
]
}
}
}
}
</script>
Autoforms are a special form mode in which the form within itself performs tasks of loading, saving data, forwarding validation errors, and can also perform some side effects, for example, redirecting to a page of a newly created entity.
Autoforms powered by Effects API which allows to create plugins in modular way. Due to this, it is possible to implement the flow of autoforms for the specifics of any project. You may use ready-made effects or implement your own.
Vrf provide some methods on rf-form allows you to manage data loading:
$refs.form.forceReload() // Completely reloading, excplicitly displayed to user
$refs.form.reloadResource() // Reload only resource without showing loaders
$refs.form.reloadResource(['messages']) // Reload only 'messages' key on resource
$refs.form.reloadSources() // Reload only sources
$refs.form.reloadRootResource(['options']) // reload root form resource, useful if nested component affects data on top level
Method reloadResource allows you to write custom components which may reload the piece of data they are responsible for.
import {descriptors} from 'vrf'
export default {
extends: descriptors.base,
methods: {
... // some logic mutating data on the server
invalidate(){
this.$form.reloadResource(this.name)
}
}
}
Vrf provides its own way to create simple buttons that activate async requests. These requests are served by effects and the received data stored in the context of the form(by analogy with a resource).
For example, this snippet renders a button that initiates POST request to /archive in a resource context.
<rf-action name="archive" />
You may change requests parameters by props
<rf-action
name="archive"
method="put"
:data="{force: true}"
:params="{queryParameter: 1}"
/>
rf-action in adapters may handle pending status by loader showing. Moreover, you can implement your own rf-action view using activator slot
<rf-action name="archive">
<template v-slot:activator="{on, pending, humanName}">
<my-great-button v-on="on" :loading="pending">{{humanName}}</my-great-button>
</template>
</rf-action>
To render the results, in simple cases you can use rf-action-result component(with slot or component).
<rf-action name="loadText" />
<rf-action-result name="loadText" component="some-component-with-data-and-or-status-props" />
<rf-action-result name="loadtext">
<template v-slot="{data}">
<p>{{data}}></p>
</template>
</rf-action-result>
Or/and use event result
<rf-action name="doSomething" @result="onResult" />
If you need reload resource on result, you may use prop reload-on-result
<rf-action name="switchMode" reload-on-result />
If your action must show toast in UI by result, this can be done in the effects. For example, in REST effect $message field will be processed by effect as a message for user and it will be emitted by showMessage.
You may run actions programmatically as well
<template>
<rf-form name="Todo" auto>
...
</rf-form>
</template>
<script>
export default {
methods: {
attachImage() {
const data = new FormData()
this.$form.executeAction('attachImage', {data, method: 'PUT'})
}
}
}
</script>
Sometimes you need to manage some bitwise values in your resource. There is rf-bitwise component to manage them. It has two modes -
you can use this component as a wrapper for checkboxes, or use its options property(like rf-select). It supports inverted mode as well.
<template>
<rf-form :resource="todo">
<!-- rf-bitwise as wrapper, markup mode -->
<rf-bitwise name="flags">
<rf-checkbox name="visible" power="0" />
<rf-checkbox name="editable" power="1" />
<rf-checkbox name="shareable" power="2" />
</rf-bitwise>
<!-- rf-bitwise renders checkboxes itself by options -->
<rf-bitwise
name="flags"
:options="options"
/>
</rf-form>
</template>
<script>
export default {
data(){
return {
resource: {
flags: 0
}
}
},
computed: {
options(){
return [
{
id: 0,
name: 'visible' // use title instead of name, if you don't need translations
},
{
id: 1,
name: 'editable'
},
{
id: 2,
name: 'shareable'
}
]
}
}
}
</script>
</template>
You may specify default props values for some inputs globally during vrf initialization. It allows you to set up common styles for ui framework if it uses props for customization.
Vue.use(Vrf, {
adapters: [
VrfVuetify
],
defaultProps: {
RfInput: {
outlined: true
}
}
})
In some cases you may want to use rf- controls outside of form, if you don't need form functionality, but still want to use the same elements without separating by vrf/non-vrf inputs. Regarding to this vrf inputs support v-model directive, allowing to use them in seamless way
<template>
<div>
<p>Enter your first name</p>
<rf-input v-model="firstName" />
</div>
</template>
<script>
export default {
data(){
return {
firstName: ''
}
}
}
</script>
Vrf is all about modularity, you may customize almost any part of it. The final result is achieved due to symbiosis of the following components:
Core(this package) - contains all business logic of forms. It implements form based on standard html components, without any styling and it's the foundation providing APIs for other modules.
Adapters - implements VRF using some ui framework over link components descriptors from core. Most likely you will use vrf with some adapter.
Translate lambda - function with (modelProperty, modelName) -> translation signature, used for translations
Effects - autoforms logic and side effects
Autocomplete providers - components containing autocompletes logic
Vrf uses effects to deal with auto-forms lifecycle and side effects. There are two types of effects - API and non-API effects.
API effects:
auto property of the rf-formVue.use(Vrf, {effects: [...]}) until some effect returns promise(this mechanic works only on onLoad, onLoadSources, onLoadSource, onSave, onCreate and onUpdate subscriptions)auto property of the rf-formEffectExecutor to auto property you may customize autoform logic ad-hocnon-API effects:
effects property of the rf-formeffects propertyThere are type definitions for more convenient developing effects. If you create a plugin, you should export an effect factory with default options to provide simple way to add new options in the future.
// effect.ts
import {Effect} from 'vrf'
export default (options = {}) : Effect => {
return{
name: 'effect-name',
api: true,
effect({onLoad, onLoadSource, onLoadSources, onSave, }){
onLoad((id) => Promise.resolve({}))
onLoadSource((name) => Promise.resolve([]))
onLoadSources((names) => Promise.resolve({}))
onSave((resource) => Promise.resolve())
}
}
}
// initialization of vrf in project
import effect from './effect'
const effects = [
effect()
]
Vue.use(Vrf, {effects})
Effects are mounted after auto/effects props changing and initially after form mounting. There are two effect lifecycle events:
onMounted - is fired on each effect mountingonUnmounted - is fired on each effect unmounting(when managing props are changed or form is destroyed). This subscription should be used to clear some stuff, for example some side event listeners.There are some subscriptions for api effects:
onLoad - is fired when form loads the resourceonLoadSources - is fired when form loads the sources in eager wayonLoadSource - is fired when form loads only one source because of form.requireSource execution. It happens for example if rf-select appeared as a result of condition renderingonSave - is fired when form is submitted. It is optional subscription, instead you may use more convenient onCreate and onUpdate subscriptions.onCreate - is fired when form creates new resourceonUpdate - is fire when form updates new resourceonCreated - is fired when onCreate returned an id of new created resource. There is a default trap for this event, which reloads form data, but it's possible to override this behaviour by using event.stopPropagation()onLoaded - is fired when data is received from backend, the same like after-load-success on the formonSuccess - is fired when resource is saved successfullyonFailure - is fired when resource wasn't saved due to errorsYou may implement data convertation after receiving resource from api effect and before sending. For this purpose Effects API has two subscriptions:
onAfterLoad - is fired each time when vrf received entities from api effect(for resource and for each entity of sources)onBeforeSave - is fired before resource will be savedThe listeners of these events are just mappers, which get object and return modified object. It's possible to use many converters in your application, they will be executed in the order of registrations in effects section. Converters should use api: true flag, because they should be executed always when auto is enabled.
There is a standard way to provide user notification customization using onShowMessage subscription. So, you may use showMessage helper to emit message from any effect using type definitions from vrf, and any notifications effect which uses onShowMessage subscription will be able to show this notification.
The adapter must export the added components, it can both override components from the vrf, and add new ones(with rf- prefix).
export default {
name: 'vrf-adapter-name',
components: {
RfInput
...
}
}
If you need install hook, you can add it, but you should be aware that it does not receive options, since they refer to vrf. If you want options, you need to export an adapter factory instead of an adapter.
export default (options) => {
name: 'vrf-adapter-name',
components: {
RfInput
...
},
install(Vue){
}
}
One of the main things to consider when writing an adapter is that your adapter should not have a dependency vrf or a ui framework that you are wrapping(you must include them only in dev and peer dependencies). Following this rule will avoid duplication of dependencies in the final product.
For this reason, instead of importing the parent descriptor from vrf (which is only valid in the final product), you need to use the vrfParent key in your component.
<template>
<input type="text" v-model="$value" />
</template>
<script>
export default {
vrfParent: 'input'
}
</script>
If you need a basic implementation of element from core - use $vrfParent
<template>
<button @onClick="onClick" v-if="someCondition">{{humanName}}</button>
<component :is="$vrfParent" v-else />
</template>
<script>
export default {
vrfParent: 'action',
computed: {
someCondition() {
...
}
}
}
</script>
After all, add your adapter to vrf
import VrfAdapterName from './vrf-adapter-name'
Vue.use(Vrf, {
adapters: [
VrfAdapterName
]
})
FAQs
Unknown package
The npm package vrf receives a total of 408 weekly downloads. As such, vrf popularity was classified as not popular.
We found that vrf 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.