aboutsummaryrefslogtreecommitdiff
path: root/js/document/models/base.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-06-19 01:03:59 -0700
committerArmen Kesablyan2012-06-19 01:03:59 -0700
commit2e13a73e4ee980a6f73f6ff48b2a195eb209a7db (patch)
treed352f5e769eae0e1b7b76ccbeafa9b174b1a9918 /js/document/models/base.js
parent244e608645778746d1a3b5aa0d4c0868f7c5c272 (diff)
parentc59eb371559a3061ce53223e249ca97daace5968 (diff)
downloadninja-2e13a73e4ee980a6f73f6ff48b2a195eb209a7db.tar.gz
Merge branch 'refs/heads/master' into binding
Conflicts: js/components/layout/tools-list.reel/tools-list.html js/components/layout/tools-properties.reel/tools-properties.html js/document/document-html.js js/document/templates/app/main.js js/panels/Panel.reel/Panel.js node_modules/montage/ui/native-control.js Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/document/models/base.js')
-rwxr-xr-xjs/document/models/base.js69
1 files changed, 51 insertions, 18 deletions
diff --git a/js/document/models/base.js b/js/document/models/base.js
index 9c26bd2a..1daec5c0 100755
--- a/js/document/models/base.js
+++ b/js/document/models/base.js
@@ -6,8 +6,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
6 6
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 NinjaPrompt = require("js/components/prompt.reel").NinjaPrompt;
11//////////////////////////////////////////////////////////////////////// 12////////////////////////////////////////////////////////////////////////
12// 13//
13exports.BaseDocumentModel = Montage.create(Component, { 14exports.BaseDocumentModel = Montage.create(Component, {
@@ -65,6 +66,9 @@ exports.BaseDocumentModel = Montage.create(Component, {
65 _selection: { 66 _selection: {
66 value: [] 67 value: []
67 }, 68 },
69 domContainer: {
70 value: null
71 },
68 //////////////////////////////////////////////////////////////////// 72 ////////////////////////////////////////////////////////////////////
69 // 73 //
70 selection: { 74 selection: {
@@ -277,30 +281,59 @@ exports.BaseDocumentModel = Montage.create(Component, {
277 if (this.callback) this.callback(result); 281 if (this.callback) this.callback(result);
278 } 282 }
279 }, 283 },
284 ////////////////////////////////////////////////////////////////////
285 //
286 handleSavePrompt: {
287 value: function (continueToClose, callback) {
288 //TODO: Perhaps add logic to save the file is the user wants
289 if (continueToClose) {
290 if (callback) callback();
291 } else {
292 //User canceled
293 //this.saveAll(null, callback);
294 }
295 }
296 },
280 //////////////////////////////////////////////////////////////////// 297 ////////////////////////////////////////////////////////////////////
281 //TODO: Implement better logic to include different views on single document 298 //TODO: Implement better logic to include different views on single document
282 close: { 299 close: {
283 value: function (view, callback) { 300 value: function (view, callback) {
284 //Outcome of close (pending on save logic) 301 //Checking if files needs to be saved to avoid losing data
285 var success;
286 //
287 if (this.needsSave) { 302 if (this.needsSave) {
288 //TODO: Prompt user to save or lose data 303 //Creating prompt to ask user to save the file
304 var prompt = NinjaPrompt.create();
305 prompt.initialize('confirm', {message: 'Do you want to save the changes you made in the document '+this.file.name+'?\n\nYour changes will be lost if you do not save them.'}, function (result){this.handleSavePrompt(result, callback);}.bind(this));
306 //Showing the prompt, it will make callback with user input
307 prompt.show();
289 } else { 308 } else {
290 //Close file 309 //TODO: Add support for other views
291 success = true; 310 if (!view || view === 'design') {
292 } 311 this.closeView('design');
293 //Checking for view mode to close 312 }
294 if (this.views.design && (!view || view === 'design')) { 313 //Making callback
295 //TODO: Create a destroy method, this is messy 314 if (callback) callback();
296 this.views.design.pauseAndStopVideos();
297 this.parentContainer.removeChild(this.views.design.iframe);
298 this.views.design = null;
299 } 315 }
300 //Returning result of operation 316
301 return success;
302 } 317 }
303 } 318 },
319 ////////////////////////////////////////////////////////////////////
320 //
321 closeView: {
322 value: function (view) {
323 //Checking for view mode to close
324 switch (view.toLowerCase()) {
325 case 'design':
326 //TODO: Make into clean method in the design view
327 this.views.design.pauseAndStopVideos();
328 this.parentContainer.removeChild(this.views.design.iframe);
329 this.views.design = null;
330 break;
331 default:
332 //TODO: Error?
333 break;
334 }
335 }
336 }
304 //////////////////////////////////////////////////////////////////// 337 ////////////////////////////////////////////////////////////////////
305 //////////////////////////////////////////////////////////////////// 338 ////////////////////////////////////////////////////////////////////
306}); 339});