-
Notifications
You must be signed in to change notification settings - Fork 0
Field
class Field
📜
Field class, that holds the properties of all field descriptors that define the model's fields.
Example:
-
class User extends Model { // Each field below is termed a "field descriptor" // and will eventually be turned into a Field. static fields = { id: { type: Types.BIGINT, defaultValue: Types.BIGINT.Default.AUTO_INCREMENT, allowNull: false, primaryKey: true, }, email: { type: Types.STRING(64), allowNull: false, index: true, unique: true, valiate: (value) => { if (('' + value).indexOf('@') < 0) throw new Error(`Invalid email address: "${value}"`); }, }, gender: { type: Types.STRING(32), allowNull: false, index: true, defaultValue: 'other', valiate: (value) => { if (!(/^(male|female|other)$/).test(value)) throw new Error(`Invalid gender: "${value}"`); }, }, prefix: { type: Types.STRING(10), allowNull: true, index: true, get: ({ self, value }) => { if (self.gender === 'male') return 'Mr.'; else if (self.gender === 'female') return 'Ms.'; else return value; }, set: ({ set, value }) => { set(value); }, }, firstName: { type: Types.STRING(32), allowNull: false, index: true, }, lastName: { type: Types.STRING(32), allowNull: false, index: true, }, }; }
Interfaces:
-
interface DefaultValueContext { _initial: boolean; // If `true`, then this is the initial set of the field's value. _static: boolean; // If `true`, then this will be used in a "static" context, such as the `DEFAULT` of the DB. connection: Connection; // The connection from the model. data: object | undefined; // All attributes provided to the model upon instantiation. field: Field; // The field descriptor where this `defaultValue` is defined. fieldName: string; // The name of this field where this `defaultValue` is defined. fieldValue: any; // The field value as provided to the model instance upon instantiation. self: Model; // The model instance. }
-
interface GetSetContext { field: Field; // The field descriptor of this field. fieldName: string; // The field name of this field. get: Function; // A method to fetch the current value of this field. self: Model; // The model instance of this field value. set: Function; // A method to set the current value of this field. value: any; // The current value of this field. }
static property Field::_isMythixField
📜
This helps with type checking.
If true
, then this field is allowed to have a NULL
value in the underlying database. If false
, then this
field must not have a NULL
value in the underlying database.
This has no effect client-side in JavaScript. Even if allowNull
is false
, the field property on your model may still have a
null
value in JavaScript.
Provide a default value for this field. defaultValue
in
Mythix ORM can be either a literal value, such as a string
or a number
, it can be null
, or it can be a function. If
it is a function, it will be called when the model is initialized
if no value for the field was provided to the model during instantiation.
As a method, it can have numerous different "flags" set on it, via
the Helpers.defaultValueFlags factory. Reference this
methods documentation for a better understanding of what default value
flags are, and what they do.
The name of this field. If not provided, this will
be the key that defined the field. If your model
fields are defined as an Array
or Set
, then this
attribute is required, and must be supplied. If
your fields are defined as an Object
, or a Map
,
then if this attribute is not supplied, the key
will be used as the fieldName
instead. The
fieldName
always takes priority, so if you
have a key and a fieldName
, then the field name
will take precedence over the key name.
A "getter" for this field. If defined, this will be called any time
the field is accessed. The return value will be the value of the field.
Use the get
method provided by the context
argument to get the underlying
field value, or use Model.getDataValue to get the underlying value.
Note: The provided get
method, and Model.getDataValue will bypass this method.
Note: Do NOT get the field property directly on the model inside this method, or you will enter an infinite recursive loop.
If true
, then this field will be indexed in the database.
If an array is provided, then it must be an array containing
other field names to combine with this field to create a combined
index. For example: index: [ true, 'firstName', 'lastName', [ 'firstName', 'lastName' ] ]
would create four indexes:
true
means index this field, firstName
would create
the combination index this_field_first_name
, lastName
would create the
combination index this_field_last_name
, and [ 'firstName', 'lastName ]
would
create the combination index this_field_first_name_last_name
.
If true
, then this field will be the primary key of the model.
It will also be marked as the primary key in the underlying database.
A "setter" for this field. If defined, this will be called any time
the field is set. This field must call the set
method provided by
the context
argument, or it must call Model.setDataValue
on the self
model instance provided by the context
.
Note: The provided set
method, and Model.setDataValue will bypass this method.
Note: Do NOT set the field name directly on the model inside this method, or you will enter an infinite recursive loop.
The type of the field. Can be either a virtual or concrete type.
You can supply either a Type
instance (type: new Types.BigIntType()
),
a Type
class (type: Types.BigIntType
), a type wrapper
(type: Types.BIGINT
), or a Type
instance created through a type
wrapper (type: Types.BIGINT(8)
).
If true
, then add a unique constraint to this field in
the underlying database.
If this method is provided, then it will be called from Model.onValidate
immediately before an insert or update operation. The return value of this method
is ignored by Mythix ORM (though if you want, you can do something with it if you
overload the onValidate
method of the model). If validation fails, it is expected
that this method will throw an error. Notice that RegExp or pattern values are not
supported. validate
MUST be a method. How you implement it is up to you.
The value
argument is the current value of the field. The context
argument
is provided by the underlying connection. The Model
inside the context is the
model class of the current model that is being validated. The options
inside
the context is simply an object containing the current options for the underlying
connection operation.
Clone this field instance.
Return value: Field
This field, cloned into a new instance.
Construct a Field.
This method will create a new instance of Field.
The provided fieldDefinition
argument is expected to
be another Field, or an iterable object containing
the field attributes.
Arguments:
-
fieldDescription
:object
| FieldThe attributes to provide to this field.
Return value: Field
Set the parent Model class for this field.
Arguments:
-
Model
: class ModelThe parent model class of this field.
Return value: undefined
static method Field::isField
(
value
: any
,
): boolean
📜
Check if the provided value
is
a Field instance.
This will check if the provided value
is an instanceof
Field,
if it is this method will return true
.
If that check fails, then it will see if
the provided value has a value.constructor_isMythixField
property that is true
. If this is the
case, then this method will return true
.
Finally, if all checks have failed, this
method will return false.
Arguments:
-
value
:any
The value to check.
Return value: boolean
true
if the provided value is a Field
instance, or inherits from Field. false
otherwise.
static method Field::isFieldClass
(
value
: any
,
): boolean
📜
Check if the provided value
is
a Field class.
This will check if the provided value's
prototype
is an instance of Field
if it is, this method will return true
.
If that check fails, then it will see if
the provided value has a _isMythixField
property that is true
. If this is the
case, then this method will return true
.
Finally, if all checks have failed, this
method will return false.
Arguments:
-
value
:any
The value to check.
Return value: boolean
true
if the provided value is a Field
class, or inherits from Field. false
otherwise.
- Associations
- Certifications
- Connection Binding
- Home
- Models
- Queries
- TypeScript
- Types Reference
-
namespace AsyncStore
- function getContextStore
- function getContextValue
- function runInContext
- function setContextValue
-
namespace Helpers
- function checkDefaultValueFlags
- function defaultValueFlags
- function getDefaultValueFlags
- property FLAG_LITERAL
- property FLAG_ON_INITIALIZE
- property FLAG_ON_INSERT
- property FLAG_ON_STORE
- property FLAG_ON_UPDATE
- property FLAG_REMOTE
-
namespace MiscUtils
- function collect
- function valueToDateTime
-
namespace ModelUtils
- function parseQualifiedName
-
namespace QueryUtils
- function generateQueryFromFilter
- function mergeFields
- function parseFilterFieldAndOperator
-
class AverageLiteral
- method static isAggregate
- method toString
-
class BigIntType
- property Default
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class BlobType
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class BooleanType
- method castToType
- method isValidValue
- method static getDisplayName
- method toString
-
class CacheKey
- method constructor
- method valueOf
-
class CharType
- method castToType
- method isValidValue
- method static getDisplayName
- method toString
-
class ConnectionBase
- property _isMythixConnection
- property DefaultQueryGenerator
- property dialect
- property Literals
- method _averageLiteralToString
- method _bigintTypeToString
- method _blobTypeToString
- method _booleanTypeToString
- method _charTypeToString
- method _countLiteralToString
- method _datetimeTypeToString
- method _dateTypeToString
- method _distinctLiteralToString
- method _escape
- method _escapeID
- method _fieldLiteralToString
- method _getFromModelCache
- method _integerTypeToString
- method _maxLiteralToString
- method _minLiteralToString
- method _numericTypeToString
- method _realTypeToString
- method _setToModelCache
- method _stringTypeToString
- method _sumLiteralToString
- method _textTypeToString
- method _uuidV1TypeToString
- method _uuidV3TypeToString
- method _uuidV4TypeToString
- method _uuidV5TypeToString
- method _xidTypeToString
- method addColumn
- method addIndex
- method aggregate
- method alterColumn
- method alterTable
- method average
- method buildConnectionContext
- method bulkModelOperation
- method constructor
- method convertDateToDBTime
- method count
- method createContext
- method createQueryGenerator
- method createTable
- method createTables
- method destroy
- method destroyModels
- method dirtyFieldHelper
- method dropColumn
- method dropIndex
- method dropTable
- method dropTables
- method ensureAllModelsAreInstances
- method escape
- method escapeID
- method exists
- method finalizeQuery
- method findModelField
- method getContextValue
- method getDefaultFieldValue
- method getDefaultOrder
- method getField
- method getLockMode
- method getModel
- method getModels
- method getOptions
- method getQueryEngineClass
- method getQueryGenerator
- method insert
- method isStarted
- method literalToString
- method max
- method min
- method parseQualifiedName
- method pluck
- method prepareAllModelsAndSubModelsForOperation
- method prepareAllModelsForOperation
- method query
- method registerModel
- method registerModels
- method runSaveHooks
- method select
- method setContextValue
- method setPersisted
- method setQueryGenerator
- method splitModelAndSubModels
- method stackAssign
- method start
- method static getLiteralClassByName
- method static isConnection
- method static isConnectionClass
- method static Literal
- method stop
- method sum
- method toQueryEngine
- method transaction
- method truncate
- method typeToString
- method update
- method updateAll
- method upsert
-
class CountLiteral
- method static isAggregate
- method static isFieldRequired
- method toString
-
class DateTimeType
- property Default
- method castToType
- method constructor
- method deserialize
- method isValidValue
- method serialize
- method static getDisplayName
- method toString
-
class DateType
- property Default
- method castToType
- method constructor
- method deserialize
- method isValidValue
- method serialize
- method static getDisplayName
- method toString
-
class DistinctLiteral
- method toString
-
class Field
- property _isMythixField
- property allowNull
- property defaultValue
- property fieldName
- property get
- property index
- property primaryKey
- property set
- property type
- property unique
- property validate
- method clone
- method constructor
- method setModel
- method static isField
- method static isFieldClass
-
class FieldLiteral
- method toString
- class FieldScope
-
class ForeignKeyType
- method castToType
- method constructor
- method getOptions
- method getTargetField
- method getTargetFieldName
- method getTargetModel
- method getTargetModelName
- method initialize
- method isValidValue
- method parseOptionsAndCheckForErrors
- method static getDisplayName
- method static isForeignKey
- method toString
-
class IntegerType
- property Default
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class Literal
- method constructor
-
class LiteralBase
- property _isMythixLiteral
- method constructor
- method definitionToField
- method fullyQualifiedNameToDefinition
- method static isAggregate
- method static isLiteral
- method static isLiteralClass
- method static isLiteralType
- method toString
- method valueOf
-
class LiteralFieldBase
- method constructor
- method getField
- method getFullyQualifiedFieldName
- method static isFieldRequired
- method valueOf
-
class MaxLiteral
- method static isAggregate
- method toString
-
class MinLiteral
- method static isAggregate
- method toString
-
class Model
- property _isMythixModel
- method _castFieldValue
- method _constructField
- method _constructFields
- method _constructor
- method _getConnection
- method _getDirtyFields
- method _getFieldValue
- method _initializeFieldData
- method _initializeModelData
- method _setFieldValue
- method clearDirty
- method constructor
- method destroy
- method getAttributes
- method getConnection
- method getDataValue
- method getDirtyFields
- method getOptions
- method hasValidPrimaryKey
- method isDirty
- method isPersisted
- method onAfterCreate
- method onAfterSave
- method onAfterUpdate
- method onBeforeCreate
- method onBeforeSave
- method onBeforeUpdate
- method onValidate
- method reload
- method save
- method setAttributes
- method setDataValue
- method static _getConnection
- method static all
- method static bindConnection
- method static count
- method static create
- method static cursor
- method static defaultScope
- method static finalizeQuery
- method static first
- method static getConcreteFieldCount
- method static getContextValue
- method static getField
- method static getFields
- method static getForeignKeyFieldsMap
- method static getForeignKeysTargetField
- method static getForeignKeysTargetFieldNames
- method static getForeignKeysTargetModelNames
- method static getForeignKeysTargetModels
- method static getModel
- method static getModelContext
- method static getModelName
- method static getPluralModelName
- method static getPrimaryKeyField
- method static getPrimaryKeyFieldName
- method static getQueryEngine
- method static getQueryEngineClass
- method static getSingularName
- method static getSortedFields
- method static getTableName
- method static getUnscopedQueryEngine
- method static getWhereWithConnection
- method static hasField
- method static hasRemoteFieldValues
- method static initializeFields
- method static isForeignKeyTargetModel
- method static isModel
- method static isModelClass
- method static iterateFields
- method static last
- method static mergeFields
- method static pluck
- method static primaryKeyHasRemoteValue
- method static setContextValue
- method static toString
- method static updateModelContext
- method toJSON
- method toString
- method updateDirtyID
-
class ModelScope
- method _getField
- method AND
- method CROSS_JOIN
- method DISTINCT
- method EXISTS
- method Field
- method FULL_JOIN
- method GROUP_BY
- method HAVING
- method INNER_JOIN
- method JOIN
- method LEFT_JOIN
- method LIMIT
- method mergeFields
- method NOT
- method OFFSET
- method OR
- method ORDER
- method PROJECT
- method RIGHT_JOIN
-
class ModelType
- method fieldNameToOperationName
- method initialize
-
class ModelsType
- method fieldNameToOperationName
- method initialize
-
class NumericType
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class ProxyClass
- property APPLY
- property AUTO_CALL
- property AUTO_CALL_CALLED
- property AUTO_CALL_CALLER
- property CALLABLE
- property CONSTRUCT
- property DEFINE_PROPERTY
- property DELETE_PROPERTY
- property GET
- property GET_OWN_PROPERTY_DESCRIPTOR
- property GET_PROTOTYPEOF
- property HAS
- property IS_EXTENSIBLE
- property MISSING
- property OWN_KEYS
- property PREVENT_EXTENSIONS
- property PROXY
- property SELF
- property SET
- property SET_PROTOTYPEOF
- property shouldSkipProxy
- property TARGET
- method ___autoCall
- method ___call
- method constructor
-
class QueryEngine
- method all
- method average
- method constructor
- method count
- method cursor
- method destroy
- method exists
- method finalizeQuery
- method first
- method getFieldScopeClass
- method getModelScopeClass
- method last
- method max
- method MERGE
- method min
- method Model
- method pluck
- method sum
- method toString
- method unscoped
- method updateAll
-
class QueryEngineBase
- method _fetchScope
- method _inheritContext
- method _newFieldScope
- method _newModelScope
- method _newQueryEngineScope
- method _pushOperationOntoStack
- method clone
- method constructor
- method filter
- method getAllModelsUsedInQuery
- method getConnection
- method getFieldScopeClass
- method getModel
- method getModelScopeClass
- method getOperationContext
- method getOperationStack
- method getQueryEngineClass
- method getQueryEngineScope
- method getQueryEngineScopeClass
- method getQueryID
- method isLastOperationCondition
- method isLastOperationControl
- method isModelUsedInQuery
- method logQueryOperations
- method map
- method queryHasConditions
- method queryHasJoins
- method static generateID
- method static getQueryOperationInfo
- method static isQuery
- method static isQueryOperationContext
- method walk
-
class QueryGeneratorBase
- method _averageLiteralToString
- method _countLiteralToString
- method _distinctLiteralToString
- method _fieldLiteralToString
- method _maxLiteralToString
- method _minLiteralToString
- method _sumLiteralToString
- method constructor
- method escape
- method escapeID
- method getConnection
- method getFieldDefaultValue
- method getIndexFieldsFromFieldIndex
- method setConnection
- method stackAssign
- method toConnectionString
-
class RealType
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class SerializedType
- method castToType
- method constructor
- method deserialize
- method getOptions
- method initialize
- method isDirty
- method isValidValue
- method onSetFieldValue
- method serialize
- method static getDisplayName
- method toString
-
class StringType
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class SumLiteral
- method static isAggregate
- method toString
-
class TextType
- method castToType
- method constructor
- method isValidValue
- method static getDisplayName
- method toString
-
class Type
- property _isMythixFieldType
- property clone
- method castToType
- method clone
- method constructor
- method deserialize
- method exposeToModel
- method getDisplayName
- method getField
- method getModel
- method initialize
- method isDirty
- method isForeignKey
- method isRelational
- method isRemote
- method isValidValue
- method isVirtual
- method onSetFieldValue
- method serialize
- method setField
- method setModel
- method static instantiateType
- method static isSameType
- method static isType
- method static isTypeClass
- method static wrapConstructor
- method toConnectionType
-
class UUIDV1Type
- property Default
- method castToType
- method getArgsForUUID
- method isValidValue
- method static getDisplayName
- method validateOptions
-
class UUIDV3Type
- property Default
- method castToType
- method getArgsForUUID
- method isValidValue
- method static getDisplayName
- method validateOptions
-
class UUIDV4Type
- property Default
- method castToType
- method getArgsForUUID
- method isValidValue
- method static getDisplayName
- method validateOptions
-
class UUIDV5Type
- property Default
- method castToType
- method getArgsForUUID
- method isValidValue
- method static getDisplayName
- method validateOptions
-
class XIDType
- property Default
- method castToType
- method isValidValue
- method static getDisplayName