424 lines
14 KiB
JavaScript
Raw Normal View History

2011-08-07 18:59:20 -03:00
/*
* Copyright [2011] [wisemapping]
*
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
* It is basically the Apache License, Version 2.0 (the "License") plus the
* "powered by wisemapping" text requirement on every single page;
* you may not use this file except in compliance with the License.
* You may obtain a copy of the license at
*
* http://www.wisemapping.org/license
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
mindplot.widget.Menu = new Class({
2011-10-15 02:52:44 -03:00
initialize : function(designer, containerId, mapId, readOnly) {
2011-08-08 20:48:59 -03:00
$assert(designer, "designer can not be null");
$assert(containerId, "containerId can not be null");
2011-10-02 19:16:13 -03:00
var baseUrl = "../css/widget";
2011-08-08 20:48:59 -03:00
// Init variables ...
2011-08-07 18:59:20 -03:00
this._designer = designer;
this._toolbarElems = [];
2011-08-08 20:48:59 -03:00
this._containerId = containerId;
// Stop event propagation ...
$(this._containerId).addEvent('click', function(event) {
event.stopPropagation();
2011-08-09 01:45:24 -03:00
return false;
2011-08-08 20:48:59 -03:00
});
$(this._containerId).addEvent('dblclick', function(event) {
event.stopPropagation();
2011-08-09 01:45:24 -03:00
return false;
2011-08-08 20:48:59 -03:00
});
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Create panels ...
var designerModel = designer.getModel();
2011-08-07 18:59:20 -03:00
var fontFamilyModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var fontFamily = nodes[i].getFontFamily();
if (result != null && result != fontFamily) {
result = null;
break;
}
result = fontFamily;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeFontFamily(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.FontFamilyPanel("fontFamily", fontFamilyModel));
2011-08-07 18:59:20 -03:00
var fontSizeModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var fontSize = nodes[i].getFontSize();
if (result != null && result != fontSize) {
result = null;
break;
}
result = fontSize;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeFontSize(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.FontSizePanel("fontSize", fontSizeModel));
2011-08-07 18:59:20 -03:00
var topicShapeModel = {
getValue: function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var shapeType = nodes[i].getShapeType();
if (result != null && result != shapeType) {
result = null;
break;
}
result = shapeType;
2011-08-07 18:59:20 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.changeTopicShape(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.TopicShapePanel("topicShape", topicShapeModel));
2011-08-07 18:59:20 -03:00
// Create icon panel dialog ...
var topicIconModel = {
getValue: function() {
return null;
},
setValue: function(value) {
2011-08-21 12:42:00 -03:00
designer.addIconType(value);
2011-08-07 18:59:20 -03:00
}
};
2011-08-08 20:48:59 -03:00
this._toolbarElems.push(new mindplot.widget.IconPanel('topicIcon', topicIconModel));
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Topic color item ...
var topicColorModel =
{
getValue : function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getBackgroundColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeBackgroundColor(hex);
2011-08-08 20:48:59 -03:00
}
2011-08-08 09:20:32 -03:00
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('topicColor', topicColorModel, baseUrl));
2011-08-08 20:48:59 -03:00
// Border color item ...
var borderColorModel =
{
getValue : function() {
var nodes = designerModel.filterSelectedTopics();
2011-08-09 09:03:46 -03:00
var result = null;
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getBorderColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeBorderColor(hex);
2011-08-08 20:48:59 -03:00
}
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('topicBorder', borderColorModel, baseUrl));
2011-08-07 18:59:20 -03:00
2011-08-08 20:48:59 -03:00
// Font color item ...
var fontColorModel =
{
getValue : function() {
2011-08-09 09:03:46 -03:00
var result = null;
var nodes = designerModel.filterSelectedTopics();
for (var i = 0; i < nodes.length; i++) {
2011-08-09 09:03:46 -03:00
var color = nodes[i].getFontColor();
if (result != null && result != color) {
result = null;
break;
}
result = color;
2011-08-09 01:45:24 -03:00
}
2011-08-09 09:03:46 -03:00
return result;
2011-08-07 18:59:20 -03:00
},
2011-08-08 20:48:59 -03:00
setValue : function (hex) {
2011-08-21 12:42:00 -03:00
designer.changeFontColor(hex);
2011-08-08 20:48:59 -03:00
}
};
2011-08-09 01:45:24 -03:00
this._toolbarElems.push(new mindplot.widget.ColorPalettePanel('fontColor', fontColorModel, baseUrl));
2011-08-08 20:48:59 -03:00
2011-10-15 13:23:27 -03:00
this.addButton('export', false, false, function() {
var reqDialog = new MooDialog.Request('../c/export.htm?mapId=' + mapId, null,
2011-10-16 21:42:02 -03:00
{'class': 'exportItModalDialog',
2011-10-15 13:23:27 -03:00
closeButton:true,
destroyOnClose:true,
title:'Export'
});
reqDialog.setRequestOptions({
onRequest: function() {
reqDialog.setContent('loading...');
}
});
2011-10-16 21:42:02 -03:00
MooDialog.Request.active = reqDialog;
2011-10-15 13:23:27 -03:00
});
this.addButton('print', false, false, function() {
printMap();
});
2011-10-04 01:16:29 -03:00
this.addButton('zoomIn', false, false, function() {
2011-10-10 18:30:02 -03:00
designer.zoomIn();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('zoomOut', false, false, function() {
2011-10-10 18:30:02 -03:00
designer.zoomOut();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('undoEdition', false, false, function() {
2011-10-10 18:30:02 -03:00
designer.undo();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('redoEdition', false, false, function() {
2011-08-08 09:20:32 -03:00
designer.redo();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('addTopic', true, false, function() {
2011-09-14 08:51:38 -03:00
designer.createChildForSelectedNode();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('deleteTopic', true, true, function() {
2011-08-08 09:20:32 -03:00
designer.deleteCurrentNode();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('topicLink', true, false, function() {
2011-08-21 12:42:00 -03:00
designer.addLink();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-09 17:59:16 -03:00
this.addButton('topicRelation', true, false, function(event) {
designer.showRelPivot(event);
2011-08-08 09:20:32 -03:00
});
2011-10-04 01:16:29 -03:00
this.addButton('topicNote', true, false, function() {
2011-08-21 12:42:00 -03:00
designer.addNote();
2011-10-04 01:16:29 -03:00
});
2011-08-08 09:20:32 -03:00
2011-10-04 01:16:29 -03:00
this.addButton('fontBold', true, false, function() {
2011-08-20 11:08:18 -03:00
designer.changeFontWeight();
2011-08-08 09:20:32 -03:00
});
2011-10-04 01:16:29 -03:00
this.addButton('fontItalic', true, false, function() {
2011-08-20 11:08:18 -03:00
designer.changeFontStyle();
2011-08-08 09:20:32 -03:00
});
2011-10-15 02:52:44 -03:00
var saveElem = $('save');
2011-10-02 14:47:54 -03:00
if (saveElem) {
2011-10-15 13:23:27 -03:00
this.addButton('save', false, false, function() {
saveElem.setStyle('cursor', 'wait');
designer.save(function() {
saveElem.setStyle('cursor', 'pointer');
}, true);
2011-10-02 14:47:54 -03:00
});
}
2011-10-16 21:42:02 -03:00
var discartElem = $('discard');
2011-10-02 14:47:54 -03:00
if (discartElem) {
2011-10-16 21:42:02 -03:00
this.addButton('discard', false, false, function() {
2011-10-02 14:47:54 -03:00
if (!readOnly) {
displayLoading();
window.document.location = "mymaps.htm";
} else {
displayLoading();
window.document.location = "home.htm";
}
});
}
2011-10-15 02:52:44 -03:00
var tagElem = $('tagIt');
if (tagElem) {
2011-10-15 13:23:27 -03:00
this.addButton('tagIt', false, false, function() {
var reqDialog = new MooDialog.Request('../c/tags.htm?mapId=' + mapId, null,
{'class': 'tagItModalDialog',
closeButton:true,
destroyOnClose:true,
title:'Tags'
});
2011-10-15 02:52:44 -03:00
reqDialog.setRequestOptions({
onRequest: function() {
reqDialog.setContent('loading...');
}
});
2011-10-02 14:47:54 -03:00
});
2011-10-15 02:52:44 -03:00
}
var shareElem = $('shareIt');
if (shareElem) {
2011-10-15 13:23:27 -03:00
this.addButton('shareIt', false, false, function() {
var reqDialog = new MooDialog.Request('../c/mymaps.htm?action=collaborator&userEmail=paulo%40pveiga.com.ar&mapId=' + mapId, null,
{'class': 'shareItModalDialog',
closeButton:true,
destroyOnClose:true,
title:'Share It'
});
reqDialog.setRequestOptions({
onRequest: function() {
reqDialog.setContent('loading...');
}
});
2011-10-02 14:47:54 -03:00
});
2011-10-15 02:52:44 -03:00
}
2011-10-02 14:47:54 -03:00
2011-10-15 02:52:44 -03:00
var publishElem = $('publishIt');
if (publishElem) {
2011-10-16 21:42:02 -03:00
this.addButton('publishIt', false, false, function() {
var reqDialog = new MooDialog.Request('../c/publish.htm?mapId=' + mapId, null,
{'class': 'publishModalDialog',
closeButton:true,
destroyOnClose:true,
title:'Publish'
});
reqDialog.setRequestOptions({
onRequest: function() {
reqDialog.setContent('loading...');
}
});
2011-10-02 14:47:54 -03:00
2011-10-16 21:42:02 -03:00
});
2011-10-15 02:52:44 -03:00
}
2011-10-16 21:42:02 -03:00
2011-10-15 02:52:44 -03:00
var historyElem = $('history');
if (historyElem) {
2011-10-02 14:47:54 -03:00
2011-10-15 13:23:27 -03:00
this.addButton('history', false, false, function() {
var reqDialog = new MooDialog.Request('../c/history.htm?action=list&goToMindmapList&mapId=' + mapId, null,
{'class': 'historyModalDialog',
closeButton:true,
destroyOnClose:true,
title:'History'
});
reqDialog.setRequestOptions({
onRequest: function() {
reqDialog.setContent('loading...');
}
});
2011-10-02 14:47:54 -03:00
});
}
2011-10-04 01:16:29 -03:00
this._registerEvents(designer);
},
_registerEvents : function(designer) {
// Register on close events ...
this._toolbarElems.forEach(function(elem) {
elem.addEvent('show', function() {
this.clear()
}.bind(this));
}.bind(this));
designer.addEvent('onblur', function() {
var topics = designer.getModel().filterSelectedTopics();
var rels = designer.getModel().filterSelectedRelations();
this._toolbarElems.forEach(function(button) {
2011-10-04 23:59:21 -03:00
var disable = false;
if (button.isTopicAction() && button.isRelAction()) {
disable = rels.length == 0 && topics.length == 0;
2011-10-10 18:30:02 -03:00
} else if (!button.isTopicAction() && !button.isRelAction()) {
disable = false;
}
else if (button.isTopicAction() && topics.length == 0) {
2011-10-04 23:59:21 -03:00
disable = true;
} else if (button.isRelAction() && rels.length == 0) {
disable = true;
2011-10-04 01:16:29 -03:00
}
2011-10-04 23:59:21 -03:00
if (disable) {
2011-10-04 01:16:29 -03:00
button.disable();
2011-10-10 18:30:02 -03:00
} else {
button.enable();
2011-10-04 01:16:29 -03:00
}
2011-10-04 23:59:21 -03:00
2011-10-04 01:16:29 -03:00
})
}.bind(this));
designer.addEvent('onfocus', function() {
var topics = designer.getModel().filterSelectedTopics();
var rels = designer.getModel().filterSelectedRelations();
this._toolbarElems.forEach(function(button) {
if (button.isTopicAction() && topics.length > 0) {
button.enable();
}
if (button.isRelAction() && rels.length > 0) {
button.enable();
}
})
}.bind(this));
2011-10-14 22:56:20 -03:00
// designer.addEvent("modelUpdate", function(event) {
// if (event.undoSteps > 0) {
// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)");
// } else {
// $("undoEdition").setStyle("background-image", "url(../nicons/undo.png)");
// }
//
// if (event.redoSteps > 0) {
// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)");
// } else {
// $("redoEdition").setStyle("background-image", "url(../nicons/redo.png)");
// }
//
// });
2011-10-04 01:16:29 -03:00
},
addButton:function (buttonId, topic, rel, fn) {
// Register Events ...
var button = new mindplot.widget.ToolbarItem(buttonId, function(event) {
fn(event);
2011-10-10 18:30:02 -03:00
this.clear();
2011-10-04 01:16:29 -03:00
}.bind(this), {topicAction:topic,relAction:rel});
this._toolbarElems.push(button);
2011-08-07 18:59:20 -03:00
},
clear : function() {
2011-10-10 18:30:02 -03:00
this._toolbarElems.forEach(function(item) {
item.hide();
2011-08-07 18:59:20 -03:00
});
}
2011-10-05 02:38:43 -03:00
});