165 lines
5.7 KiB
JavaScript
Raw Normal View History

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