1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/src/lib/db/context-field-store.js
Fredrik Strand Oseberg c1aab06798
Feature/setup typescript
This sets up the typescript compiler.

Allowing gradual migration to typescript.

Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
Co-authored-by: Ivar Conradi Østhus <ivarconr@gmail.com>
Co-authored-by: Fredrik Oseberg <fredrik.oseberg@getunleash.ai>
Co-authored-by: Clint Checkett <clintchecketts@churchofjesuschrist.org>

fixes: #676
2021-02-12 11:42:00 +01:00

94 lines
2.4 KiB
JavaScript

'use strict';
const COLUMNS = [
'name',
'description',
'stickiness',
'sort_order',
'legal_values',
'created_at',
];
const TABLE = 'context_fields';
const mapRow = row => ({
name: row.name,
description: row.description,
stickiness: row.stickiness,
sortOrder: row.sort_order,
legalValues: row.legal_values ? row.legal_values.split(',') : undefined,
createdAt: row.created_at,
});
class ContextFieldStore {
constructor(db, customContextFields, getLogger) {
this.db = db;
this.logger = getLogger('context-field-store.js');
this._createFromConfig(customContextFields);
}
async _createFromConfig(customContextFields) {
if (customContextFields && customContextFields.length > 0) {
this.logger.info(
'Create custom context fields',
customContextFields,
);
const contextFields = await this.getAll();
customContextFields
.filter(c => !contextFields.some(cf => cf.name === c.name))
.forEach(async field => {
try {
await this.create(field);
} catch (e) {
this.logger.error(e);
}
});
}
}
fieldToRow(data) {
return {
name: data.name,
description: data.description,
stickiness: data.stickiness,
sort_order: data.sortOrder, // eslint-disable-line
legal_values: data.legalValues ? data.legalValues.join(',') : null, // eslint-disable-line
updated_at: data.createdAt, // eslint-disable-line
};
}
async getAll() {
const rows = await this.db
.select(COLUMNS)
.from(TABLE)
.orderBy('name', 'asc');
return rows.map(mapRow);
}
async get(name) {
return this.db
.first(COLUMNS)
.from(TABLE)
.where({ name })
.then(mapRow);
}
async create(contextField) {
return this.db(TABLE).insert(this.fieldToRow(contextField));
}
async update(data) {
return this.db(TABLE)
.where({ name: data.name })
.update(this.fieldToRow(data));
}
async delete(name) {
return this.db(TABLE)
.where({ name })
.del();
}
}
module.exports = ContextFieldStore;