2009-06-07 18:59:43 +00:00
|
|
|
/*
|
2011-01-23 20:34:05 -03:00
|
|
|
* Copyright [2011] [wisemapping]
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 21:03:12 -03:00
|
|
|
* Licensed under WiseMapping Public License, Version 1.0 (the "License").
|
|
|
|
* It is basically the Apache License, Version 2.0 (the "License") plus the
|
2011-01-23 20:34:05 -03:00
|
|
|
* "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
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 20:34:05 -03:00
|
|
|
* http://www.wisemapping.org/license
|
2009-06-07 18:59:43 +00:00
|
|
|
*
|
2011-01-23 20:34:05 -03:00
|
|
|
* 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.
|
2009-06-07 18:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
mindplot.commands.AddTopicCommand = mindplot.Command.extend(
|
|
|
|
{
|
2011-02-09 15:29:09 +01:00
|
|
|
initialize: function(model, parentTopicId, animated)
|
2009-06-07 18:59:43 +00:00
|
|
|
{
|
|
|
|
core.assert(model, 'Model can not be null');
|
|
|
|
this._model = model;
|
|
|
|
this._parentId = parentTopicId;
|
|
|
|
this._id = mindplot.Command._nextUUID();
|
2011-02-09 15:29:09 +01:00
|
|
|
this._animated = core.Utils.isDefined(animated)?animated:false;
|
2009-06-07 18:59:43 +00:00
|
|
|
},
|
|
|
|
execute: function(commandContext)
|
|
|
|
{
|
|
|
|
// Add a new topic ...
|
2011-02-09 15:29:09 +01:00
|
|
|
|
|
|
|
var topic = commandContext.createTopic(this._model, !this._animated);
|
2009-06-07 18:59:43 +00:00
|
|
|
|
|
|
|
// Connect to topic ...
|
2011-04-16 21:41:06 +01:00
|
|
|
if (core.Utils.isDefined(this._parentId))
|
2009-06-07 18:59:43 +00:00
|
|
|
{
|
|
|
|
var parentTopic = commandContext.findTopics(this._parentId)[0];
|
2011-02-09 15:29:09 +01:00
|
|
|
commandContext.connect(topic, parentTopic, !this._animated);
|
2009-06-07 18:59:43 +00:00
|
|
|
}
|
|
|
|
|
2011-02-09 15:29:09 +01:00
|
|
|
var doneFn = function(){
|
|
|
|
// Finally, focus ...
|
2011-04-08 15:31:40 +01:00
|
|
|
var designer = commandContext._designer;
|
|
|
|
designer.onObjectFocusEvent.attempt(topic, designer);
|
2011-02-09 15:29:09 +01:00
|
|
|
topic.setOnFocus(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
if(this._animated){
|
|
|
|
core.Utils.setVisibilityAnimated([topic,topic.getOutgoingLine()],true,doneFn);
|
|
|
|
} else
|
|
|
|
doneFn.attempt();
|
2009-06-07 18:59:43 +00:00
|
|
|
},
|
|
|
|
undoExecute: function(commandContext)
|
|
|
|
{
|
|
|
|
// Finally, delete the topic from the workspace ...
|
|
|
|
var topicId = this._model.getId();
|
|
|
|
var topic = commandContext.findTopics(topicId)[0];
|
2011-02-09 15:29:09 +01:00
|
|
|
var doneFn = function(){
|
|
|
|
commandContext.deleteTopic(topic);
|
|
|
|
};
|
|
|
|
if(this._animated){
|
|
|
|
core.Utils.setVisibilityAnimated([topic,topic.getOutgoingLine()],false, doneFn);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
doneFn.attempt();
|
2009-06-07 18:59:43 +00:00
|
|
|
}
|
|
|
|
});
|