aboutsummaryrefslogtreecommitdiff
path: root/js/document/models/base.js
blob: c69c54a95be6aab47378c99472b27864aa473a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/* <copyright>
This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
(c) Copyright 2011 Motorola Mobility, Inc.  All Rights Reserved.
</copyright> */

////////////////////////////////////////////////////////////////////////
//
var Montage = 	require("montage/core/core").Montage,
	Component = require("montage/ui/component").Component;
////////////////////////////////////////////////////////////////////////
//	
exports.BaseDocumentModel = Montage.create(Component, {
	////////////////////////////////////////////////////////////////////
	//
	hasTemplate: {
        value: false
    },
    ////////////////////////////////////////////////////////////////////
	//
	_file: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
    file: {
        get: function() {return this._file;},
        set: function(value) {this._file = value;}
    },
	////////////////////////////////////////////////////////////////////
	//
    _isActive: {
        value: true
    },
    ////////////////////////////////////////////////////////////////////
	//
    isActive: {
        get: function() {return this._isActive;},
        set: function(value) {this._isActive = value;}
    },
	////////////////////////////////////////////////////////////////////
	//
    _needsSave: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
    needsSave: {
        get: function() {return this._needsSave;},
        set: function(value) {this._needsSave = value;}
    },
    ////////////////////////////////////////////////////////////////////
	//
    _currentView: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
    currentView: {
        get: function() {return this._currentView;},
        set: function(value) {this._currentView = value;}
    },
    ////////////////////////////////////////////////////////////////////
	//
    _selection: {
        value: []
    },
    ////////////////////////////////////////////////////////////////////
    //
    selection: {
        get: function() {
            return this._selection;
        },
        set: function(value) {
            this._selection = value;
        }
    },
    ////////////////////////////////////////////////////////////////////
    //
    fileTemplate: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
    parentContainer: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
	views: {
        value: null
    },
    ////////////////////////////////////////////////////////////////////
	//
	libs: {
        value: {montage: false, canvas: false, montageId: null, canvasId: null}
    },
    ////////////////////////////////////////////////////////////////////
	//
	switchViewTo: {
        value: function (view) {
        	//
        }
    },
    ////////////////////////////////////////////////////////////////////
	//TODO: Add API to allow other browser support
	browserPreview: {
        value: function (browser, screen, context) {
        	//Making call to show feedback screen
        	if (screen) screen.show(context);
        	//Generating URL for document
        	var url = this.application.ninja.coreIoApi.rootUrl + this.file.uri.split(this.application.ninja.coreIoApi.cloudData.root)[1];
        	//TODO: Add logic to prompt user to save (all) before preview
        	this.saveAll(null,function (success) {
        		//Making call to show feedback screen
        		if (screen) screen.hide(context);
        		//TODO: Add error handling logic
        		if (!success) {
	        		console.log('Error!');
	        		return;
        		}
        		//Currently only supporting current browser (Chrome, obviously)
        		switch (this.browser) {
        			case 'chrome':
        				if (this.template && (this.template.type === 'banner' || this.template.type === 'animation')) {
        					window.open('/js/document/templates/preview/banner.html?width='+this.template.size.width+'&height='+this.template.size.height+'&url='+this.url);
        				} else {
        					window.open(this.url);
        				}
	        			break;
    	    		default:
        				if (this.template && (this.template.type === 'banner' || this.template.type === 'animation')) {
        					window.open('/js/document/templates/preview/banner.html?width='+this.template.size.width+'&height='+this.template.size.height+'&url='+this.url);
        				} else {
        					window.open(this.url);
        				}
        				break;
	        	}
        	}.bind({browser: browser, url: url, template: this.fileTemplate}));
        }
    },
    ////////////////////////////////////////////////////////////////////
	//Gets all stylesheets in document
	getStyleSheets: {
		value: function () {
			//Array to store styles (style and link tags)
			var styles = [];
    		//Looping through document sytles
    		for (var k in this.views.design.iframe.contentWindow.document.styleSheets) {
    			//Check for styles to has proper propeties
    			if (this.views.design.iframe.contentWindow.document.styleSheets[k].ownerNode && this.views.design.iframe.contentWindow.document.styleSheets[k].ownerNode.getAttribute) {
    				//Check for ninja-template styles, if so, exclude
            		if (this.views.design.iframe.contentWindow.document.styleSheets[k].ownerNode.getAttribute('data-ninja-template') === null) {
            			styles.push(this.views.design.iframe.contentWindow.document.styleSheets[k]);
            		}
            	}
           	}
           	//Returning filtered results
           	return styles;
		}
	},
    ////////////////////////////////////////////////////////////////////
	//
	save: {
        value: function (callback, libCopyCallback) {
        	//TODO: Implement on demand logic
        	if (this.needsSave) {
        		//Save
        	} else {
        		//Ignore command
        	}
        	//
        	if (this.currentView === this.views.design) {
            	//
        		var save = this.application.ninja.ioMediator.fileSave({
        			mode: 'html',
        			libs: this.libs,
        			file: this.file,
        			webgl: this.webGlHelper.glData,
        			styles: this.getStyleSheets(),
        			template: this.fileTemplate,
        			document: this.views.design.iframe.contentWindow.document,
        			head: this.views.design.iframe.contentWindow.document.head,
        			body: this.views.design.iframe.contentWindow.document.body,
        			mjsTemplateCreator: this.views.design.iframe.contentWindow.mjsTemplateCreator
        		}, this.handleSaved.bind({callback: callback, model: this}), libCopyCallback);
        		//TODO: Improve detection during save routine
        		if (save) {
	        		if (save.montageId) {
		        		this.libs.montageId = save.montageId;
		        		this.libs.montage = true;
	        		}
	        		if (save.canvasId) {
		        		this.libs.canvasId = save.canvasId;
		        		this.libs.canvas = true;
	        		}
        		}
        	} else {
        		//TODO: Add logic to save code view data
        	}
        }
    },
    ////////////////////////////////////////////////////////////////////
	//
	saveAll: {
        value: function (callback, libCopyCallback) {
           	//TODO: Implement on demand logic
        	if (this.needsSave) {
        		//Save
        	} else {
        		//Ignore command
        	}
        	//
        	if (this.currentView === this.views.design) {
            	//
        		var save = this.application.ninja.ioMediator.fileSave({
        			mode: 'html',
        			libs: this.libs,
        			file: this.file,
        			webgl: this.webGlHelper.glData,
        			css: this.getStyleSheets(),
        			template: this.fileTemplate,
        			document: this.views.design.iframe.contentWindow.document,
        			head: this.views.design.iframe.contentWindow.document.head,
        			body: this.views.design.iframe.contentWindow.document.body,
        			mjsTemplateCreator: this.views.design.iframe.contentWindow.mjsTemplateCreator
        		}, this.handleSaved.bind({callback: callback, model: this}), libCopyCallback);
        		//TODO: Improve detection during save routine
        		if (save) {
	        		if (save.montageId) {
		        		this.libs.montageId = save.montageId;
		        		this.libs.montage = true;
	        		}
	        		if (save.canvasId) {
		        		this.libs.canvasId = save.canvasId;
		        		this.libs.canvas = true;
	        		}
        		}
        	} else {
        		//TODO: Add logic to save code view data
        	}

        }
    },
    ////////////////////////////////////////////////////////////////////
	//
	saveAs: {
        value: function (callback) {
        	//TODO: Implement on demand logic
        	if (this.needsSave) {
        		//Save current file on memory
        	} else {
        		//Copy file from disk
        	}
        	//TODO: Add functionality
        }
    },
    ////////////////////////////////////////////////////////////////////
	//
	handleSaved: {
		value: function (result) {
			//Checking for success code in save
			if (result.status === 204) {
				//Clearing flag with successful save
				this.model.needsSave = false;
			}
			//Making callback call if specifed with results of operation
			if (this.callback) this.callback(result);
		}
	},
    ////////////////////////////////////////////////////////////////////
	//TODO: Implement better logic to include different views on single document
	close: {
        value: function (view, callback) {
        	//Outcome of close (pending on save logic)
        	var success;
        	//
        	if (this.needsSave) {
        		//TODO: Prompt user to save or lose data
        	} else {
        		//Close file
        		success = true;
        	}
        	//Checking for view mode to close
        	if (this.views.design && (!view || view === 'design')) {
        		//TODO: Create a destroy method, this is messy
        		this.views.design.pauseAndStopVideos();
        		this.parentContainer.removeChild(this.views.design.iframe);
        		this.views.design = null;
        	}
        	//Returning result of operation
        	return success;
        }
    }
	////////////////////////////////////////////////////////////////////
	////////////////////////////////////////////////////////////////////
});
////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////