aboutsummaryrefslogtreecommitdiff
path: root/js/components/menu/menu.reel/menu.js
blob: 50d3f0bc0817a7baf5a99c21bba3d4a32af9fd4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
</copyright> */

var Montage = require("montage/core/core").Montage,
    Component = require("montage/ui/component").Component;

exports.Menu = Montage.create(Component, {

    _currentDocument: {
            value : null
    },

    currentDocument : {
        get : function() {
            return this._currentDocument;
        },
        set : function(value) {
            if (value === this._currentDocument) {
                return;
            }

            this._currentDocument = value;
        }
    },

    _active: {
        value: false
    },

    active: {
        get: function() {
            return this._active;
        },
        set: function(value) {
            this._active = value;
        }
    },

    _activeEntry: {
        value: null
    },

    activeEntry: {
        get: function() {
            return this._activeEntry;
        },
        set: function(value) {
            if(this.active) {

                if(this._activeEntry) this._activeEntry.deselect();

                this._activeEntry = value;

                this._activeEntry.select();

            }
        }
    },

    toggleActivation: {
        value: function(item) {
            if(this.active) {
                this._activeEntry.deselect();
                this._activeEntry = null;
                this.active = false;
                this.element.ownerDocument.removeEventListener('mousedown', this, false);
            } else {
                this.active = true;
                this.activeEntry = item;
                this.element.ownerDocument.addEventListener('mousedown', this, false);
            }
        }
    },

    prepareForDraw: {
        value: function() {

        }
    },

    handleMousedown: {
        value: function(evt) {

            if(this.active && (this.getZIndex(evt.target) < 9000 || evt.target.id === "topMenu")) {
                this._activeEntry.deselect();
                this._activeEntry = null;
                this.active = false;

                //console.log(this.rep.objects[1]);
                //this.controller.content[1].header = "BLAH";
            }

//            console.log(evt.target.style['z-index']);
//            console.log(this.getZIndex(evt.target));

        }
    },

    getZIndex: {
        value: function(elem) {

            var position, value, zIndex;
            while (elem && elem !== document) {
//                position = elem.style.position;
                position = document.defaultView.getComputedStyle(elem, "").getPropertyValue("position");

                if (position === "absolute" || position === "relative" || position === "fixed") {
                    // webkit returns a string for zindex value and "" if zindex is not available
//                    zIndex = elem.style['z-index'];
                    zIndex = document.defaultView.getComputedStyle(elem, "").getPropertyValue("z-index");
                    value = parseInt(zIndex, 10);
                    if (!isNaN(value) && value !== 0) {
                        return value;
                    }
                }
                elem = elem.parentNode;
            }
            return 0;
        }
    }

});