Class

BaseRecord

BaseRecord(params, resource)

Representation of an particular ORM/ODM Record in given Resource in AdminBro

Constructor

# new BaseRecord(params, resource)

Parameters:
Name Type Description
params ParamsType

all resource data. I.e. field values

resource BaseResource

resource to which given record belongs

View Source admin-bro/src/backend/adapters/base-record.ts, line 15

Members

PropertyErrors

# errors

Object containing all validation errors: this.errors[path] = 'errorMessage'

View Source admin-bro/src/backend/adapters/base-record.ts, line 210

ParamsType

# params

Actual record data stored as a flatten object

View Source admin-bro/src/backend/adapters/base-record.ts, line 204

object

# populated

Object containing all populated relations.

View Source admin-bro/src/backend/adapters/base-record.ts, line 216

BaseResource

# resource

Resource to which record belongs

View Source admin-bro/src/backend/adapters/base-record.ts, line 198

Methods

# error(path) → {RecordError|null}

Returns error message for given property path (name)

Parameters:
Name Type Description
path string

(name) of property which we want to check if is valid

View Source admin-bro/src/backend/adapters/base-record.ts, line 142

validation message of null

RecordError | null

# id() → {string|number}

Returns uniq id of the Record.

View Source admin-bro/src/backend/adapters/base-record.ts, line 111

id of the Record

string | number

# isValid() → {boolean}

Return state of validation for given record

View Source admin-bro/src/backend/adapters/base-record.ts, line 134

if record is valid or not.

boolean

# namespaceParams(prefix) → {object|undefined}

Returns object containing all params keys starting with prefix

Parameters:
Name Type Description
prefix string

View Source admin-bro/src/backend/adapters/base-record.ts, line 45

object | undefined

# param(path) → {any}

Returns value for given field.

Parameters:
Name Type Description
path string

path (name) for given field: i.e. 'email' or 'authentication.email' if email is nested within the authentication object in the data store

View Source admin-bro/src/backend/adapters/base-record.ts, line 28

value for given field

any

# populate(propertyName, record)

Populate record relations

Parameters:
Name Type Description
propertyName string

name of the property which should be populated

record BaseRecord

record to which property relates

View Source admin-bro/src/backend/adapters/base-record.ts, line 151

# async save() → {Promise.<BaseRecord>}

Saves the record in the database. When record already exists - it updates, otherwise it creates new one.

Practically it invokes BaseResource#create or BaseResource#update methods.

When validation error occurs it stores that to BaseResource#errors

View Source admin-bro/src/backend/adapters/base-record.ts, line 88

given record (this)

Promise.<BaseRecord>

# storeParams(payloadDataopt)

Stores incoming payloadData in record params

Parameters:
Name Type Attributes Description
payloadData object <optional>

View Source admin-bro/src/backend/adapters/base-record.ts, line 179

# title() → {string}

Returns title of the record. Usually title is an value for fields like: email, topic, title etc.

Title will be shown in the breadcrumbs for example.

View Source admin-bro/src/backend/adapters/base-record.ts, line 126

title of the record

string

# toJSON(currentAdminopt) → {RecordJSON}

Returns JSON representation of an record

Parameters:
Name Type Attributes Description
currentAdmin CurrentAdmin <optional>

View Source admin-bro/src/backend/adapters/base-record.ts, line 159

RecordJSON

# async update(params) → {Promise.<BaseRecord>}

Updates given Record in the data store. Practically it invokes BaseResource.update method.

When validation error occurs it stores that to BaseResource.errors

Parameters:
Name Type Description
params object

all field with values which has to be updated

View Source admin-bro/src/backend/adapters/base-record.ts, line 62

given record (this)

Promise.<BaseRecord>