aboutsummaryrefslogtreecommitdiff
path: root/js/panels/css-panel/rule-list.reel/rule-list.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/panels/css-panel/rule-list.reel/rule-list.js')
-rw-r--r--js/panels/css-panel/rule-list.reel/rule-list.js192
1 files changed, 192 insertions, 0 deletions
diff --git a/js/panels/css-panel/rule-list.reel/rule-list.js b/js/panels/css-panel/rule-list.reel/rule-list.js
new file mode 100644
index 00000000..b7244a2c
--- /dev/null
+++ b/js/panels/css-panel/rule-list.reel/rule-list.js
@@ -0,0 +1,192 @@
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
7var Montage = require("montage/core/core").Montage,
8 Component = require("montage/ui/component").Component;
9
10exports.RuleList = Montage.create(Component, {
11 focusDelegate : { value: null },
12 ruleNodeName : { value: 'li' },
13 _needsScrollToBottom: { value: null },
14
15 childComponents : {
16 value: [],
17 distinct: true
18 },
19
20 rulesToDraw : {
21 value: [],
22 distinct: true
23 },
24 rulesToRemove : {
25 value: [],
26 distinct: true
27 },
28
29 update : {
30 value: function(rules) {
31 this.childComponents.forEach(function(component) {
32 component.update();
33 }, this);
34 }
35 },
36
37 _rules: { value: null },
38 rules: {
39 get: function() {
40 return this._rules;
41 },
42 set: function(list) {
43 if(!list) {
44 return null;
45 }
46
47 var foundIndices = [];
48
49 //// Iterate existing rules, update those which rule exists in new
50 //// rule list
51 this.childComponents.forEach(function(ruleComponent, i, drawnRules) {
52 //// If rule exists in new list, update it
53 var index = list.indexOf(ruleComponent.rule);
54
55 if(ruleComponent.rule.type === 'inline') {
56 //// Let's emulate finding the line rule at the first index
57 index = 0;
58 }
59
60 if(index !== -1) {
61 // found rule in our component list, or it's the inline rule
62 ruleComponent.update();
63 foundIndices.push(index);
64 } else {
65 this.rulesToRemove.push(ruleComponent);
66 }
67 }, this);
68
69 //// Find rules to add
70 list.forEach(function(rule, index) {
71 //// If we haven't updated the rule already,
72 //// we're dealing with a new rule to add
73 if(foundIndices.indexOf(index) === -1) {
74 this.addRule(rule, index);
75 }
76 }, this);
77
78 this._rules = list;
79
80 this.needsDraw = true;
81
82 }
83 },
84
85 addRule: {
86 value: function(rule, atIndex, applies, drawCallback) {
87 var insertIndex = atIndex || this.childComponents.length;
88
89 this.rulesToDraw.push({
90 rule: rule,
91 index: insertIndex,
92 instance : null,
93 applies : applies,
94 callback : drawCallback
95 });
96
97 this.needsDraw = true;
98 }
99 },
100
101 removeRule: {
102 value: function(ruleComponent) {
103 this.rulesToRemove.push(ruleComponent);
104 this.needsDraw = true;
105 }
106 },
107
108 willDraw : {
109 value: function() {
110 this.rulesToDraw.forEach(function(ruleObj) {
111 var el = document.createElement(this.ruleNodeName);
112
113 var componentBase = this.supportedRules[ruleObj.rule.type],
114 instance;
115
116 ///// Draw the rule if we have a template for the rule type
117 if(!componentBase) { return false; }
118
119 instance = Montage.create(componentBase);
120 instance.element = document.createElement(this.ruleNodeName);
121 instance.rule = ruleObj.rule;
122 instance.applied = ruleObj.applies;
123
124 if(this.focusDelegate) {
125 instance.focusDelegate = this.focusDelegate;
126 }
127
128 ruleObj.instance = instance;
129
130 }, this);
131
132 }
133 },
134
135 draw : {
136 value: function() {
137 ///// If needed, scroll to bottom
138 if(this._needsScrollToBottom) {
139 ///// Make sure the appended rule item is visible (scrolled-to)
140 this.element.scrollTop = this.element.offsetHeight;
141 console.log("Scroll top:", this.element.scrollTop);
142 this._needsScrollToBottom = false;
143 }
144
145 //// Iterate through all rules needing removal
146 console.log("Rule List :: Rules to draw:,", this.rulesToDraw.length);
147 this.rulesToRemove.forEach(function(ruleComponent) {
148 var componentIndex = this.childComponents.indexOf(ruleComponent);
149 this.childComponents.splice(componentIndex, 1);
150 this.element.removeChild(ruleComponent.element);
151 }, this);
152
153 //// Iterate through all rules that need draw and append them
154 this.rulesToDraw.forEach(function(ruleObj) {
155 var ruleAtIndex = this.childComponents[ruleObj.index];
156
157 if(ruleAtIndex) {
158 //// Insert rule at appropriate index
159 this.element.insertBefore(ruleObj.instance.element, ruleAtIndex.element);
160 } else {
161 this.element.appendChild(ruleObj.instance.element);
162 }
163
164 this._needsScrollToBottom = this.needsDraw = true;
165 this.childComponents.push(ruleObj.instance);
166 ruleObj.instance.needsDraw = true;
167 }, this);
168
169 }
170 },
171
172 didDraw : {
173 value: function() {
174 this.rulesToDraw.forEach(function(ruleObj) {
175 if(typeof ruleObj.callback === 'function') {
176 ruleObj.callback(ruleObj.instance);
177 }
178 });
179
180 this.rulesToRemove.forEach(function(ruleObj) {
181 ruleObj.instance = null;
182 }, this);
183
184 ///// Null out any rules that were just drawn
185 this.rulesToDraw.length = 0;
186 this.rulesToRemove.length = 0;
187
188 this.parentComponent.ruleListDrawn = true;
189 this.parentComponent.needsDraw = true;
190 }
191 }
192});