# install dependencies
npm install
# start playground
npm startVue 2
npm install --save vrfimport Vue from 'vue'
import Vrf from 'vrf'
Vue.use(Vrf)Vue 3 (experimental build)
npm install --save vrf@nextimport {createApp} from 'vue'
import Vrf from 'vrf'
createApp(...)
.use(Vrf)
.mount(...)Vrf is an abstraction over
- UI, because it is a set of components' interfaces that should be implemented in adapters
- Network, because you operate only with terms of the subject area and business actions in application code, and the implementation is delegated to effects
- I18n, because you can plug in any i18n library(but vue-i18n is supported from the box)
- Any other areas related to forms, like validations, notifications and analytics, that should be decoupled into plugins, using Effects API
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 auto-forming capabilities without having to 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 should 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 a form requires very specific logic, that form can be used in a lower-level mode(without the "auto" flag).
- expressive syntax
- ease of separation
- I18n
- Validations(as interface)
- autoforms
- nested entities
- option
disabled/readonlyfor entire form - vuex integration
- unlimited extension using Effects API
The cornerstone of vrf is the binding to an object. 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 v-model="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 that form (not even direct) can receive this data. This allows you to break complex forms into several parts, however, in most cases it is recommended to keep the form in one file.
There are several ways to access the resource:
- use rf-resource component
<rf-resource v-slot="{$resource}">
<div>{{$resource}}</div>
</rf-resource>- use Resource mixin
<template>
<div>
{{$resource}}
</div>
</template>
<script>
import {Resource} from 'vrf'
export default {
mixins: [
Resource
]
}
</script>
- implement your own component using accessible descriptors
<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:
- in the state of the parent component for the form
- in the state of form(this happens in auto forms, or for example, if you do not pass a
resourceprop). In this case, you can get a reference to the resource using:resource.syncprop. - in vuex
The standard way of writing expressions that depend on the resource is the use $resource variable from the scoped slot on rf-form in the 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 the scoped slot is rendered only after $resource is loaded. All required sources are initialized using empty arrays, so using $sources reference is also safe.
If your form is split 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 (such as selects) require options for their work. The form
sources property is used for this purpose. It expects a hash of all the necessary options which can be accessed in specific components by name.
<template>
<rf-form v-model="resource" :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 can also directly pass an array of options(but it is used less often since vrf's strength is precisely the declarative descriptions of forms and auto forms can load sources by name).
When you use a source name with auto forms, the form uses effects to load the collection for a source. Internally, this is achieved by calling the method requireSource on the form when the component is mounted or theoptions prop is 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 contains rf-group component that is used for grouping descendants from descriptors.groupItem, like rf-checkbox, rf-radio, or any custom descendant.
Outside of a group, groupItem components work like boolean selection:
<template>
<rf-form v-model="resource">
<rf-checkbox name="isActive" />
</rf-form>
</template>
<script>
export default {
data() {
return {
resource: {
isActive: false
}
}
}
}
</script>But inside they are used to choose value:
<template>
<rf-form v-model="resource">
<rf-group name="mode">
<rf-checkbox name="read" />
<rf-checkbox name="write" />
</rf-group>
</rf-form>
</template>
<script>
export default {
data() {
return {
resource: {
mode: 'read'
}
}
}
}
</script>Choose multiple value:
<template>
<rf-form v-model="resource">
<rf-group name="modes" multiple>
<rf-checkbox name="read" />
<rf-checkbox name="write" />
</rf-group>
</rf-form>
</template>
<script>
export default {
data() {
return {
resource: {
modes: ['read', 'write']
}
}
}
}
</script>Also, you can use the inverted property on rf-group to invert the behaviour.
The group supports options prop, you can pass an array and use any descendant of descriptors.groupItem as item-component(rf-radio is used by default)h
<rf-form v-model="resource">
<!-- also you can specify id-key and title-key -->
<rf-group
name="mode"
:options="modes"
item-component="rf-checkbox"
multiple
/>
</rf-form>
</template>
<script>
export default {
data() {
return {
resource: {
mode: ['read', 'write']
},
modes: [
{
id: 'read',
title: 'Read'
},
{
id: 'write',
title: 'Write'
}
]
}
}
}
</script>Moreover, sometimes you need to manage some bitwise values in your resource. Groups allow you to manage them. It has two modes -
either you can use this component as a wrapper for items, or you can use its options property. It supports inverted mode as well.
<template>
<rf-form v-model="resource">
<!-- markup mode -->
<rf-group name="flags" bitwise multiple>
<!-- value is a power -->
<rf-checkbox name="visible" value="0" />
<rf-checkbox name="editable" value="1" />
<rf-checkbox name="shareable" value="2" />
</rf-group>
<!-- rf-bitwise is an alias for rf-group with set bitwise and multiple flags -->
<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>
There is rf-scope component that helps you to break your form by logical scopes.
For example, if you need to disable only part of a form, it'll look like
<rf-form name="User">
<rf-input name="name" />
<rf-scope :disabled="!isAdmin">
<rf-checkbox name="readPermission" />
<rf-checkbox name="writePermission" />
</rf-scope>
<rf-submit />
</rf-form>The scope may be submitted separately as a slice of fields which are inside the scope when you use isolated mode
<rf-form name="User">
<rf-input name="name" />
<rf-scope isolated>
<rf-input name="token"/>
<rf-submit /> <!-- this submit sends only { token: '...' } object -->
</rf-scope>
<rf-submit />
</rf-form>You also can trigger submit if data is changed inside the scope with property autosave
<rf-form name="User">
<rf-input name="name" />
<rf-scope isolated autosave>
<rf-switch name="blocked" />
<rf-scope />
<rf-submit />
</rf-form>Vrf supports work with nested entities, both single and with collections. The rf-nested component is used to work with them, 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 v-model="resource">
<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 are powered by Effects API which allows the creation of 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 provides 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 levelMethod 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 a way to create simple buttons that activate async requests. These requests are served by effects and the received data is 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, label}">
<my-great-button v-on="on" :loading="pending">{{label}}</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 the 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>
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 the form, if you don't need the form functionality, but still want to use the same elements without separating vrf/non-vrf inputs. Regarding this, vrf inputs support v-model directive, allowing for them to be used in a 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) -> translationsignature, 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:
- activated by the
autoproperty of therf-form - executed for each event in order of registration in
Vue.use(Vrf, {effects: [...]})until some effect returns promise(this mechanic works only ononLoad,onLoadSources,onLoadSource,onSave,onCreateandonUpdatesubscriptions) - it's possible to choose effect by specify its name in
autoproperty of therf-form - by passing
EffectExecutortoautoproperty you may customize autoform logic ad-hoc
non-API effects:
- activated by the
effectsproperty of therf-form - executed for each event in order of registration
- it's possible to specify effects for current form by passing array of names to the
effectsproperty
There 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 ofform.requireSourceexecution. It happens for example ifrf-selectappeared as a result of condition renderingonSave- is fired when form is submitted. It is optional subscription, instead you may use more convenientonCreateandonUpdatesubscriptions.onCreate- is fired when form creates new resourceonUpdate- is fire when form updates new resourceonCreated- is fired whenonCreatereturned 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 usingevent.stopPropagation()onLoaded- is fired when data is received from backend, the same likeafter-load-successon the formonSuccess- is fired when resource is saved successfullyonFailure- is fired when resource wasn't saved due to errors
onValidate- is fired before saving process, stops saving if any listeners returnsfalse
You 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 saved
The 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 component rf-autocomplete is designed to be reusable through providers that contain the logic of fetching/initializing data and any custom functionalities, like special row for creating new resources and so on.
The definition of autocomplete provider is quite similar to an effect definition:
// vrf-search.js
export default () => ({
name: 'search',
setup({
onLoad,
onMounted,
onValueChanged
}) {
onLoad(async ({query}) => {
const items = await ...
return items
})
onMounted(() => {
// onMounted logic, if you need
})
onValueChanged(() => {
// onValueChanged logic, if you need
})
}
})Using as a global plugin
import vrfSearch from './vrf-search'
Vue.use(Vrf, {
autocompletes: [
vrfSearch()
]
})<rf-autocomplete name="title" type="search" title-key="title" />or ad-hoc
<template>
<rf-autocomplete name="title" :type="search" title-key="title" />
</template>
<script>
import vrfSearch from './vrf-search'
export default {
computed: {
search: vrfSearch()
}
}
</script>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 vrf or a wrapped ui framework dependency in your bundle(you must include them only in dev and peer dependencies). Following this rule will avoid duplication of dependencies in the final product. To achieve this, you need to set up your bundler to handle vrf as external dependency and import descriptor in usual way.
<template>
<input type="text" v-model="$value" />
</template>
<script>
import {descriptors} from 'vrf'
export default {
extends: descriptors.input
}
</script>If you need a basic implementation of element from core - use $vrfParent
<template>
<button @onClick="onClick" v-if="someCondition">{{$label}}</button>
<component :is="$vrfParent" v-else />
</template>
<script>
import {descriptors} from 'vrf'
export default {
extends: descriptors.action,
computed: {
someCondition() {
...
}
}
}
</script>
After all, add your adapter to vrf
import VrfAdapterName from './vrf-adapter-name'
Vue.use(Vrf, {
adapters: [
VrfAdapterName
]
})- vrf-vuetify - adapter for Vuetify.
- vrf-tiny-mce - adapter for Tiny MCE.
