IntegerRangeField

Source
import { IntegerRangeField } from "@prestojs/viewmodel";

API

new IntegerRangeField(values)

Source
ParameterTypeDescription
*valuesRangeFieldProps

Static Properties

Inherited Methods

Returns a clone of the field that should be functionally equivalent

Field

Called once after fields are attached to a ViewModel. This occurs the first time .fields is accessed on the ViewModel.

By default this does nothing but can be used by fields to attach extra properties or validate against the final view model (for example checking that another field does / does not exist).

NOTE: This is called for every distinct ViewModel class; so if class A is extended by class B then it will be called on both A and B.

ParameterTypeDescription
*viewModelViewModel Class
void

Format the value for displaying in a form widget. eg. This could convert a Date into a localized date string

ParameterTypeDescription
*valuenumber
any

Should two values be considered equal?

This is used when determining if two records are equal (see ViewModel.isEqual)

ParameterTypeDescription
*value1number
*value2number
boolean

Normalize a value passed into a ViewModel constructor. This could do things like extract the id of a nested relation and only store that, eg.

TODO: Do we need to handle things like normalizing to multiple fields? eg. In the example below setting the id to addressId and relation to address

// This might become
{
name: 'Sam',
address: {
id: 5,
formatted: '3 Somewhere Road, Some Place',
},
}
// ...this
{
name: 'Same',
address: 5,
}
ParameterTypeDescription
*valueParsableValueT

One of the following:

number

OR

null

Parse a value received from a form widget onChange call. eg. This could convert a localized date string into a Date.

ParameterTypeDescription
*valueParsableValueT|null

One of the following:

number

OR

null

Convert value to plain JS representation useful for things like passing to a form or posting to a backend API

ParameterTypeDescription
*valuenumber

One of the following:

string

OR

number

OR

null

OR

__type
string

Inherited Properties

Async choices for this field.

Is this field required when saving a record?

If true an empty string value should be converted to a null value

When accessed on a bound field will return the current instance of the ViewModel the field is bound to.

If called on an unbound field then this will always be undefined and a warning will be raised.

Get the default value for this field.

Help text that can be displayed with the form widget

Returns true if field is bound to a ViewModel instance. When a field is bound to a instance the value for that field is accessible on the 'value' property.

Label that can be displayed as the form label for a widget

If not specified will be generated from name.

The ViewModel class this field is attached to.

This will throw an error if the field is not attached to a model.

The name of this field.

This will throw an error if the field is not attached to a model.

Indicates this field should only be read, not written. Not enforced but can be used by components to adjust their output accordingly (eg. exclude it from a form or show it on a form with a read only input)

When isBound is true this will return the current value of this field on the bound ViewModel. Otherwise will always be undefined.

Indicates this field should only be written only and is not intended to be read directly. This is not enforced but can be used by components to adjust their output accordingly (eg. exclude it from a detail view on a record)