src/define/class/attributes/build.js

Maintainability

78.82

Lines of code

62

Created with Raphaël 2.1.002550751002019-3-122018-12-32018-8-22018-5-92018-4-32018-2-28

2019-10-30
Maintainability: 78.82

Created with Raphaël 2.1.0017.53552.5702019-3-122018-12-32018-8-22018-5-92018-4-32018-2-28

2019-10-30
Lines of Code: 62

Difficulty

10.16

Estimated Errors

0.21

Function weight

By Complexity

Created with Raphaël 2.1.0_gpfDefClassAttrBuild2

By SLOC

Created with Raphaël 2.1.0_gpfDefClassAttrBuild9
1
/**
2
 * @file Build attributes in a class
3
 * @since 0.2.4
4
 */
5
/*#ifndef(UMD)*/
6
"use strict";
7
/*global _GpfClassDefinition*/ // Class definition
8
/*global _gpfDefClassAttrIsAttributeSpecification*/ // Check if member name is an attribute
9
/*global _gpfDefineClassImport*/ // Import a class as an entity definition
10
/*exported _gpfDefClassAttrBuild*/ // _gpfDefClassAttrBuild
11
/*#endif*/
12
 
13
var _gpfDefClassAttrClassAddmemberToPrototype = _GpfClassDefinition.prototype._addMemberToPrototype,
14
    _gpfDefClassAttrClassBuildPrototype = _GpfClassDefinition.prototype._buildPrototype;
15
 
16
/**
17
 * Build attribute
18
 *
19
 * @param {String} member Member name
20
 * @param {gpf.attributes.Attribute} attribute Attribute
21
 * @param {Object} newPrototype Class prototype
22
 * @since 0.2.9
23
 */
24
function _gpfDefClassAttrBuild (member, attribute, newPrototype) {
25
    /*jshint validthis:true*/
26
    var attributeEntityDefinition = _gpfDefineClassImport(attribute.constructor);
27
    if (!attributeEntityDefinition._singleton) {
28
        attribute._memberName = member;
29
        attribute._ClassConstructor = newPrototype.constructor;
30
    }
31
    attribute._build(member, this, newPrototype); //eslint-disable-line no-invalid-this
32
}
33
 
34
Object.assign(_GpfClassDefinition.prototype, {
35
 
36
    /**
37
     * Dictionary of Attributes
38
     * @since 0.2.4
39
     */
40
    _attributes: {},
41
 
42
    _addAttributesFor: function (memberName, attributes) {
43
        this._attributes[memberName] = attributes;
44
    },
45
 
46
    /**
47
     * @inheritdoc
48
     * @since 0.2.4
49
     */
50
    _addMemberToPrototype: function (newPrototype, memberName, value) {
51
        var attributeName = _gpfDefClassAttrIsAttributeSpecification(memberName);
52
        if (!attributeName) {
53
            _gpfDefClassAttrClassAddmemberToPrototype.call(this, newPrototype, memberName, value);
54
        }
55
    },
56
 
57
    _buildPrototype: function (newPrototype) {
58
        _gpfDefClassAttrClassBuildPrototype.call(this, newPrototype);
59
        this._forOwnAttributes(_gpfDefClassAttrBuild, newPrototype);
60
    }
61
 
62
});