2020-11-02 22:04:45 +00:00
|
|
|
const VersionedModel = require('../../VersionedModel')
|
2020-02-09 05:09:18 +00:00
|
|
|
const uuid = require('uuid/v4')
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ColumnDef Model
|
|
|
|
* -------------------------------------------------------------
|
|
|
|
* Put some description here!
|
|
|
|
*/
|
2020-11-02 22:04:45 +00:00
|
|
|
class ColumnDef extends VersionedModel {
|
2020-02-09 05:09:18 +00:00
|
|
|
static get schema() {
|
|
|
|
// Return a flitter-orm schema here.
|
|
|
|
return {
|
2020-11-02 22:04:45 +00:00
|
|
|
...super.schema,
|
2020-02-09 05:09:18 +00:00
|
|
|
headerName: String,
|
|
|
|
field: String,
|
|
|
|
DatabaseId: String,
|
|
|
|
UUID: { type: String, default: () => uuid() },
|
|
|
|
Type: { type: String, default: 'text' }, // text, number for now
|
2020-02-18 17:17:49 +00:00
|
|
|
additionalData: { type: String, default: '{}' }
|
2020-02-09 05:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-02 22:04:45 +00:00
|
|
|
|
2020-02-09 05:09:18 +00:00
|
|
|
// Static and instance methods can go here
|
2020-02-18 17:17:49 +00:00
|
|
|
data_get(key) {
|
|
|
|
return JSON.parse(this.additionalData ? this.additionalData : '{}')[key]
|
|
|
|
}
|
|
|
|
|
|
|
|
data_set(key, value) {
|
|
|
|
const json = JSON.parse(this.additionalData ? this.additionalData : '{}')
|
|
|
|
json[key] = value
|
|
|
|
this.additionalData = JSON.stringify(json)
|
|
|
|
}
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return JSON.parse(this.additionalData ? this.additionalData : '{}')
|
|
|
|
}
|
2020-03-01 21:37:52 +00:00
|
|
|
|
|
|
|
to_api_object() {
|
|
|
|
return {
|
|
|
|
name: this.headerName,
|
|
|
|
uuid: this.UUID,
|
|
|
|
database_id: this.DatabaseId,
|
|
|
|
type: this.Type,
|
2020-11-02 22:04:45 +00:00
|
|
|
metadata: this.data(),
|
|
|
|
version_num: this.version_num,
|
|
|
|
version_message: this.version_message,
|
2020-03-01 21:37:52 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-09 05:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = exports = ColumnDef
|