diff options
author | Nivesh Rajbhandari | 2012-03-19 17:06:20 -0700 |
---|---|---|
committer | Nivesh Rajbhandari | 2012-03-19 17:06:20 -0700 |
commit | e4159f8cea57077c755030a421c091b28c7a8ecc (patch) | |
tree | 4ec14f489dcb571b124c6d2b8a5ada8d03eb3da6 /js/panels/Materials/materials-library-panel.reel | |
parent | afe4b3d6567a35586e970682d71cba61c416e496 (diff) | |
download | ninja-e4159f8cea57077c755030a421c091b28c7a8ecc.tar.gz |
Use new tree control in Materials panel.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/panels/Materials/materials-library-panel.reel')
-rwxr-xr-x | js/panels/Materials/materials-library-panel.reel/materials-library-panel.html | 43 | ||||
-rwxr-xr-x | js/panels/Materials/materials-library-panel.reel/materials-library-panel.js | 34 |
2 files changed, 51 insertions, 26 deletions
diff --git a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html index fe17d0f8..4e41512f 100755 --- a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html +++ b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.html | |||
@@ -46,10 +46,39 @@ | |||
46 | } | 46 | } |
47 | ] | 47 | ] |
48 | }, | 48 | }, |
49 | "materialInfo": { | 49 | "materialInfo": { |
50 | "module": "js/panels/Materials/materials-popup.reel", | 50 | "module": "js/panels/Materials/materials-popup.reel", |
51 | "name": "MaterialsPopup" | 51 | "name": "MaterialsPopup" |
52 | }, | 52 | }, |
53 | "materialsController" : { | ||
54 | "module": "js/controllers/tree-controller", | ||
55 | "name": "TreeController", | ||
56 | "properties" : { | ||
57 | "branchKey" : "children", | ||
58 | "labelKey" : "label", | ||
59 | "delegate": {"@": "owner" } | ||
60 | }, | ||
61 | "bindings": { | ||
62 | "content": { | ||
63 | "boundObject": {"@": "owner"}, | ||
64 | "boundObjectPropertyPath": "materialsData" | ||
65 | } | ||
66 | } | ||
67 | }, | ||
68 | "materialsContainer" : { | ||
69 | "module" : "js/components/treeview/treeview.reel", | ||
70 | "name" : "Treeview", | ||
71 | "properties" : { | ||
72 | "element" : {"#": "materials_library_tree"}, | ||
73 | "branchComponent" : {"@": "branch" }, | ||
74 | "contentController": {"@": "materialsController"}, | ||
75 | "showRoot": false | ||
76 | } | ||
77 | }, | ||
78 | "branch" : { | ||
79 | "module" : "js/components/treeview/ninja-branch.reel", | ||
80 | "name" : "Branch" | ||
81 | }, | ||
53 | "owner": { | 82 | "owner": { |
54 | "module": "js/panels/Materials/materials-library-panel.reel", | 83 | "module": "js/panels/Materials/materials-library-panel.reel", |
55 | "name": "MaterialsLibraryPanels", | 84 | "name": "MaterialsLibraryPanels", |
@@ -65,9 +94,9 @@ | |||
65 | <body> | 94 | <body> |
66 | 95 | ||
67 | <div id="materials_library_panel" class="materials_library_panel"> | 96 | <div id="materials_library_panel" class="materials_library_panel"> |
68 | <div id="ml_tree_holder"> | 97 | <section id="ml_tree_holder" class="animationsLibrary"> |
69 | <ul id="materials_library_tree"></ul> | 98 | <div id="materials_library_tree"></div> |
70 | </div> | 99 | </section> |
71 | <hr /> | 100 | <hr /> |
72 | <div id="ml_buttons"> | 101 | <div id="ml_buttons"> |
73 | <button id="ml_add_btn" class="nj-skinned">Add</button> | 102 | <button id="ml_add_btn" class="nj-skinned">Add</button> |
diff --git a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.js b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.js index bb550598..5fd86d00 100755 --- a/js/panels/Materials/materials-library-panel.reel/materials-library-panel.js +++ b/js/panels/Materials/materials-library-panel.reel/materials-library-panel.js | |||
@@ -4,29 +4,26 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | 4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. |
5 | </copyright> */ | 5 | </copyright> */ |
6 | 6 | ||
7 | var Tree = require("js/components/tree.reel").Tree, | 7 | var Montage = require("montage/core/core").Montage, |
8 | MaterialsPopup = require("js/panels/Materials/materials-popup.reel").MaterialsPopup, | 8 | Component = require("montage/ui/component").Component, |
9 | PopupMananger = require("js/components/popup-manager.reel").PopupMananger, | 9 | MaterialsData = require("js/panels/Materials/materials-data.json"), |
10 | Popup = require("montage/ui/popup/popup.reel").Popup; | 10 | Popup = require("montage/ui/popup/popup.reel").Popup; |
11 | 11 | ||
12 | exports.MaterialsLibraryPanel = (require("montage/core/core").Montage).create(require("montage/ui/component").Component, { | 12 | exports.MaterialsLibraryPanel = Montage.create(Component, { |
13 | |||
14 | materialsData: { | ||
15 | value: null | ||
16 | }, | ||
13 | 17 | ||
14 | _hasFocus: { | 18 | _hasFocus: { |
15 | enumerable: false, | 19 | enumerable: false, |
16 | value: false | 20 | value: false |
17 | }, | 21 | }, |
18 | |||
19 | prepareForDraw: { | ||
20 | enumerable: false, | ||
21 | value: function() { | ||
22 | var treeHolderDiv = document.getElementById("materials_library_tree"); | ||
23 | var materialsTree = Tree.create(); | ||
24 | materialsTree.element = treeHolderDiv; | ||
25 | materialsTree.dataProvider = this._loadXMLDoc("js/panels/Materials/Materials.xml"); | ||
26 | materialsTree.needsDraw = true; | ||
27 | 22 | ||
28 | materialsTree.addEventListener("change", this, true); | 23 | didCreate: { |
29 | } | 24 | value: function() { |
25 | this.materialsData = MaterialsData; | ||
26 | } | ||
30 | }, | 27 | }, |
31 | 28 | ||
32 | willDraw: { | 29 | willDraw: { |
@@ -71,10 +68,9 @@ exports.MaterialsLibraryPanel = (require("montage/core/core").Montage).create(re | |||
71 | } | 68 | } |
72 | }, | 69 | }, |
73 | 70 | ||
74 | captureChange: { | 71 | handleNodeActivation: { |
75 | value:function(e) { | 72 | value:function(obj) { |
76 | var tNode = e._event.treeNode; | 73 | this._showMaterialPopup(obj.id); |
77 | this._showMaterialPopup(tNode.id); | ||
78 | } | 74 | } |
79 | }, | 75 | }, |
80 | 76 | ||