fix: allow value property of record value model to be generically typed. feat: added methods to record model to allow adding a record value to the field data property or adding multiple record values to the field data property. wrote tests for these two new methods.

This commit is contained in:
Stevan Freeborn
2023-02-13 12:36:21 -06:00
parent 708cf65844
commit ec82dd066e
3 changed files with 84 additions and 7 deletions
+25 -3
View File
@@ -17,18 +17,40 @@ export class Record {
/**
* @property {RecordValue[]} fieldData - The data for the fields in the record.
*/
public fieldData: RecordValue[];
public fieldData: Array<RecordValue<any>>;
/**
* @constructor - Creates a new instance of Record.
* @param {number} appId - The id of the app that the record belongs to.
* @param {number} recordId - The id of the record.
* @param {RecordValue[]} fieldData - The data for the fields in the record.
* @param {RecordValue<any>[]} fieldData - The data for the fields in the record.
* @returns {Record} - A new instance of Record.
*/
constructor(appId: number, recordId: number, fieldData: RecordValue[] = []) {
constructor(
appId: number,
recordId: number,
fieldData: Array<RecordValue<any>> = []
) {
this.appId = appId;
this.recordId = recordId;
this.fieldData = fieldData;
}
/**
* @method addValue - Adds a value to the record.
* @param {RecordValue<any>} fieldData - The value to add to the record.
* @returns {void}
*/
public addValue(fieldData: RecordValue<any>): void {
this.fieldData.push(fieldData);
}
/**
* @method addValues - Adds values to the record.
* @param {Array<RecordValue<any>>} fieldData - The values to add to the record.
* @returns {void}
*/
public addValues(fieldData: Array<RecordValue<any>>): void {
this.fieldData = this.fieldData.concat(fieldData);
}
}