413 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-11-30 18:06:45 -03:00
Extends: mindplot.widget.IMenu,
2011-10-15 02:52:44 -03:00
initialize : function(designer, containerId, mapId, readOnly) {
2011-11-30 18:06:45 -03:00
this.parent(designer, containerId, mapId);
2011-08-08 20:48:59 -03:00
2011-11-30 18:06:45 -03:00
var baseUrl = "../css/widget";
2011-08-08 20:48:59 -03:00
// 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-11-30 18:06:45 -03:00
this._addButton('export', false, false, function() {
2011-10-15 13:23:27 -03:00
var reqDialog = new MooDialog.Request('../c/export.htm?mapId=' + mapId, null,
2011-10-18 09:29:29 -03:00
{'class': 'exportModalDialog',
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
});
2011-11-30 18:06:45 -03:00
this._addButton('print', false, false, function() {
2011-10-15 13:23:27 -03:00
printMap();
});
2011-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -03:00
this._addButton('topicRelation', true, false, function(event) {
2011-10-09 17:59:16 -03:00
designer.showRelPivot(event);
2011-08-08 09:20:32 -03:00
});
2011-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -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-11-30 18:06:45 -03:00
this._addButton('save', false, false, function() {
this.save(saveElem, designer, true);
2011-11-29 00:51:38 -03:00
}.bind(this));
if (!readOnly) {
// To prevent the user from leaving the page with changes ...
$(window).addEvent('beforeunload', function () {
if (designer.needsSave()) {
this.save(saveElem, designer, false);
}
}.bind(this));
// Autosave on a fixed period of time ...
(function() {
if (designer.needsSave()) {
this.save(saveElem, designer, false);
}
}.bind(this)).periodical(30000);
}
2011-10-02 14:47:54 -03:00
}
var discardElem = $('discard');
if (discardElem) {
2011-11-30 18:06:45 -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-11-30 18:06:45 -03:00
this._addButton('tagIt', false, false, function() {
2011-10-15 13:23:27 -03:00
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-11-30 18:06:45 -03:00
this._addButton('shareIt', false, false, function() {
2011-10-15 13:23:27 -03:00
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-11-30 18:06:45 -03:00
this._addButton('publishIt', false, false, function() {
2011-10-16 21:42:02 -03:00
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-11-30 18:06:45 -03:00
this._addButton('history', false, false, function() {
2011-10-15 13:23:27 -03:00
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) {
var disable = false;
if (button.isTopicAction() && button.isRelAction()) {
disable = rels.length == 0 && topics.length == 0;
console.log(disable);
} else if (!button.isTopicAction() && !button.isRelAction()) {
disable = false;
}
else if (button.isTopicAction() && topics.length == 0) {
disable = true;
} else if (button.isRelAction() && rels.length == 0) {
disable = true;
}
if (disable) {
button.disable();
} else {
button.enable();
}
})
}.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-11-30 18:06:45 -03:00
_addButton:function (buttonId, topic, rel, fn) {
2011-10-04 01:16:29 -03:00
// 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
}
2011-10-05 02:38:43 -03:00
});