75 lines
1.4 KiB
JavaScript
75 lines
1.4 KiB
JavaScript
|
|
const mongoose = require('mongoose').set('debug', false)
|
||
|
|
const Schema = mongoose.Schema;
|
||
|
|
|
||
|
|
const tools = require('../tools/general');
|
||
|
|
|
||
|
|
mongoose.Promise = global.Promise;
|
||
|
|
mongoose.level = "F";
|
||
|
|
|
||
|
|
|
||
|
|
// Resolving error Unknown modifier: $pushAll
|
||
|
|
mongoose.plugin(schema => {
|
||
|
|
schema.options.usePushEach = true
|
||
|
|
});
|
||
|
|
|
||
|
|
const MyElemSchema = new Schema({
|
||
|
|
idapp: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
type: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
title: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
container: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
size: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
order: {
|
||
|
|
type: Number,
|
||
|
|
default: 0,
|
||
|
|
},
|
||
|
|
height: {
|
||
|
|
type: Number,
|
||
|
|
},
|
||
|
|
onlyif_logged: {
|
||
|
|
type: Boolean,
|
||
|
|
},
|
||
|
|
color: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
active: {
|
||
|
|
type: Boolean,
|
||
|
|
},
|
||
|
|
class: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
});
|
||
|
|
|
||
|
|
MyElemSchema.statics.getFieldsForSearch = function () {
|
||
|
|
return [{ field: 'title', type: tools.FieldType.string },
|
||
|
|
{ field: 'content', type: tools.FieldType.string }]
|
||
|
|
};
|
||
|
|
|
||
|
|
MyElemSchema.statics.executeQueryTable = function (idapp, params, user) {
|
||
|
|
params.fieldsearch = this.getFieldsForSearch();
|
||
|
|
return tools.executeQueryTable(this, idapp, params, user);
|
||
|
|
};
|
||
|
|
|
||
|
|
MyElemSchema.statics.findAllIdApp = async function (idapp) {
|
||
|
|
const MyElem = this;
|
||
|
|
|
||
|
|
const myfind = { idapp };
|
||
|
|
|
||
|
|
return await MyElem.find(myfind, (err, arrrec) => {
|
||
|
|
return arrrec
|
||
|
|
});
|
||
|
|
};
|
||
|
|
|
||
|
|
const MyElem = mongoose.model('MyElem', MyElemSchema);
|
||
|
|
|
||
|
|
module.exports = { MyElem };
|