2011-10-07 01:30:55 -03:00
|
|
|
/*
|
2012-10-04 20:48:01 -03:00
|
|
|
* Copyright [2012] [wisemapping]
|
2011-10-07 01:30:55 -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
|
|
|
|
* "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.LinkEditor = new Class({
|
|
|
|
Extends:MooDialog,
|
2012-08-28 00:33:27 -03:00
|
|
|
initialize:function (model) {
|
2011-10-07 01:30:55 -03:00
|
|
|
$assert(model, "model can not be null");
|
|
|
|
var panel = this._buildPanel(model);
|
|
|
|
this.parent({
|
|
|
|
closeButton:true,
|
|
|
|
destroyOnClose:true,
|
2012-09-19 20:21:20 -03:00
|
|
|
title:$msg('LINK'),
|
2012-08-28 00:33:27 -03:00
|
|
|
onInitialize:function (wrapper) {
|
2011-10-07 01:30:55 -03:00
|
|
|
wrapper.setStyle('opacity', 0);
|
|
|
|
this.fx = new Fx.Morph(wrapper, {
|
2012-08-28 00:33:27 -03:00
|
|
|
duration:600,
|
|
|
|
transition:Fx.Transitions.Bounce.easeOut
|
2011-10-07 01:30:55 -03:00
|
|
|
});
|
2012-04-01 19:41:19 -03:00
|
|
|
},
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
onBeforeOpen:function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.overlay = new Overlay(this.options.inject, {
|
2012-08-28 00:33:27 -03:00
|
|
|
duration:this.options.duration
|
2011-10-07 01:30:55 -03:00
|
|
|
});
|
2012-04-01 19:41:19 -03:00
|
|
|
if (this.options.closeOnOverlayClick)
|
|
|
|
this.overlay.addEvent('click', this.close.bind(this));
|
2011-10-07 01:30:55 -03:00
|
|
|
|
|
|
|
this.overlay.open();
|
2012-04-01 19:41:19 -03:00
|
|
|
|
2011-10-07 01:30:55 -03:00
|
|
|
this.fx.start({
|
2012-08-28 00:33:27 -03:00
|
|
|
'margin-top':[-200, -100],
|
|
|
|
opacity:[0, 1]
|
|
|
|
}).chain(function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.fireEvent('show');
|
|
|
|
}.bind(this));
|
|
|
|
},
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
onBeforeClose:function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.fx.start({
|
2012-08-28 00:33:27 -03:00
|
|
|
'margin-top':[-100, 0],
|
|
|
|
opacity:0
|
|
|
|
}).chain(function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.fireEvent('hide');
|
|
|
|
}.bind(this));
|
2012-04-01 19:41:19 -03:00
|
|
|
this.overlay.destroy();
|
2011-10-07 01:30:55 -03:00
|
|
|
}
|
|
|
|
});
|
|
|
|
this.setContent(panel);
|
|
|
|
},
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
_buildPanel:function (model) {
|
2011-10-07 01:30:55 -03:00
|
|
|
var result = new Element('div');
|
2012-09-24 21:36:11 -03:00
|
|
|
result.setStyle("padding-top", "15px");
|
2012-08-28 00:33:27 -03:00
|
|
|
var form = new Element('form', {'action':'none', 'id':'linkFormId'});
|
2011-10-07 01:30:55 -03:00
|
|
|
|
2011-10-08 20:36:47 -03:00
|
|
|
// Add combo ...
|
|
|
|
var select = new Element('select');
|
2012-08-28 00:33:27 -03:00
|
|
|
select.setStyles({margin:'5px'});
|
2011-10-08 20:36:47 -03:00
|
|
|
new Element('option', {text:'URL'}).inject(select);
|
2012-06-24 21:15:10 -03:00
|
|
|
// new Element('option', {text:'Mail'}).inject(select);
|
2011-10-08 20:36:47 -03:00
|
|
|
select.inject(form);
|
|
|
|
|
|
|
|
// Add Input ...
|
2012-05-12 17:40:18 -03:00
|
|
|
var input = new Element('input', {
|
2012-08-28 00:33:27 -03:00
|
|
|
placeholder:'http://www.example.com/',
|
2012-06-24 21:15:10 -03:00
|
|
|
type:Browser.ie ? 'text' : 'url', // IE workaround
|
2012-05-12 17:40:18 -03:00
|
|
|
required:true,
|
2012-05-13 18:28:00 -03:00
|
|
|
autofocus:'autofocus'
|
2012-05-12 17:40:18 -03:00
|
|
|
});
|
2011-10-07 01:30:55 -03:00
|
|
|
if (model.getValue() != null)
|
2011-10-08 20:36:47 -03:00
|
|
|
input.value = model.getValue();
|
2011-10-07 01:30:55 -03:00
|
|
|
|
2012-09-24 21:36:11 -03:00
|
|
|
input.setStyles({
|
|
|
|
width:'55%',
|
|
|
|
margin:"0px 10px"
|
|
|
|
|
|
|
|
});
|
2011-10-08 20:36:47 -03:00
|
|
|
input.inject(form);
|
|
|
|
|
2012-09-24 21:36:11 -03:00
|
|
|
// Open Button
|
|
|
|
var openButton = new Element('input', {
|
|
|
|
type:"button",
|
|
|
|
value:$msg('OPEN_LINK')
|
|
|
|
});
|
|
|
|
openButton.inject(form);
|
|
|
|
openButton.addEvent('click',function(){
|
2013-02-07 21:44:20 -03:00
|
|
|
window.open(input.value,"_blank", "status=1,width=700,height=450,resizable=1");
|
2012-09-24 21:36:11 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-10-08 20:36:47 -03:00
|
|
|
// Register submit event ...
|
2012-08-28 00:33:27 -03:00
|
|
|
form.addEvent('submit', function (event) {
|
2011-10-08 20:36:47 -03:00
|
|
|
event.stopPropagation();
|
|
|
|
event.preventDefault();
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
if (input.value != null && input.value.trim() != "") {
|
|
|
|
model.setValue(input.value);
|
|
|
|
}
|
2011-10-08 20:36:47 -03:00
|
|
|
this.close();
|
|
|
|
}.bind(this));
|
2011-10-07 01:30:55 -03:00
|
|
|
|
|
|
|
// Add buttons ...
|
|
|
|
var buttonContainer = new Element('div').setStyles({paddingTop:5, textAlign:'center'});
|
|
|
|
|
|
|
|
// Create accept button ...
|
2012-09-19 20:21:20 -03:00
|
|
|
var okButton = new Element('input', {type:'submit', value:$msg('ACCEPT'), 'class':'btn-primary'});
|
2011-10-07 01:30:55 -03:00
|
|
|
okButton.addClass('button');
|
|
|
|
okButton.inject(buttonContainer);
|
|
|
|
|
|
|
|
// Create remove button ...
|
|
|
|
if ($defined(model.getValue())) {
|
2012-09-19 20:21:20 -03:00
|
|
|
var rmButton = new Element('input', {type:'button', value:$msg('REMOVE'), 'class':'btn-primary'});
|
2011-10-07 01:30:55 -03:00
|
|
|
rmButton.setStyle('margin', '5px');
|
|
|
|
rmButton.addClass('button');
|
|
|
|
rmButton.inject(buttonContainer);
|
2012-08-28 00:33:27 -03:00
|
|
|
rmButton.addEvent('click', function (event) {
|
2011-10-07 01:30:55 -03:00
|
|
|
model.setValue(null);
|
2011-10-08 20:36:47 -03:00
|
|
|
event.stopPropagation();
|
2011-10-07 01:30:55 -03:00
|
|
|
this.close();
|
|
|
|
}.bind(this));
|
|
|
|
buttonContainer.inject(form);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create cancel button ...
|
2012-09-19 20:21:20 -03:00
|
|
|
var cButton = new Element('input', {type:'button', value:$msg('CANCEL'), 'class':'btn-secondary'});
|
2011-10-07 01:30:55 -03:00
|
|
|
cButton.setStyle('margin', '5px');
|
|
|
|
cButton.addClass('button');
|
|
|
|
cButton.inject(buttonContainer);
|
2012-08-28 00:33:27 -03:00
|
|
|
cButton.addEvent('click', function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.close();
|
|
|
|
}.bind(this));
|
|
|
|
buttonContainer.inject(form);
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
result.addEvent('keydown', function (event) {
|
2011-10-07 01:30:55 -03:00
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
|
|
|
|
form.inject(result);
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
|
2012-08-28 00:33:27 -03:00
|
|
|
show:function () {
|
2011-10-07 01:30:55 -03:00
|
|
|
this.open();
|
|
|
|
}
|
|
|
|
});
|