diff options
author | Armen Kesablyan | 2012-06-15 15:02:30 -0700 |
---|---|---|
committer | Armen Kesablyan | 2012-06-15 15:02:30 -0700 |
commit | 022e2ba65070ee1e5eb2d4b197b88768a1ea3f4f (patch) | |
tree | 57ee0bd85f89d8b9c880337e14224536690810a4 /js | |
parent | 60e9ea67e0f6d0cf167b6d5068e2e01db5f67966 (diff) | |
parent | 62c7c2ac7b72c7e89611d064eef1f4f77a54696d (diff) | |
download | ninja-022e2ba65070ee1e5eb2d4b197b88768a1ea3f4f.tar.gz |
Merge pull request #13 from ericguzman/binding
Added Objects Tray
Diffstat (limited to 'js')
-rw-r--r-- | js/controllers/objects-controller.js | 4 | ||||
-rw-r--r-- | js/panels/binding/edit-binding-view.reel/edit-binding-view.css | 9 | ||||
-rw-r--r-- | js/panels/binding/edit-binding-view.reel/edit-binding-view.html | 24 | ||||
-rw-r--r-- | js/panels/binding/edit-binding-view.reel/edit-binding-view.js | 173 | ||||
-rw-r--r-- | js/panels/objects/object.reel/object.css | 2 | ||||
-rw-r--r-- | js/panels/objects/object.reel/object.html | 5 | ||||
-rw-r--r-- | js/panels/objects/object.reel/object.js | 29 |
7 files changed, 178 insertions, 68 deletions
diff --git a/js/controllers/objects-controller.js b/js/controllers/objects-controller.js index 386ef683..877f7f9f 100644 --- a/js/controllers/objects-controller.js +++ b/js/controllers/objects-controller.js | |||
@@ -66,7 +66,7 @@ var objectsController = exports.ObjectsController = Montage.create(Component, { | |||
66 | if(!bindingArgs.sourceObject || !bindingArgs.sourceObjectPropertyPath || !bindingArgs) { return; } | 66 | if(!bindingArgs.sourceObject || !bindingArgs.sourceObjectPropertyPath || !bindingArgs) { return; } |
67 | 67 | ||
68 | Object.defineBinding(bindingArgs.sourceObject, bindingArgs.sourceObjectPropertyPath, bindingArgs); | 68 | Object.defineBinding(bindingArgs.sourceObject, bindingArgs.sourceObjectPropertyPath, bindingArgs); |
69 | this.currentObjectBindings = this.getObjectBindings(value); | 69 | this.currentObjectBindings = this.getObjectBindings(bindingArgs.sourceObject); |
70 | } | 70 | } |
71 | }, | 71 | }, |
72 | 72 | ||
@@ -77,7 +77,7 @@ var objectsController = exports.ObjectsController = Montage.create(Component, { | |||
77 | 77 | ||
78 | 78 | ||
79 | Object.deleteBinding(bindingArgs.sourceObject, bindingArgs.sourceObjectPropertyPath); | 79 | Object.deleteBinding(bindingArgs.sourceObject, bindingArgs.sourceObjectPropertyPath); |
80 | this.currentObjectBindings = this.getObjectBindings(value); | 80 | this.currentObjectBindings = this.getObjectBindings(bindingArgs.sourceObject); |
81 | } | 81 | } |
82 | }, | 82 | }, |
83 | 83 | ||
diff --git a/js/panels/binding/edit-binding-view.reel/edit-binding-view.css b/js/panels/binding/edit-binding-view.reel/edit-binding-view.css index 23585aca..01feb5cc 100644 --- a/js/panels/binding/edit-binding-view.reel/edit-binding-view.css +++ b/js/panels/binding/edit-binding-view.reel/edit-binding-view.css | |||
@@ -33,7 +33,6 @@ | |||
33 | display: -webkit-box; | 33 | display: -webkit-box; |
34 | -webkit-box-orient: horizontal; | 34 | -webkit-box-orient: horizontal; |
35 | -webkit-box-flex: 1; | 35 | -webkit-box-flex: 1; |
36 | overflow: hidden; | ||
37 | } | 36 | } |
38 | .object-container:first-child { | 37 | .object-container:first-child { |
39 | margin-right: 5px; | 38 | margin-right: 5px; |
@@ -47,10 +46,7 @@ | |||
47 | width: 40px; | 46 | width: 40px; |
48 | -webkit-box-flex: 0; | 47 | -webkit-box-flex: 0; |
49 | } | 48 | } |
50 | .object-icon-container > div { | 49 | |
51 | height: 100%; | ||
52 | width: 100%; | ||
53 | } | ||
54 | .edit-object-binding .object-icon { | 50 | .edit-object-binding .object-icon { |
55 | -webkit-transform: scale(.75); | 51 | -webkit-transform: scale(.75); |
56 | height: 100%; | 52 | height: 100%; |
@@ -93,8 +89,9 @@ | |||
93 | 89 | ||
94 | .buttons-container { | 90 | .buttons-container { |
95 | background-color: #474747; | 91 | background-color: #474747; |
92 | padding: 5px 0; | ||
96 | position: absolute; | 93 | position: absolute; |
97 | bottom: 5px; | 94 | bottom: 0; |
98 | width: 100%; | 95 | width: 100%; |
99 | } | 96 | } |
100 | 97 | ||
diff --git a/js/panels/binding/edit-binding-view.reel/edit-binding-view.html b/js/panels/binding/edit-binding-view.reel/edit-binding-view.html index e2cbdd1d..91a5426f 100644 --- a/js/panels/binding/edit-binding-view.reel/edit-binding-view.html +++ b/js/panels/binding/edit-binding-view.reel/edit-binding-view.html | |||
@@ -21,7 +21,9 @@ | |||
21 | "directionCheckbox" : {"@": "directionCheckbox" }, | 21 | "directionCheckbox" : {"@": "directionCheckbox" }, |
22 | "saveButton":{ "@": "saveButton" }, | 22 | "saveButton":{ "@": "saveButton" }, |
23 | "cancelButton":{ "@": "cancelButton" }, | 23 | "cancelButton":{ "@": "cancelButton" }, |
24 | "deleteButton":{ "@": "deleteButton" } | 24 | "deleteButton":{ "@": "deleteButton" }, |
25 | "sourceObjectIconElement": {"#": "source-object-icon"}, | ||
26 | "boundObjectIconElement": {"#": "bound-object-icon"} | ||
25 | } | 27 | } |
26 | }, | 28 | }, |
27 | "sourceObjectField": { | 29 | "sourceObjectField": { |
@@ -31,7 +33,7 @@ | |||
31 | "element": {"#": "sourceObjectField"} | 33 | "element": {"#": "sourceObjectField"} |
32 | }, | 34 | }, |
33 | "bindings": { | 35 | "bindings": { |
34 | "value": {"<-": "@owner.sourceObjectIdentifier"} | 36 | "value": {"<<->": "@owner.sourceObjectIdentifier"} |
35 | }, | 37 | }, |
36 | "listeners" : [ | 38 | "listeners" : [ |
37 | { | 39 | { |
@@ -47,7 +49,7 @@ | |||
47 | "element": {"#": "boundObjectField"} | 49 | "element": {"#": "boundObjectField"} |
48 | }, | 50 | }, |
49 | "bindings": { | 51 | "bindings": { |
50 | "value": {"<-": "@owner.boundObjectIdentifier"} | 52 | "value": {"<<->": "@owner.boundObjectIdentifier"} |
51 | }, | 53 | }, |
52 | "listeners" : [ | 54 | "listeners" : [ |
53 | { | 55 | { |
@@ -64,7 +66,7 @@ | |||
64 | "identifier": "sourceProperty" | 66 | "identifier": "sourceProperty" |
65 | }, | 67 | }, |
66 | "bindings": { | 68 | "bindings": { |
67 | "value": {"<-": "@owner.sourceObjectPropertyPath"} | 69 | "value": {"<<->": "@owner.sourceObjectPropertyPath"} |
68 | }, | 70 | }, |
69 | "listeners" : [ | 71 | "listeners" : [ |
70 | { | 72 | { |
@@ -81,7 +83,7 @@ | |||
81 | "identifier": "boundProperty" | 83 | "identifier": "boundProperty" |
82 | }, | 84 | }, |
83 | "bindings": { | 85 | "bindings": { |
84 | "value": {"<-": "@owner.boundObjectPropertyPath"} | 86 | "value": {"<<->": "@owner.boundObjectPropertyPath"} |
85 | }, | 87 | }, |
86 | "listeners" : [ | 88 | "listeners" : [ |
87 | { | 89 | { |
@@ -147,14 +149,10 @@ | |||
147 | </head> | 149 | </head> |
148 | <body> | 150 | <body> |
149 | <div data-montage-id="edit-binding" class="edit-binding-view"> | 151 | <div data-montage-id="edit-binding" class="edit-binding-view"> |
150 | |||
151 | |||
152 | <section class="edit-object-binding"> | 152 | <section class="edit-object-binding"> |
153 | <div data-montage-id="source-object-container" class="object-container"> | 153 | <div data-montage-id="source-object-container" class="object-container"> |
154 | <div data-montage-id="source-object-icon-container" class="object-icon-container"> | 154 | <div data-montage-id="source-object-icon-container" class="object-icon-container"> |
155 | <div> | 155 | <div data-montage-id="source-object-icon" class="object-icon"></div> |
156 | <div class="object-icon"></div> | ||
157 | </div> | ||
158 | </div> | 156 | </div> |
159 | <div class="object-fields-container"> | 157 | <div class="object-fields-container"> |
160 | <span data-montage-id="sourceObjectField" class="hintable-field">Test</span> | 158 | <span data-montage-id="sourceObjectField" class="hintable-field">Test</span> |
@@ -164,9 +162,7 @@ | |||
164 | 162 | ||
165 | <div data-montage-id="bound-object-container" class="object-container"> | 163 | <div data-montage-id="bound-object-container" class="object-container"> |
166 | <div data-montage-id="bound-object-icon-container" class="object-icon-container"> | 164 | <div data-montage-id="bound-object-icon-container" class="object-icon-container"> |
167 | <div> | 165 | <div data-montage-id="bound-object-icon" class="object-icon"></div> |
168 | <div class="object-icon"></div> | ||
169 | </div> | ||
170 | </div> | 166 | </div> |
171 | <div class="object-fields-container"> | 167 | <div class="object-fields-container"> |
172 | <span data-montage-id="boundObjectField" class="hintable-field">Test</span> | 168 | <span data-montage-id="boundObjectField" class="hintable-field">Test</span> |
@@ -175,12 +171,10 @@ | |||
175 | </div> | 171 | </div> |
176 | </section> | 172 | </section> |
177 | 173 | ||
178 | |||
179 | <div class="checkbox-container"> | 174 | <div class="checkbox-container"> |
180 | <input data-montage-id="direction-checkbox" type="checkbox" class="nj-skinned"><label>Oneway</label> | 175 | <input data-montage-id="direction-checkbox" type="checkbox" class="nj-skinned"><label>Oneway</label> |
181 | </div> | 176 | </div> |
182 | 177 | ||
183 | |||
184 | <div class="buttons-container"> | 178 | <div class="buttons-container"> |
185 | <button data-montage-id="delete-button" class="nj-skinned btn-delete">Delete</button> | 179 | <button data-montage-id="delete-button" class="nj-skinned btn-delete">Delete</button> |
186 | <button data-montage-id="save-button" class="nj-skinned btn-save">Save</button> | 180 | <button data-montage-id="save-button" class="nj-skinned btn-save">Save</button> |
diff --git a/js/panels/binding/edit-binding-view.reel/edit-binding-view.js b/js/panels/binding/edit-binding-view.reel/edit-binding-view.js index 10f427af..62a47aaf 100644 --- a/js/panels/binding/edit-binding-view.reel/edit-binding-view.js +++ b/js/panels/binding/edit-binding-view.reel/edit-binding-view.js | |||
@@ -5,10 +5,13 @@ | |||
5 | </copyright> */ | 5 | </copyright> */ |
6 | 6 | ||
7 | var Montage = require("montage/core/core").Montage, | 7 | var Montage = require("montage/core/core").Montage, |
8 | Component = require("montage/ui/component").Component; | 8 | Component = require("montage/ui/component").Component, |
9 | Converter = require("montage/core/converter/converter").Converter; | ||
9 | 10 | ||
10 | 11 | ||
11 | exports.EditBindingView = Montage.create(Component, { | 12 | var editBindingView = exports.EditBindingView = Montage.create(Component, { |
13 | sourceObjectIconElement : { value: null }, | ||
14 | boundObjectIconElement : { value: null }, | ||
12 | 15 | ||