aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
Diffstat (limited to 'js')
-rwxr-xr-xjs/controllers/document-controller.js2
-rwxr-xr-xjs/controllers/selection-controller.js1
-rwxr-xr-xjs/document/document-html.js221
-rwxr-xr-xjs/document/helpers/url-parser.js45
-rwxr-xr-xjs/document/models/base.js77
-rwxr-xr-xjs/document/models/html.js1
-rwxr-xr-xjs/document/templates/montage-web/index.html1
-rwxr-xr-xjs/document/views/base.js46
-rwxr-xr-xjs/document/views/design.js103
-rwxr-xr-xjs/io/system/fileio.js4
-rw-r--r--js/io/system/ninjalibrary.js2
-rw-r--r--js/mediators/io-mediator.js4
-rwxr-xr-xjs/stage/stage.reel/stage.js4
13 files changed, 341 insertions, 170 deletions
diff --git a/js/controllers/document-controller.js b/js/controllers/document-controller.js
index 7795a74d..bb0f542f 100755
--- a/js/controllers/document-controller.js
+++ b/js/controllers/document-controller.js
@@ -366,7 +366,7 @@ var DocumentController = exports.DocumentController = Montage.create(Component,
366 case 'html': 366 case 'html':
367 //Open in designer view 367 //Open in designer view
368 this._hackRootFlag = false; 368 this._hackRootFlag = false;
369 Montage.create(Document).init(doc, this, this._onOpenDocument); 369 Montage.create(Document).init(doc, this, this._onOpenDocument, 'design');
370 break; 370 break;
371 default: 371 default:
372 //Open in code view 372 //Open in code view
diff --git a/js/controllers/selection-controller.js b/js/controllers/selection-controller.js
index 5665b09c..2bd774f5 100755
--- a/js/controllers/selection-controller.js
+++ b/js/controllers/selection-controller.js
@@ -152,7 +152,6 @@ exports.SelectionController = Montage.create(Component, {
152 152
153 selectElement: { 153 selectElement: {
154 value: function(element) { 154 value: function(element) {
155
156 if(this.findSelectedElement(element) === -1) { 155 if(this.findSelectedElement(element) === -1) {
157 156
158 if(this.application.ninja.currentDocument.inExclusion(element) !== -1){ 157 if(this.application.ninja.currentDocument.inExclusion(element) !== -1){
diff --git a/js/document/document-html.js b/js/document/document-html.js
index 89717dd6..ad82c371 100755
--- a/js/document/document-html.js
+++ b/js/document/document-html.js
@@ -7,138 +7,117 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
7//////////////////////////////////////////////////////////////////////// 7////////////////////////////////////////////////////////////////////////
8// 8//
9var Montage = require("montage/core/core").Montage, 9var Montage = require("montage/core/core").Montage,
10 Component = require("montage/ui/component").Component; 10 Component = require("montage/ui/component").Component,
11 HtmlDocumentModel = require("js/document/models/html").HtmlDocumentModel; 11 HtmlDocumentModel = require("js/document/models/html").HtmlDocumentModel,
12 DesignDocumentView = require("js/document/views/design").DesignDocumentView;
12//////////////////////////////////////////////////////////////////////// 13////////////////////////////////////////////////////////////////////////
13// 14//
14exports.HtmlDocument = Montage.create(Component, { 15exports.HtmlDocument = Montage.create(Component, {
15 //////////////////////////////////////////////////////////////////// 16 ////////////////////////////////////////////////////////////////////
16 // 17 //
17 hasTemplate: { 18 hasTemplate: {
18 enumerable: false,
19 value: false 19 value: false
20 }, 20 },
21 21 ////////////////////////////////////////////////////////////////////
22 //
22 model: { 23 model: {
23 value: null 24 value: null
24 }, 25 },
25 26 ////////////////////////////////////////////////////////////////////
26 loadDelegate: { 27 //
27 value: null 28 _document: {
28 }, 29 value: null //TODO: Figure out if this will be needed, probably not
29
30 delegateContext: {
31 value: null
32 }, 30 },
33 31 ////////////////////////////////////////////////////////////////////
32 //
34 exclusionList: { 33 exclusionList: {
35 value: ["HTML", "BODY"] 34 value: [] //TODO: Update to correct list
36 }, 35 },
37 36 ////////////////////////////////////////////////////////////////////
38 // Getters for the model. 37 //
39 // TODO: Change how these properties are accessed through Ninja
40 name: {
41 get: function() {
42 return this.model._name;
43 },
44 set: function(value) {
45 this.model._name = value;
46 }
47 },
48
49 isActive: {
50 get: function() {
51 return this.model._isActive;
52 },
53 set: function(value) {
54 this.model._isActive = value;
55 }
56 },
57
58 needsSave: {
59 get: function() {
60 return this.model._needsSave;
61 },
62 set: function(value) {
63 this.model._needsSave = value;
64 }
65 },
66
67 // View Properties
68 // TODO: Move those into a view object - for now dump it here
69 iframe: {
70 value: null
71 },
72
73 uuid: { 38 uuid: {
74 get: function() { 39 get: function() {
75 return this._uuid; 40 return this._uuid;
76 } 41 }
77 }, 42 },
78 43 ////////////////////////////////////////////////////////////////////
79 currentView: { 44 //
80 value: "design" 45 inExclusion: {
46 value: function(element) {
47 if(this.exclusionList.indexOf(element.nodeName) === -1) {
48 return -1;
49 }
50 return 1;
51 }
81 }, 52 },
82 //////////////////////////////////////////////////////////////////// 53 ////////////////////////////////////////////////////////////////////
83 //////////////////////////////////////////////////////////////////// 54 //
84 init: { 55 init: {
85 value:function(file, context, callback) { 56 value:function(file, context, callback, view) {
86 this.model = Montage.create(HtmlDocumentModel, { 57 //Creating instance of HTML Document Model
87 file: { 58 this.model = Montage.create(HtmlDocumentModel,{
88 value: file 59 file: {value: file},
89 } 60 views: {value: {'design': DesignDocumentView.create(), 'code': null}} //TODO: Add code view logic
90 }); 61 });
91 62 //Initiliazing views and hiding
92 this.name = file.name; 63 if (this.model.views.design.initiliaze(document.getElementById("iframeContainer"))) {
93 64 //Hiding iFrame, just initiliazing
94 // this.init(file.name, file.uri, file.extension, iframe, uuid, callback); 65 this.model.views.design.hide();
95 66 } else {
96 67 //ERROR: Design View not initilized
97 this.iframe = this.createView(); 68 }
98
99 //this.selectionExclude = ["HTML", "BODY", "Viewport", "UserContent", "stageBG"];
100 //this.currentView = "design";
101 // 69 //
102 70 if (view === 'design') {
103 this.delegateContext = context; 71 //Showing design iFrame
104 this.loadDelegate = callback; 72 this.model.views.design.show();
105 } 73 this.model.views.design.iframe.style.opacity = 0;
106 }, 74 this.model.views.design.content = this.model.file.content;
107 75 //
108 // Create View 76 this.model.views.design.render(function () {
109 // Move this into a base view object 77 //Setting opacity to be viewable after load
110 createView: { 78 this.model.views.design.iframe.style.opacity = 1;
111 value: function() { 79
112 var ifr = document.createElement("iframe"); 80
113 ifr.id = "document_" + this._uuid; 81
114 82
115 83 //TODO: Identify and remove usage of '_document'
116 ifr.style.border = "none"; 84 this._document = this.model.views.design.document;
117 ifr.style.background = "#FFF"; 85 //TODO: Check for needed
118 ifr.style.height = "100%"; 86 this.documentRoot = this.model.views.design.document.body;
119 ifr.style.width = "100%"; 87 //
120 88 this._liveNodeList = this.documentRoot.getElementsByTagName('*');
121 // TODO: Reable opacity to display only when done loading 89 //
122// ifr.style.opacity = 0; 90 document.application.njUtils.makeElementModel(this.documentRoot, "Body", "body");
123 91
124 ifr.src = "js/document/templates/montage-web/index.html"; 92
125 ifr.addEventListener("load", this.handleWebTemplateLoad.bind(this), true); 93
126 94
127 return document.getElementById("iframeContainer").appendChild(ifr); 95 this.hack = {callback: callback, context: context};
96
97 setTimeout(function () {
98 //Making callback after view is loaded
99 this.hack.callback.call(this.hack.context, this);
100 }.bind(this), 1000);
101
102
103
104