diff options
Diffstat (limited to 'js/panels/css-panel/styles-view-container.reel/styles-view-container.js')
-rw-r--r-- | js/panels/css-panel/styles-view-container.reel/styles-view-container.js | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/js/panels/css-panel/styles-view-container.reel/styles-view-container.js b/js/panels/css-panel/styles-view-container.reel/styles-view-container.js new file mode 100644 index 00000000..5967345a --- /dev/null +++ b/js/panels/css-panel/styles-view-container.reel/styles-view-container.js | |||
@@ -0,0 +1,103 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | var Montage = require("montage/core/core").Montage, | ||
8 | Component = require("montage/ui/component").Component; | ||
9 | |||
10 | exports.StylesViewContainer = Montage.create(Component, { | ||
11 | contentController : { | ||
12 | value: null | ||
13 | }, | ||
14 | contentPanel : { | ||
15 | value: 'rules' | ||
16 | }, | ||
17 | _hasStyles : { | ||
18 | value: false | ||
19 | }, | ||
20 | hasStyles : { | ||
21 | get: function() { | ||
22 | return this._hasStyles; | ||
23 | }, | ||
24 | set: function(hasThem) { | ||
25 | this._hasStyles = hasThem; | ||
26 | this.needsDraw = true; | ||
27 | } | ||
28 | }, | ||
29 | templateDidLoad : { | ||
30 | value: function() { | ||
31 | console.log("styles view container - deserialized"); | ||
32 | this.eventManager.addEventListener('styleSheetsReady', this, false); | ||
33 | } | ||
34 | }, | ||
35 | handleStyleSheetsReady: { | ||
36 | value: function(e) { | ||
37 | this.eventManager.addEventListener( "selectionChange", this, false); | ||
38 | } | ||
39 | }, | ||
40 | handleSelectionChange: { | ||
41 | value: function() { | ||
42 | var elements = this.application.ninja.selectedElements, | ||
43 | type, selection, ruleList; | ||
44 | |||
45 | if(elements.length === 0) { | ||
46 | return false; | ||
47 | } else if(elements.length > 1) { | ||
48 | type = 'ELEMENTS'; | ||
49 | selection = elements.map(function(obj) { | ||
50 | return obj._element; | ||
51 | }); | ||
52 | } else { | ||
53 | type = 'ELEMENT'; | ||
54 | selection = elements[0]._element; | ||
55 | } | ||
56 | |||
57 | ruleList = this.ruleListContainer._getRuleList({ | ||
58 | selectionType : type, | ||
59 | selection : selection | ||
60 | }); | ||
61 | |||
62 | if(ruleList) { | ||
63 | this.ruleListContainer.displayedList = ruleList; | ||
64 | } else { | ||
65 | this.ruleListContainer.add(type, selection); | ||
66 | } | ||
67 | |||
68 | this.hasStyles = true; | ||
69 | } | ||
70 | }, | ||
71 | |||
72 | _ruleList : { | ||
73 | value: [] | ||
74 | }, | ||
75 | ruleList : { | ||
76 | get: function() { | ||
77 | return this._ruleList; | ||
78 | }, | ||
79 | set: function(list) { | ||
80 | if(!list) { | ||
81 | this._ruleList.length = 0; | ||
82 | return; | ||
83 | } | ||
84 | |||
85 | this._ruleList = list; | ||
86 | this.needsDraw = true; | ||
87 | } | ||
88 | }, | ||
89 | prepareForDraw : { | ||
90 | value: function() { | ||
91 | console.log("styles view container - prepare for draw"); | ||
92 | } | ||
93 | }, | ||
94 | draw : { | ||
95 | value: function() { | ||
96 | if(this.hasStyles) { | ||
97 | this.element.classList.remove('no-styles'); | ||
98 | } else { | ||
99 | this.element.classList.add('no-styles'); | ||
100 | } | ||
101 | } | ||
102 | } | ||
103 | }); \ No newline at end of file | ||