2014-06-30 22:16:26 -04:00
|
|
|
mongoose = require 'mongoose'
|
|
|
|
plugins = require '../../plugins/plugins'
|
|
|
|
jsonschema = require '../../../app/schemas/models/level_component'
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
LevelComponentSchema = new mongoose.Schema {
|
|
|
|
description: String
|
|
|
|
system: String
|
|
|
|
}, {strict: false}
|
|
|
|
|
2014-04-08 22:26:19 -04:00
|
|
|
LevelComponentSchema.plugin plugins.NamedPlugin
|
|
|
|
LevelComponentSchema.plugin plugins.PermissionsPlugin
|
|
|
|
LevelComponentSchema.plugin plugins.VersionedPlugin
|
2014-09-03 20:33:10 -04:00
|
|
|
LevelComponentSchema.plugin plugins.SearchablePlugin, {searchable: ['name', 'searchStrings', 'description']}
|
2014-04-08 22:26:19 -04:00
|
|
|
LevelComponentSchema.plugin plugins.PatchablePlugin
|
2014-10-27 20:11:48 -04:00
|
|
|
LevelComponentSchema.plugin plugins.TranslationCoveragePlugin
|
2014-09-03 20:33:10 -04:00
|
|
|
LevelComponentSchema.pre('save', (next) ->
|
|
|
|
name = @get('name')
|
|
|
|
strings = _.str.humanize(name).toLowerCase().split(' ')
|
|
|
|
for char, index in name
|
|
|
|
continue if index is 0
|
|
|
|
continue if index is name.length - 1
|
|
|
|
strings.push(name.slice(0,index).toLowerCase())
|
|
|
|
@set('searchStrings', strings.join(' '))
|
|
|
|
next()
|
|
|
|
)
|
2014-01-03 13:32:13 -05:00
|
|
|
|
|
|
|
module.exports = LevelComponent = mongoose.model('level.component', LevelComponentSchema)
|