aboutsummaryrefslogtreecommitdiff
path: root/js/mediators/io-mediator.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/mediators/io-mediator.js')
-rw-r--r--js/mediators/io-mediator.js182
1 files changed, 131 insertions, 51 deletions
diff --git a/js/mediators/io-mediator.js b/js/mediators/io-mediator.js
index 057a849d..e6f2cc2d 100644
--- a/js/mediators/io-mediator.js
+++ b/js/mediators/io-mediator.js
@@ -10,7 +10,7 @@ var Montage = require("montage/core/core").Montage,
10 Component = require("montage/ui/component").Component, 10 Component = require("montage/ui/component").Component,
11 FileIo = require("js/io/system/fileio").FileIo, 11 FileIo = require("js/io/system/fileio").FileIo,
12 ProjectIo = require("js/io/system/projectio").ProjectIo, 12 ProjectIo = require("js/io/system/projectio").ProjectIo,
13 TemplateCreator = require("node_modules/tools/template-creator").TemplateCreator; 13 TemplateCreator = require("node_modules/tools/template/template-creator").TemplateCreator;
14//////////////////////////////////////////////////////////////////////// 14////////////////////////////////////////////////////////////////////////
15// 15//
16exports.IoMediator = Montage.create(Component, { 16exports.IoMediator = Montage.create(Component, {
@@ -53,14 +53,14 @@ exports.IoMediator = Montage.create(Component, {
53 // 53 //
54 fileNew: { 54 fileNew: {
55 enumerable: false, 55 enumerable: false,
56 value: function (file, template, callback) { 56 value: function (file, url, callback, template) {
57 //Loading template from template URL 57 //Loading template from template URL
58 var xhr = new XMLHttpRequest(), result; 58 var xhr = new XMLHttpRequest(), result;
59 xhr.open("GET", template, false); 59 xhr.open("GET", url, false);
60 xhr.send(); 60 xhr.send();
61 if (xhr.readyState === 4) { 61 if (xhr.readyState === 4) {
62 //Making call to create file, checking for return code 62 //Making call to create file, checking for return code
63 switch (this.fio.newFile({ uri: file, contents: xhr.response })) { 63 switch (this.fio.newFile({ uri: file, contents: parseTemplate(xhr.response, template) })) {
64 case 201: 64 case 201:
65 result = { status: 201, success: true, uri: file }; 65 result = { status: 201, success: true, uri: file };
66 break; 66 break;
@@ -74,6 +74,21 @@ exports.IoMediator = Montage.create(Component, {
74 result = { status: 500, success: false, uri: file }; 74 result = { status: 500, success: false, uri: file };
75 break; 75 break;
76 } 76 }
77 //TODO: Improve template data injection
78 function parseTemplate (content, template) {
79 //
80 if (template.name.toLowerCase() === 'banner' || template.name.toLowerCase() === 'animation') {
81 //Getting dimensions of banner
82 var dimensions = template.id.split('x');
83 dimensions = {width: String(dimensions[0])+'px', height: String(dimensions[1])+'px'};
84 //
85 content = content.replace(/Dimensions@@@/gi, "Dimensions@@@"+template.id);
86 content = content.replace(/ninja-banner {}/gi, "ninja-banner {overflow: visible; width: "+dimensions.width+"; height: "+dimensions.height+"}");
87 content = content.replace(/ninja-content-wrapper {}/gi, "ninja-content-wrapper {overflow: hidden; width: "+dimensions.width+"; height: "+dimensions.height+"}");
88 }
89 //
90 return content;
91 }
77 } else { 92 } else {
78 result = { status: 500, success: false, uri: file }; 93 result = { status: 500, success: false, uri: file };
79 } 94 }
@@ -147,25 +162,25 @@ exports.IoMediator = Montage.create(Component, {
147 // 162 //
148 fileSave: { 163 fileSave: {
149 enumerable: false, 164 enumerable: false,
150 value: function (file, callback) { 165 value: function (doc, callback) {
151 // 166 //
152 var contents, save; 167 var contents, save;
153 // 168 //
154 switch (file.mode) { 169 switch (doc.mode) {
155 case 'html': 170 case 'html':
156
157
158 //TODO: Add check for Monatage library to copy
159
160 //Getting content from function to properly handle saving assets (as in external if flagged) 171 //Getting content from function to properly handle saving assets (as in external if flagged)
161 contents = this.parseNinjaTemplateToHtml(file); 172 if (doc.template && (doc.template.type === 'banner' || doc.template.type === 'animation')) {
173 contents = this.parseNinjaTemplateToHtml(doc, true);
174 } else {
175 contents = this.parseNinjaTemplateToHtml(doc);
176 }
162 break; 177 break;
163 default: 178 default:
164 contents = file.content; 179 contents = doc.content;
165 break; 180 break;
166 } 181 }
167 //Making call to save file 182 //Making call to save file
168 save = this.fio.saveFile({ uri: file.document.uri, contents: contents }); 183 save = this.fio.saveFile({ uri: doc.file.uri, contents: contents });
169 //Checking for callback 184 //Checking for callback
170 if (callback) callback(save); 185 if (callback) callback(save);
171 } 186 }
@@ -196,23 +211,58 @@ exports.IoMediator = Montage.create(Component, {
196 //Setting content to temp 211 //Setting content to temp
197 doc.getElementsByTagName('html')[0].innerHTML = html; 212 doc.getElementsByTagName('html')[0].innerHTML = html;
198 //Creating return object 213 //Creating return object
199 return { head: doc.head.innerHTML, body: doc.body.innerHTML, document: doc }; 214 return {head: doc.head.innerHTML, body: doc.body.innerHTML, document: doc};
200 } 215 }
201 }, 216 },
202 //////////////////////////////////////////////////////////////////// 217 ////////////////////////////////////////////////////////////////////
203 //TODO: Expand to allow more templates, clean up variables 218 //TODO: Expand to allow more templates, clean up variables
204 parseNinjaTemplateToHtml: { 219 parseNinjaTemplateToHtml: {
205 enumerable: false, 220 enumerable: false,
206 value: function (template) { 221 value: function (template, ninjaWrapper) {
207 var regexRootUrl, rootUrl = this.application.ninja.coreIoApi.rootUrl + escape((this.application.ninja.documentController.documentHackReference.root.split(this.application.ninja.coreIoApi.cloudData.root)[1])); 222 var regexRootUrl, rootUrl = this.application.ninja.coreIoApi.rootUrl + escape((this.application.ninja.documentController.documentHackReference.root.split(this.application.ninja.coreIoApi.cloudData.root)[1]));
208 regexRootUrl = new RegExp(rootUrl.replace(/\//gi, '\\\/'), 'gi'); 223 regexRootUrl = new RegExp(rootUrl.replace(/\//gi, '\\\/'), 'gi');
209 //Injecting head and body into old document 224 //Injecting head and body into old document
210 template.document.content.document.head.innerHTML = template.head.replace(regexRootUrl, ''); 225 template.file.content.document.head.innerHTML = template.head.innerHTML.replace(regexRootUrl, '');
211 template.document.content.document.body.innerHTML = template.body.replace(regexRootUrl, ''); 226 template.file.content.document.body.innerHTML = template.body.innerHTML.replace(regexRootUrl, '');
227 //Copying attributes to maintain same properties as the <body>
228 for (var n in template.body.attributes) {
229 if (template.body.attributes[n].value) {
230 //
231 template.file.content.document.body.setAttribute(template.body.attributes[n].name, template.body.attributes[n].value);
232 }
233 }
234 //TODO: Add attribute copying for <HEAD> and <HTML>
235
236 /*
237 var tc = this.application.ninja.documentController.activeDocument.model.views.design.iframe.contentWindow.mjsTemplateCreator, code;
238 code = tc.initWithDocument(this.application.ninja.documentController.activeDocument.model.views.design.iframe.contentWindow.document);
239 console.log(code._ownerSerialization, code._document.getElementsByTagName('html')[0].innerHTML);
240
241 template.file.content.document.head.innerHTML = mjscode._document.head.innerHTML.replace(regexRootUrl, '');
242 template.file.content.document.body.innerHTML = mjscode._document.body.innerHTML.replace(regexRootUrl, '');
243 */
244
245
246
247
212 //Getting all CSS (style or link) tags 248 //Getting all CSS (style or link) tags
213 var styletags = template.document.content.document.getElementsByTagName('style'), 249 var styletags = template.file.content.document.getElementsByTagName('style'),
214 linktags = template.document.content.document.getElementsByTagName('link'), 250 linktags = template.file.content.document.getElementsByTagName('link'),
215 toremovetags = []; 251 toremovetags = [],
252 njtemplatetags = template.file.content.document.querySelectorAll('[data-ninja-template]');
253
254 //////////////////////////////////////////////////
255 //TODO: Remove, temp hack, this is to be fixed by Montage
256 var basetags = template.file.content.document.getElementsByTagName('base');
257 for (var g in basetags) {
258 if (basetags[g].getAttribute) toremovetags.push(basetags[g]);
259 }
260 //////////////////////////////////////////////////
261
262 //
263 for (var f in njtemplatetags) {
264 if (njtemplatetags[f].getAttribute) toremovetags.push(njtemplatetags[f]);
265 }
216 //Getting styles tags to be removed from document 266 //Getting styles tags to be removed from document
217 if (styletags.length) { 267 if (styletags.length) {
218 for (var j = 0; j < styletags.length; j++) { 268 for (var j = 0; j < styletags.length; j++) {
@@ -229,15 +279,16 @@ exports.IoMediator = Montage.create(Component, {
229 for (var h = 0; toremovetags[h]; h++) { 279 for (var h = 0; toremovetags[h]; h++) {
230 try { 280 try {
231 //Checking head first 281 //Checking head first
232 template.document.content.document.head.removeChild(toremovetags[h]); 282 template.file.content.document.head.removeChild(toremovetags[h]);
233 } catch (e) { 283 } catch (e) {
234 try { 284
285 }
286 try {
235 //Checking body if not in head 287 //Checking body if not in head
236 template.document.content.document.body.removeChild(toremovetags[h]); 288 template.file.content.document.body.removeChild(toremovetags[h]);
237 } catch (e) { 289 } catch (e) {
238 //Error, not found! 290 //Error, not found!
239 } 291 }
240 }
241 } 292 }
242 //Removing disabled tags from tags that were not originally disabled by user (Ninja enables all) 293 //Removing disabled tags from tags that were not originally disabled by user (Ninja enables all)
243 for (var l in linktags) { 294 for (var l in linktags) {
@@ -255,13 +306,13 @@ exports.IoMediator = Montage.create(Component, {
255 if (template.styles) { 306 if (template.styles) {
256 //Getting all style tags 307 //Getting all style tags
257 var styleCounter = 0, 308 var styleCounter = 0,
258 docStyles = template.document.content.document.getElementsByTagName('style'); 309 docStyles = template.file.content.document.getElementsByTagName('style');
259 //Looping through all style tags 310 //Looping through all style tags
260 for (var i in template.styles) { 311 for (var i in template.styles) {
261 if (template.styles[i].ownerNode) { 312 if (template.styles[i].ownerNode) {
262 if (template.styles[i].ownerNode.getAttribute) { 313 if (template.styles[i].ownerNode.getAttribute) {
263 //Checking for node not to be loaded from file 314 //Checking for node not to be loaded from file
264 if (template.styles[i].ownerNode.getAttribute('data-ninja-uri') === null && !template.styles[i].ownerNode.getAttribute('data-ninja-template')) { 315 if (template.styles[i].ownerNode.getAttribute('data-ninja-uri') === null && !template.styles[i].ownerNode.getAttribute('data-ninja-template') && !template.styles[i].ownerNode.getAttribute('data-ninja-external-url')) {
265 if (docStyles[styleCounter]) { 316 if (docStyles[styleCounter]) {
266 //Inseting data from rules array into tag as string 317 //Inseting data from rules array into tag as string
267 docStyles[styleCounter].innerHTML = this.getCssFromRules(template.styles[i].cssRules);