2014-04-19 16:38:04 -03:00

108 lines
3.4 KiB
JavaScript

/*
* Copyright [2012] [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.LinkEditor = new Class({
Extends:BootstrapDialog,
initialize:function (model) {
$assert(model, "model can not be null");
this._model = model;
this.parent($msg("LINK"), {
cancelButton: true,
closeButton: true,
acceptButton: true,
removeButton: true,
onRemoveClickData: {model: this._model}
});
this.css({width:"600px"});
var panel = this._buildPanel(model);
this.setContent(panel);
},
_buildPanel:function (model) {
var result = $('<div></div>').css("padding-top", "5px");
var form = $('<form></form>').attr({
'action': 'none',
'id': 'linkFormId'
});
var text = $('<p></p>').text("Paste your url here:");
text.css('margin','0px 0px 20px');
form.append(text);
var section = $('<div></div>').attr({
'class': 'input-group'
});
// Add Input
var input = $('<input/>').attr({
'placeholder': 'http://www.example.com/',
'type': 'url', //FIXME: THIS not work on IE, see workaround below
'required': 'true',
'autofocus': 'autofocus',
'class': 'form-control'
});
if (model.getValue() != null){
input.val(model.getValue());
}
// type:Browser.ie ? 'text' : 'url', // IE workaround
// Open Button
var openButton = $('<button></button>').attr({
'type': 'button',
'class': 'btn btn-default'
});
openButton.html($msg('OPEN_LINK')).css('margin-left', '0px');
openButton.click(function(){
window.open(input.val(),"_blank", "status=1,width=700,height=450,resize=1");
});
var spanControl = $('<span class="input-group-btn"></span>').append(openButton)
section.append(input);
section.append(spanControl);
form.append(section);
$(document).ready(function () {
var me = this;
$(document).on('submit','#linkFormId',function (event) {
event.stopPropagation();
event.preventDefault();
var inputValue = input.val();
if (inputValue != null && inputValue.trim() != "") {
model.setValue(inputValue);
}
me.close();
});
});
if (typeof model.getValue() != 'undefined'){
this.showRemoveButton();
}
result.append(form);
return result;
},
onAcceptClick: function() {
$("#linkFormId").submit();
}
});